frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Devin AI can automatically triage issues

https://devin.ai/auto-triage
1•limelight•53s ago•0 comments

Distro Chooser

https://distrochooser.de
1•doener•1m ago•0 comments

Tell HN: Typical AI Conversation

1•theorchid•2m ago•0 comments

Show HN: InsForge – Open-source Heroku for AI coding agents

https://github.com/InsForge/InsForge
1•mrcoldbrew•2m ago•0 comments

This Week: Software Testing Changes Forever

https://testkube.wistia.com/live/events/gigwl708fn
1•evwitmer•3m ago•0 comments

Skyblock vs. Microsoft: Final Legal Outcome

https://skyblock.net/threads/skyblock-vs-microsoft-final-legal-outcome.147906/
1•SaladFork•3m ago•0 comments

CEF AI is hiring a Growth and Community Operator (remote, global)

https://join.com/companies/cefai/16128429-growth-and-community-operator
1•Lynn_CEF-AI•3m ago•0 comments

AI Agent Security Lecture

https://github.com/anishathalye/ai-agent-security-lecture
1•anishathalye•4m ago•1 comments

2026 App Ecosystem: 200k Apps Scanned for SDKs

https://appgoblin.info/reports/app-ecosystem-report-Q1-2026
1•ddxv•8m ago•1 comments

Gen Z soldiers' plastic surgeries strain Korea's military readiness

https://www.koreatimes.co.kr/southkorea/society/20260511/gen-z-soldiers-plastic-surgeries-strain-...
4•bookofjoe•9m ago•0 comments

CATE – an open-source spatial workspace for terminals, browsers and dev tools

https://github.com/0-AI-UG/cate
1•BlueBerry2001•9m ago•0 comments

How to Spot a Scam Recruiter Faster Than Madoff Was Exposed

https://medium.com/@brothke/how-to-spot-a-scam-recruiter-faster-than-madoff-was-exposed-fd987a3897d8
1•benrothke•9m ago•0 comments

Ask HN: it's mid-may: favourite articles so far?

1•audreyfei•10m ago•0 comments

Less Is More: Interface Agents as Digital Butlers (1994)

https://web.media.mit.edu/~nicholas/Wired/WIRED2-06.html
1•sysoleg•10m ago•0 comments

The Filipino virtual assistants running LinkedIn engagement networks

https://restofworld.org/2026/virtual-assistant-linkedin-engagement/
4•carte_blanche•11m ago•0 comments

Running GitHub Playwright Projects from a Chrome Extension

https://100x.bot/a/Running-Playwright-Projects-from-a-Chrome-Extension
1•shardullavekar•11m ago•0 comments

Wyoming Church Members Targeted by Scammers Stealing in the Name of God

https://cowboystatedaily.com/2026/05/17/wyoming-church-members-targeted-by-scammers-stealing-in-t...
1•Bender•12m ago•0 comments

- YouTube [video]

https://www.youtube.com/watch?v=Mt-Tr3I5RSI
1•surprisetalk•13m ago•0 comments

Anthropic's $1.5B copyright settlement is getting messy as judge delays approval

https://arstechnica.com/tech-policy/2026/05/authors-fight-for-higher-payouts-from-anthropics-1-5b...
3•Bender•14m ago•0 comments

The US is betting on AI to catch insider trading in prediction markets

https://www.wired.com/story/polymarket-insider-trading-cftc-michael-selig-interview/
1•Bender•14m ago•0 comments

The Young Are Being Battered by AI as Hiring Shifts to Older Workers

https://gizmodo.com/the-young-are-being-battered-by-ai-as-hiring-shifts-to-older-workers-2000759608
1•robtherobber•14m ago•0 comments

Travel Notes: RubyKaigi Hakodate

https://bernsteinbear.com/blog/travel-notes-rubykaigi-hakodate/
1•ibobev•15m ago•0 comments

Supercharging Immune Cells May Help Control HIV Long-Term

https://www.wired.com/story/car-t-therapy-may-help-control-hiv-long-term/
1•Brajeshwar•15m ago•0 comments

ExploreYC – Search, filter, and analyze every YC company ever funded

https://www.exploreyc.com
1•victoriapetrova•16m ago•1 comments

EU is on it's way to become an open air museum

https://twitter.com/MichaelAArouet/status/2055543877453447529
3•USTECH_WORKER•18m ago•0 comments

The Interview That Ships to Production: replacing whiteboards with pull requests

https://www.angellist.com/blog/the-interview-that-ships-to-production
1•asimov4•18m ago•0 comments

We stopped AI bot spam in our GitHub repo using Git's –author flag

https://archestra.ai/blog/only-responsible-ai
16•ildari•19m ago•2 comments

PgBackRest Will Continue

https://pgbackrest.org/news.html#will-continue
3•aflukasz•21m ago•1 comments

Bug bounty businesses bombarded with AI slop

https://arstechnica.com/ai/2026/05/bug-bounty-businesses-bombarded-with-ai-slop/
2•mikece•22m ago•0 comments

Are smartphones behind the fertility decline?

https://marginalrevolution.com/marginalrevolution/2026/05/why-i-am-skeptical-on-the-relationship-...
1•SCEtoAux•23m ago•1 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).