frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude Dynamic Workflows is Crazy

https://www.youtube.com/watch?v=9pwPY_RlQHk
1•bmahir22•1m ago•0 comments

Lean Inference: Lean Manufacturing Principles Applied to AI

https://neurometric.substack.com/p/lean-inference-workflows-applying
1•robmay•1m ago•0 comments

Launch HN: Hyper (YC P26) – Company brain for AI agents and automations

4•shalinshah•2m ago•0 comments

We Are Living in Pinocchio's World

https://om.co/2026/05/25/we-are-living-in-pinocchios-world/
2•tosh•3m ago•0 comments

Phosphene

https://en.wikipedia.org/wiki/Phosphene
1•soupspaces•5m ago•0 comments

Server-Side WebRTC Noise Reduction with Pion, FFmpeg, and RNN Models

https://www.lodan.me/posts/server-side-webrtc-noise-reduction-pion-ffmpeg-rnn/
2•Sean-Der•5m ago•0 comments

Python 3.15.0 beta 2 is here

https://blog.python.org/2026/06/python-3150-beta-2/
2•lumpa•5m ago•0 comments

Five Levels of Adding AI to Your SaaS App

https://shivekkhurana.com/blog/five-levels/
1•shivekkhurana•10m ago•0 comments

The Florida woman catfishing America's political class

https://www.politico.com/news/2026/06/02/bumble-new-jersey-gamble-catfishing-crowder-00941061
1•_tk_•10m ago•0 comments

Umami: An open-source alternative to Google Analytics, Mixpanel and Amplitude

https://github.com/umami-software/umami
1•ksec•13m ago•0 comments

Free vLLM Course: Inference, Compression, Benchmarks

https://www.deeplearning.ai/courses/fast-and-efficient-llm-inference-with-vllm
2•twelvenmonkeys•15m ago•0 comments

The Bloat

https://milkandcigarettes.com/notes/devlog/the-bloat
1•tarxzvf•17m ago•0 comments

Facing life-threatening miscarriage in Arkansas, calls to governor didn't help

https://www.cnn.com/2026/05/28/health/arkansas-miscarriage-abortion-ban-propublica
4•orwin•18m ago•2 comments

The Relaunch of the Old West and Why I Chose Vanilla PHP

https://blog.alexseifert.com/2026/06/02/the-relaunch-of-the-old-west-and-why-i-chose-vanilla-php/
1•SeenNotHeard•19m ago•0 comments

Batching API Calls

https://www.mostlypython.com/batching-api-calls/
1•speckx•20m ago•0 comments

Show HN: Mashines.dev – Live-migrate microVMs between hosts without restarting

https://mashines.dev/
2•ktaraszk•22m ago•0 comments

Impermeabiliza uses AI to modernize waterproofing in Valencia

https://impermeabiliza.net/
1•ignival•25m ago•0 comments

Microsoft unveils new AI models

https://microsoft.ai/models/
5•helloplanets•26m ago•0 comments

Tesla Cybertruck resale value plunges amid sales slump

https://www.msn.com/en-us/money/companies/tesla-cybertruck-resale-value-plunges-amid-sales-slump/...
5•petethomas•27m ago•2 comments

AI enthusiasts racing against time; AI skeptics are racing against entropy

https://charitydotwtf.substack.com/p/ai-enthusiasts-are-in-a-race-against
1•SLHamlet•28m ago•0 comments

AgentSight: System-wide AI agent tracing and monitoring with eBPF

https://github.com/eunomia-bpf/agentsight
2•tanelpoder•29m ago•0 comments

I believe a whole generation of developers miss how open source used to work

https://twitter.com/mitsuhiko/status/2062181646804152626
4•tosh•29m ago•1 comments

Gooey: A GPU-accelerated UI framework for Zig

https://github.com/duanebester/gooey
3•ksec•30m ago•0 comments

Network State Propaganda

https://capirates.substack.com/p/theyre-telling-you-exactly-what-theyre
4•tjcrowley•30m ago•0 comments

The 15-minute city is a dead end

https://blogs.lse.ac.uk/covid19/2021/05/28/the-15-minute-city-is-a-dead-end-cities-must-be-places...
1•Anon84•32m ago•0 comments

Book of Cron Job [fiction]

https://www.nature.com/articles/d41586-026-01716-0
2•apotheosized•33m ago•0 comments

Show HN: Hive Trust – Ed25519-signed benchmarks for every AI inference primitive

https://thehiveryiq.com/trust/
1•thehivery•34m ago•0 comments

Knowable – Open-Source Personal AI Tutor on macOS

https://knowable.ca/
2•samuelzxu•35m ago•1 comments

See SBA Loans Around You

https://www.loanround.com
1•zarie•35m ago•0 comments

Safe Made Easy Pt.2: Don't Fear the Ref

https://ergeysay.github.io/safe-made-easy-pt2.html
3•ergeysay•36m 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).