frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Meta Got Everything It Wanted in a Secret Louisiana Data Center Deal

https://www.nytimes.com/2026/07/27/technology/meta-data-center-louisiana.html
1•spenvo•45s ago•0 comments

Microsoft finetuned Qwen 27B for computer use

https://huggingface.co/microsoft/Fara1.5-27B
1•georgeven•4m ago•0 comments

Travis Kalanick reveals how A16Z fumbled Uber's Series B in 2011

https://www.youtube.com/watch?v=6OZLg00B5yo
1•dsantbakshsing•6m ago•0 comments

Essential Words

https://pudding.cool/2026/07/essential-words/
1•herbertl•8m ago•0 comments

The gap is not glorious

https://loveofallwisdom.com/blog/2026/07/the-gap-is-not-glorious/
1•herbertl•9m ago•0 comments

I Guess I'm Playing the Long Game Now

https://brainbaking.com/post/2026/07/i-guess-im-playing-the-long-game-now/
2•herbertl•11m ago•0 comments

Caracal AV – Click the link to learn about it

https://caracal-av.pages.dev/
2•telui•13m ago•0 comments

Show HN: Building a new game everyday with AI. Day #106 Zombie Survival Training

https://gamevibe.us/106-zombie-survival-training
1•pzxc•14m ago•0 comments

I built 337 API tools behind a paywall. 3 free calls, then €0.50

https://swarm.gadgethumans.com/x402/
1•apipaywall•19m ago•0 comments

Duress passcode leads to U.S. prosecution of traveler

https://www.thetravel.com/us-customs-and-border-protection-faces-first-ever-type-incident-after-t...
2•exhilaration•20m ago•0 comments

Just in Time Nudging (2017)

https://idiallo.com/blog/just-in-time-nudging
2•foxfired•21m ago•0 comments

VitaSet LLC has applied for YC's Fall 2026 Batch

https://account.ycombinator.com?continue=https%3A%2F%2Fapply.ycombinator.com%2Fapps%2Fda68107c-2e...
1•VitaSetLLC•22m ago•0 comments

House Prices Are Falling and We Haven't Solved the Problem of Restrictive Zoning

https://cepr.net/publications/house-prices-are-falling-and-we-havent-solved-the-problem-of-restri...
3•miguelazo•24m ago•1 comments

A Russian phone number, WhatsApp, and 140 outbound SSH alerts

https://nox.sh/posts/whatsapp-tunnel-out/
2•mattredact•25m ago•0 comments

Run the AI Studio deletion test to show the chat isn't deleted

https://discuss.ai.google.dev/t/please-help-do-the-ai-studio-delete-test-so-we-can-prove-that-goo...
2•Bitu79•26m ago•0 comments

Hope and Defeat: John Berger

https://newleftreview.org/sidecar/posts/hope-and-defeat
3•apollinaire•28m ago•0 comments

T-Mobile down for users in US

https://www.reuters.com/business/media-telecom/t-mobile-down-thousands-users-us-downdetector-show...
1•alacritas0•28m ago•0 comments

Is human writing obsolete in the age of LLMs?

http://gtowey.blogspot.com/2026/07/is-human-writing-obsolete-in-age-of-llms.html
2•gtowey•29m ago•0 comments

WorldFrame – Local-first worldbuilding in Markdown

https://tryworldframe.com/
1•SturdyRobot•30m ago•0 comments

JSON vs. PROMPT distinction – Google's misleading claim

https://discuss.ai.google.dev/t/json-vs-prompt-distinction-google-s-misleading-claim/170679
2•Bitu79•30m ago•0 comments

Private Credit State Backstop How Private Equity Socializes Risk Through Insure

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=7152239
3•senshan•30m ago•1 comments

Claude no longer shows full thinking

https://old.reddit.com/r/ClaudeAI/comments/1v3u707/no_longer_shows_full_thinking/
1•rzk•31m ago•0 comments

Google illegally retains customer data,and I am taking legal action against them

https://discuss.ai.google.dev/t/google-illegally-retains-customer-data-and-i-am-taking-legal-acti...
3•Bitu79•33m ago•1 comments

Show HN: Open-sourcing my personal market research

https://research.oguzbilgic.com
1•obilgic•35m ago•0 comments

X Money

https://money.x.com
4•acmnrs•36m ago•0 comments

Attention Decode on AMD MI450 GPUs: A Gluon Kernel Optimization Guide

https://rocm.blogs.amd.com/software-tools-optimization/gluon-attention-decode-mi450/README.html
1•matt_d•37m ago•0 comments

Google search API replacement costs minimum $30k/year

https://old.reddit.com/r/googlecloud/comments/1qilhrg/is_googles_custom_search_api_being_disconti...
1•meltyness•37m ago•0 comments

From GPT2 to Kimi3

https://twitter.com/waterloo_intern/status/2081762065392541951
1•haritha1313•39m ago•0 comments

OpenOTP – Your email verification codes, autofilled on your Mac

https://github.com/jeninh/openotp
1•jeninh•44m ago•1 comments

Redact a PDF in the browser: the text is removed, not covered

https://still-wildflower-dc6f.akdmediax.workers.dev/vaultpdf/
1•akdvault•44m 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).