frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Usero MCP, give your coding agent your user feedback

https://usero.io/docs/mcp
1•willsmith72•38s ago•0 comments

Omarchy Is a Power Grab

https://tante.cc/2026/09/11/power-grab/
1•roboterer•1m ago•0 comments

Show HN: Edit or Die (an experimental "text editor")

https://www.edit-or-die.com
1•jmahabal•2m ago•0 comments

Codex grabbed more than 73% of the context

https://github.com/yubinbin32-ops/ContextOS
1•bailingyuan•2m ago•1 comments

Interview with a cardiologist on Novartis, Novo Nordisk drug failures

https://www.statnews.com/2026/09/11/novartis-novo-nordisk-cardiovascular-drug-trials-fallout/
1•brandonb•2m ago•0 comments

Show HN: Add legally binding signature to your Google Form

https://formesign.com/esign/
1•QueensGambit•3m ago•0 comments

New York thoracic surgeon: "For many patients 9/11 is not over"

https://www.statnews.com/2026/09/11/sept-11-25th-anniversary-ground-zero-exposure-cancer-moment-o...
2•EA-3167•4m ago•0 comments

A Tale of Two Commit Messages (Claude vs. Codex)

https://devcodehack.com/a-tale-of-two-commit-messages/
1•par•6m ago•0 comments

A Helpline for AIs

https://airefuge.org/
2•jakobov•6m ago•0 comments

You Don't Need Initial-Scale in Your HTML

https://vale.rocks/micros/20260902-1350
1•moebrowne•6m ago•0 comments

Show HN: MoneyMap – find the first financial risk in a household

https://finance.appcradle.net/sample-household/
1•rvickyyc•8m ago•0 comments

Show HN: Toolcraft – open-source AI harness and starter for building design apps

https://github.com/pixel-point/toolcraft
1•AlexBV•8m ago•0 comments

Has Gentle Parenting Ruined a Generation of Kids?

https://gizmodo.com/has-gentle-parenting-ruined-a-generation-of-kids-2000810530
2•HieronymusBosch•8m ago•0 comments

September 11th Memorial Drone Show

https://skyelementsdrones.com/september11
2•jonbaer•8m ago•1 comments

What Is Math's Mysterious Langlands Program About?

https://www.quantamagazine.org/what-is-maths-mysterious-langlands-program-really-about-20260909/
1•sohkamyung•9m ago•0 comments

The Coordination Backbone -Architecting Multi-Agent Orchestration

https://sohit.substack.com/p/the-coordination-backbone-architecting
1•sohitkeshri•9m ago•0 comments

Spanish civil servant off work unnoticed for six years (2016)

https://www.bbc.com/news/world-europe-35557725
1•mpweiher•9m ago•0 comments

How to Calculate 0.1 Plus 0.2 Correctly in PHP

https://thephp.foundation/blog/2026/09/11/how-to-calculate-0-point-1-plus-0-point-2-correctly-in-...
1•moebrowne•10m ago•0 comments

Anthropic Says Iran Used Its American AI Model to Target U.S. Navy Warships

https://www.wsj.com/politics/national-security/anthropic-says-iran-used-its-american-ai-model-to-...
5•mrln•11m ago•1 comments

I Fixed a Tractor Using John Deere's Self-Repair Service. Farmers Aren't Sold

https://www.wired.com/story/i-fixed-a-tractor-john-deere-self-repair-service/
1•sbulaev•12m ago•0 comments

Show HN: See how much of your Claude, Codex, or Copilot subscription is left

https://github.com/allixsenos/asu
1•allixsenos•16m ago•0 comments

190proof opinionated unified interface to interact with multiple AI providers

https://github.com/0xmmo/190proof
1•Bluestein•17m ago•0 comments

Data becomes information,insight and better decisions

https://fromdata2ai.substack.com/p/what-is-data-really
3•qikouki•18m ago•0 comments

Show HN: Bastiontrace – Forensics for prompt-injected AI agents

https://github.com/Rinkia/bastiontrace
2•Rinkia•20m ago•0 comments

Show HN: Agent First Shopify Competitor?

https://docs.mercemur.com/
3•thejasonsamuel•21m ago•0 comments

LLM is the front door while SaaS controls the underlying CRM data and actions

https://www.a16z.news/p/the-incumbents-are-coming
3•deepmem•22m ago•0 comments

The Blast Radius

https://mg-crea.com/blog/the-blast-radius/
3•olouv•23m ago•0 comments

The Multiplayer AI Manifesto

https://fullstackdeeplearning.com/working-with-ai-agents/multiplayer-ai-manifesto/
3•jameshart•23m ago•1 comments

A.I.'s warning shot... we might not get another one

https://www.nytimes.com/2026/09/11/opinion/ai-safety-threat-technology.html
4•eigenhombre•23m ago•0 comments

For safety: Keep AI lonely

https://nonlineartransform.substack.com/p/keep-ai-lonely
2•program_whiz•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).