frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

When GPUs Fail Quietly: Observability-Aware Early Warning Beyond Telemetry

https://arxiv.org/abs/2603.28781
1•matt_d•1m ago•0 comments

Federated, End-to-End Encrypted Document Storage with Git

https://blog.foks.pub/posts/federated-e2e-encrypted-doc-storage-with-git/
1•maxtaco•1m ago•0 comments

Does Gas Town 'steal' usage from users' LLM credits to improve itself?

https://github.com/gastownhall/gastown/issues/3649
2•rektomatic•2m ago•0 comments

So, you want to be a darknet drug lord

https://pastebin.com/raw/GrV3uYh5
1•pRusya•3m ago•1 comments

Firefox appears to be bulk removing extensions with no explanation

https://discourse.mozilla.org/t/add-on-removed-without-explanation/147949
2•newswangerd•4m ago•0 comments

The Mythical Agent-Month

https://wesmckinney.com/blog/mythical-agent-month/
1•tchalla•5m ago•0 comments

Ticketmaster and Live Nation found Guilty of anticompetitive venue monopoly

https://apnews.com/article/live-nation-ticketmaster-antitrust-trial-f0ffdd20dd4f64e8b4bb9d97134b826f
1•randycupertino•6m ago•2 comments

V&A Museum deletes maps and images deemed sensitive by Beijing from publications

https://www.theguardian.com/culture/2026/apr/14/v-and-a-censored-catalogues-demands-chinese-printer
1•ilamont•6m ago•0 comments

US and Israel's war on Iran is a disaster for the environment, analysis shows

https://www.theguardian.com/world/2026/mar/21/middle-east-iran-conflict-environment-climate
1•PaulHoule•7m ago•0 comments

Trace: Capability-Targeted Agentic Training

https://scalingintelligence.stanford.edu/blogs/trace/
1•mbeissinger•7m ago•0 comments

DeepBlue Marine Unlocks Africa's Coastal Economy Through Premium Experience

https://deep-blue-marine-5f14a6b1.base44.app
1•DeepBlue_Marine•7m ago•0 comments

Jury finds Live Nation, Ticketmaster had anti-competitive monopoly

https://www.cbc.ca/lite/story/9.7164989
2•colinprince•8m ago•0 comments

Great Docs: Beautiful Documentation for Python Packages

https://opensource.posit.co/blog/2026-04-15_introduction/
1•dbaupp•8m ago•0 comments

Graphene just defied a fundamental law of physics

https://www.sciencedaily.com/releases/2026/04/260415042152.htm
2•HardwareLust•9m ago•0 comments

Show HN: Originary – emit signed records for MCP tools

https://github.com/peacprotocol/peac
1•jithinraj•9m ago•0 comments

Retrofitting JIT compilers into C interpreters with ykllvm

https://tratt.net/laurie/blog/2026/retrofitting_jit_compilers_into_c_interpreters.html
1•fanf2•10m ago•0 comments

Cloudflare Browser Run. Will it go around Cloudflare's own blocking?

https://blog.cloudflare.com/browser-run-for-ai-agents/
2•touwer•11m ago•0 comments

Meta-Harness: automated search over task-specific model harnesses

https://github.com/stanford-iris-lab/meta-harness
1•mbeissinger•12m ago•0 comments

Hacker News Daily podcast, created with vibecasting

https://vibecasting.fm/vibecasts
2•ryanj20021•12m ago•1 comments

Wq_affn_cache_shard Merged for Linux 7.1 Significant Win for CPUs Many Cores

https://www.phoronix.com/news/Linux-7.1-WQ
1•Bender•12m ago•0 comments

Trump's push to cut interest rates has echoes of 'banana republic', says Yellen

https://www.theguardian.com/business/2026/apr/15/donald-trump-cut-interest-rates-janet-yellen-us-...
6•mitchbob•13m ago•0 comments

Show HN: Omi – watches your screen, hears conversations, tells you what to do

https://github.com/BasedHardware/omi
1•kodjima33•14m ago•1 comments

Windsurf 2.0

https://windsurf.com/blog/windsurf-2-0
4•dabit3•14m ago•2 comments

Show HN: Mdview.io – online md viewer with responsive tables

https://mdview.io/
1•Igor_Wiwi•15m ago•0 comments

Evaluating Agents for Scientific Discovery

https://allenai.org/blog/evaluating-scientific-discovery-agents
1•gmays•15m ago•0 comments

Show HN: Stagewise Reads Files Without Depending on the Model API

https://stagewise.io/news/file-transformation-pipeline
1•glenntws•15m ago•0 comments

New 3D map of Universe could solve dark energy mystery

https://arstechnica.com/science/2026/04/desi-completes-its-3d-map-of-universe-right-on-schedule/
1•nobody9999•17m ago•0 comments

Customers revolt as GitHub Copilot 'fixes' rate limits

https://www.theregister.com/2026/04/15/github_copilot_rate_limiting_bug/
1•GaryBluto•18m ago•0 comments

LLM from scratch, part 32k – Interventions: gradient accumulation

https://www.gilesthomas.com/2026/04/llm-from-scratch-32k-interventions-training-our-best-model-lo...
1•gpjt•19m ago•0 comments

The Sociable Robot – Proto Magazine (2009)

https://protomag.com/technology/the-sociable-robot/
1•danhite•20m ago•1 comments
Open in hackernews

Ask HN: Help with doing statistics over machine code

2•phafu•11mo 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•11mo 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•11mo 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).