frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Finance Jobs Just Hit a 4-Year Low

https://www.inc.com/georgia-fearn/finance-jobs-hit-four-year-low-banks-posted-nearly-49000-roles/...
1•01-_-•53s ago•0 comments

Europe's free satellite service just made it easier to track wildfires

https://arstechnica.com/gadgets/2026/08/europes-free-satellite-service-just-made-it-easier-to-tra...
1•01-_-•1m ago•0 comments

FlowChartCharter – A Zero-Hallucination, Fear-Driven GraphRAG Alternative

https://github.com/CharleSpectre13/flowchartcharter
1•charlespectre•1m ago•0 comments

Context Engineering Is a Data Problem

https://davidgasquez.com/context-engineering-is-a-data-problem
1•kalendos•3m ago•0 comments

Looking for Someone in SF?

https://meandi-sf-people.aris-han.chatgpt.site/
1•asd000hh•4m ago•1 comments

Massachusetts prosecutors run their offices on software from the dial-up era

https://nasser.blog/dial-up-justice/
1•Michelangelo11•5m ago•0 comments

Environmentalists Targeted Exxon Mobil. Then Hackers Targeted Them

https://www.nytimes.com/2020/06/09/nyregion/exxon-mobil-hackers-greenpeace.html
1•Djens•7m ago•0 comments

Supply-chain hygiene for Emacs: LLM review of package upgrades

https://blog.fidelramos.net/software/emacs-straight-ai-review
1•fidelramos•11m ago•0 comments

Jason Arday: a question of academic standards (by Richard Dawkins)

https://unherd.com/2026/08/jason-arday-a-question-of-academic-standards/
1•Michelangelo11•12m ago•0 comments

Countersign – one kill switch and audit log for AI agents across wallet vendors

https://countersign.network
1•screan•16m ago•0 comments

Show HN: Tyle – a Kanban board with statistical cycle time forecasting built in

https://tyle-brown.vercel.app/about
1•byronical•17m ago•0 comments

OpenAI provides more details on the Hugging Face incident

https://www.heise.de/en/news/OpenAI-provides-more-details-on-the-Hugging-Face-incident-11403391.html
2•slow_typist•27m ago•1 comments

Just built Dot. Would love feedback

https://www.use-dot.com
1•r_gaur•28m ago•1 comments

What's new in Swift: July 2026 Edition

https://swift.org/blog/whats-new-in-swift-july-2026/
2•frizlab•29m ago•0 comments

How to Notice and Avoid Scams

https://nonconfirmed.com/how-to-notice-and-avoid-scams
1•colenikol2•32m ago•0 comments

You can make any software you want now, then why don't you?

1•sarmadgulzar•33m ago•2 comments

Show HN: Turn an idea into a product you can order

https://www.luphra.com
1•stochtinkerer•38m ago•1 comments

DeepMind's WeatherNext model achieves breakthrough forecasting cyclones

https://deepmind.google/blog/weathernext-ai-model-achieves-breakthrough-in-forecasting-cyclones/
2•bhavansig•41m ago•1 comments

Thimbleweed Park 2 Dev Blog

https://blog2.thimbleweedpark.com/twp2_tech/
1•MrVandemar•45m ago•0 comments

Show HN: Draw Your Room. Share Your Plan

https://freeroomplanner.com/
1•wowinter15•51m ago•0 comments

The phone book that led us to Assad's spy chief in hiding

https://www.bbc.co.uk/news/articles/c4gyrzn8p94o
1•justworks•55m ago•0 comments

Show HN: I mapped business competition density across NYC, block by block

https://worththespot.com/
1•losas28066•56m ago•0 comments

Show HN: Lensa – Open-source MCP connectors and skills for ChatGPT

https://github.com/mitrotasios/lensa-mcp
1•amitrotasios•57m ago•0 comments

Don't Build Mindreading

https://keller.substack.com/p/dont-build-mindreading
1•celer•1h ago•0 comments

Show HN: Hosted LLM Wiki

https://getmana.md/
2•zintus•1h ago•0 comments

Rcarmo/wrdp: Experimental xrdp/sesman-like setup for Wayland-backed desktops

https://github.com/rcarmo/wrdp
1•rcarmo•1h ago•0 comments

World-class higher education targeting <$10k for degree

https://khanted.org
1•JSR_FDED•1h ago•0 comments

CATL Secures 2GWh Sodium-Ion Storage Deal with Solarpro for Eastern Europe

https://fuelcellsworks.com/2026/07/21/battery/catl-secures-2gwh-sodium-ion-storage-deal-with-sola...
1•jamesblonde•1h ago•1 comments

Tlbic v11.0 (French Edition): Bottom-Up Governance and AI Audit

https://drive.google.com/file/d/1XLbJ-tTlnFNgrzRxlYXE4FmVSpSoQMIm/view?usp=drive_link
1•michikawa59•1h ago•1 comments

Grammelot

https://en.wikipedia.org/wiki/Grammelot
1•schandmaul•1h 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).