frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Ilseon, a Minimalist Focus Filter

https://github.com/cladam/ilseon
1•cladamski79•57s ago•0 comments

"Good engineering management" is a fad

https://lethain.com/good-eng-mgmt-is-a-fad/
2•jkbyc•2m ago•0 comments

Indian-origin Howard professor:" H1Bs are 'average-grade labor'"

https://www.hindustantimes.com/world-news/us-news/h1b-visa-row-indian-origin-howard-professor-ign...
1•chequoredDaemon•2m ago•0 comments

I Let Claude Build My Home Network: Two ISPs Bonded, $312/Year Saved

https://jonathanclark.com/posts/bonded-internet-connection-ai.html
1•jclarkcom•3m ago•1 comments

Nonpareil: High-Fidelity HP Calculator Simulator

https://nonpareil.brouhaha.com/
1•jandeboevrie•5m ago•0 comments

From SQL to Graph: 5 Questions to Ask Before You Get Started

https://memgraph.com/blog/sql-to-graph-best-practices
1•taubek•5m ago•0 comments

Contact Call Center Bank BCA

1•OmnisCreative•6m ago•0 comments

Investigating a Possible Scammer in Journalism's AI Era

https://thelocal.to/investigating-scam-journalism-ai/
1•mooreds•6m ago•0 comments

What makes good reasoning data

https://huggingface.co/blog/MiniMax-AI/what-makes-good-reasoning-data
1•jxmorris12•6m ago•0 comments

Buka Blokir BCA hubungi Halo BCA 0813 707 1535

1•OmnisCreative•6m ago•0 comments

Halo BCA 0813 707 1535

1•OmnisCreative•6m ago•0 comments

Show HN: Simple Headless CMS for Firestore and Storage (Built with Svelte)

https://github.com/ortwic/web-apps/blob/main/apps/fl-cms/README.md
1•ortwic•9m ago•0 comments

Bill Gates sells Microsoft shares

https://dailyinvestor.com/investing/111902/bill-gates-sells-microsoft-shares/
3•iamtech•9m ago•0 comments

Halo BCA – Buka Blokir BCA – BCA Mobile Terblokir

1•shaileshlangi•9m ago•0 comments

Ask HN: Where could I find early adopters?

1•nonmaskable•10m ago•0 comments

In Seattle, juggling two or more jobs isn't just for low-wage workers

https://www.seattletimes.com/business/in-seattle-juggling-two-or-more-jobs-isnt-just-for-low-wage...
1•dangle1•16m ago•0 comments

Show HN: Real-time freelancer marketplace with per-second billing

https://gigs.quest/
2•ufvy•17m ago•1 comments

Thiel, Karp, Ellison, Catz, Bezos, Lessin appear in newly leaked Israel emails

https://sfstandard.com/2025/11/23/extended-courtship-linking-jeffrey-epstein-peter-thiel-israeli-...
3•user72343432754•21m ago•0 comments

SDL Sopwith is a port of the classic biplane shoot 'em-up "Sopwith"

https://fragglet.github.io/sdl-sopwith/
1•mooreds•21m ago•0 comments

What happens to Application layer in the age of Operating System AI reply bots?

https://twitter.com/nowflux_/status/1992347485826662693
1•nowflux•22m ago•0 comments

Europe joins US as exascale superpower after Jupiter clinches Top500 run

https://www.theregister.com/2025/11/17/europe_jupiter_supercomputer/
1•PaulHoule•22m ago•0 comments

This Lying Has to Stop: Keeping AI Honest with OpenTelemetry [video]

https://www.youtube.com/watch?v=48_v7VNZCzk
1•mooreds•23m ago•0 comments

How Consolidation Is Eroding Internet Resilience

https://pulse.internetsociety.org/blog/how-consolidation-is-eroding-internet-resilience
1•speckx•23m ago•0 comments

Could Terahertz Radar in Cars Save Lives?

https://spectrum.ieee.org/terahertz-radar
1•geox•26m ago•0 comments

Evaluating the Effectiveness of LLM-Evaluators (a.k.a. LLM-as-Judge)

https://eugeneyan.com/writing/llm-evaluators/
1•jxmorris12•27m ago•0 comments

A century of utopian experiments and the fall of Llano del Rio

https://kubicki.org/letters/the-dogs-of-llano-del-rio-ii/
2•durakot•28m ago•0 comments

Flux Keyboard

https://fluxkeyboard.com/?v=0b3b97fa6688
4•weinzierl•30m ago•0 comments

The Pathway to AGI Isn't Intelligence, It's Shared Cognition

https://blog.reframetech.com/the-pathway-to-agi-isnt-intelligence-its-shared-cognition
3•seikenberry•33m ago•1 comments

Typst

https://github.com/qjcg/awesome-typst
2•kekqqq•33m ago•2 comments

C++ HDL (Hardware Description Language)

https://github.com/mirekez/cpphdl
1•olvy0•37m ago•0 comments
Open in hackernews

Ask HN: Help with doing statistics over machine code

2•phafu•6mo 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•6mo 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•6mo 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).