frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

2.4M+ VRChat users' data accessed following cloud breach

https://www.theregister.com/security/2026/06/11/24m-vrchat-users-data-accessed-following-cloud-br...
1•Bender•47s ago•0 comments

FlakeBOM, a CLI for generating SBOMs from Nix flakes

https://determinate.systems/blog/introducing-flakebom/
1•biggestlou•49s ago•0 comments

Every employee's password was stored in a single Excel file

https://www.theregister.com/security/2026/06/11/every-employees-password-was-stored-in-a-single-e...
2•Bender•1m ago•0 comments

Heterogeneous Pythonic language in your pocket

https://amrdeveloper.medium.com/heterogeneous-pythonic-language-in-your-pocket-921f2197bc39
1•amrdeveloper•1m ago•0 comments

AI needs shame, not taste

https://www.jacquescorbytuech.com/writing/ai-needs-shame-not-taste
1•iamacyborg•1m ago•0 comments

Microsoft's worst 'Nightmare' unleashes BitLocker bypass 0-day

https://www.theregister.com/security/2026/06/11/nightmare-eclipse-drops-claimed-bitlocker-bypass-...
1•Bender•2m ago•0 comments

Calabi–Yau Manifold

https://en.wikipedia.org/wiki/Calabi%E2%80%93Yau_manifold
1•dmschulman•2m ago•0 comments

DiffusionGemma: The Developer Guide

https://developers.googleblog.com/diffusiongemma-the-developer-guide/
1•simonpure•2m ago•0 comments

Jo is a statically typed language that enables compile-time sandboxing

https://github.com/typescope/jo
1•rickcarlino•3m ago•0 comments

History of the Alphabet

https://en.wikipedia.org/wiki/History_of_the_alphabet
1•thunderbong•5m ago•0 comments

The Sad Unusability of Video Game Reviews

https://bottomfeeder.substack.com/p/the-sad-unusability-of-video-game
2•Tomte•7m ago•0 comments

Clarity Act Explained: Why Crypto Regulation Depends on the CFTC

https://catenaa.com/clarity-act-crypto-regulation-bitcoin/
1•NewsCatenaa•7m ago•0 comments

Apollo Is Screening All Software Investments for AI Threat Risk

https://www.bloomberg.com/news/articles/2026-06-11/apollo-is-screening-all-software-investments-f...
2•petethomas•8m ago•0 comments

Show HN: World Cup 2026 CLI

https://github.com/saadel/world-cup-2026-cli
1•saadel•10m ago•0 comments

Hermes Bridge API

https://github.com/jcnh74/hermes-bridge/
1•jcnh74•11m ago•2 comments

Why your asthma inhaler is so expensive (in the US)

https://educatedguesswork.org/posts/asthma-inhaler-pricing/
3•duckduckgo•11m ago•0 comments

4 Signs You Need a Multi-Agent AI System: A Visual Guide

https://aidoses.substack.com/p/4-signs-you-need-a-multi-agent-ai
1•ryanrad•12m ago•0 comments

New experimental versions of TeXmacs for Windows 11 and Android (revision 15512)

https://lists.texmacs.org/wws/arc/texmacs-users/2026-06/msg00000.html
1•amichail•13m ago•0 comments

Ask HN: What's the best LLM model that on a 24 GB VRAM GPU?

1•max93•15m ago•0 comments

Arm shows first use of mobile Arm Neural Technology and Unreal Engine MegaLights

https://newsroom.arm.com/news/announcing-neural-dawn
1•HelloUsername•15m ago•0 comments

Internal docs reveal Mistral valued M&A target Emmi at up to €330M

https://sifted.eu/articles/mistral-emmi-acquisition-330m
1•doener•17m ago•0 comments

Show HN: Remuda, a CLI Agent Orchestrator

https://github.com/yendo-eng/remuda
2•dgunay•18m ago•0 comments

Antikythera Mechanism

https://en.wikipedia.org/wiki/Antikythera_mechanism
2•helterskelter•19m ago•0 comments

Musk's Galactic Ripoff

https://robertreich.substack.com/p/musks-galactic-ripoff
2•dxs•19m ago•0 comments

The MilkV Jupiter 2/SpacemiT K3 (RISC-V vector compute)

https://taoofmac.com/space/reviews/2026/06/11/1830
2•rcarmo•22m ago•1 comments

Intel Management Engine

https://en.wikipedia.org/wiki/Intel_Management_Engine
2•helterskelter•23m ago•0 comments

Researcher made up a disease to test AI. It failed miserably

https://www.scientificamerican.com/podcast/episode/bixonimania-the-fake-illness-that-ai-fell-for/
1•geox•23m ago•0 comments

Show HN: Aurora – A spacey animated background for VSCode

https://github.com/crlang44/AuroraBg/
1•crlang44•24m ago•0 comments

Show HN: Stillwind – High Resolution Electronic Component Search

https://stillwind.ai
4•hannesfur•24m ago•0 comments

BQN: Dynamic Compilation

https://mlochbaum.github.io/BQN/implementation/compile/dynamic.html
1•tosh•24m ago•0 comments
Open in hackernews

Ask HN: Help with doing statistics over machine code

2•phafu•1y ago
I'd like to do some statistics over the machine code gcc generates, such as a histogram of used instructions, average volatile/preserved registers usage of functions etc. For now just x86_64 SysV-ABI would be enough.

However I'm not aware of any pre-existing tool that lets me easily do this. The options I currently see are either make gcc output assembly and write a parser for the GNU Assembler format (possibly by reusing the asm-parser of the compiler-explorer project), or write a tool that reads (disassembles) object files directly using elfutils.

Any hints, prior work, further ideas, links to useful resources, or any other kind of help would be much appreciated.

Comments

baobun•1y ago
"Static analysis" should be a relevant search term. Assuming you don't need to tie the instructions back to C code then the "gcc" part seems circumstancial for implementation? I guess you might want to parse the ASM into an Abstract Syntax Tree (AST) represenation and work on that?

If you do want to tie it back to the source, this looks relevant: http://icps.u-strasbg.fr/~pop/gcc-ast.html

phafu•1y ago
For my purpose I don't need to get back to the original source, no.

The gcc part is only relevant with regards to what dialect of assembler I need to parse. If I go that route, I'd write a parser for the GNU assembler, and that would of course work with any code in that dialect, regardless from which compiler it came from (I haven't checked whether other compilers can produce GNU assembler though).