#compilers risultati di ricerca
🚀 New article! After exploring the Go lexer, we’re diving into the parser — the phase that turns tokens into structure 🧩 internals-for-interns.com/posts/the-go-p… See how Go builds its AST and gives meaning to code. #GoLang #Compilers #Programming #SoftwareEngineering #Internals
"Low-Level Software Security for Compiler Developers" llsoftsec.github.io/llsoftsecbook/ #infosec #compilers
Software security hardening in compilers, linkers, JITs and assemblers internals "Low-Level Software Security for Compiler Developers" llsoftsec.github.io/llsoftsecbook/ #compilers #cybersecurity
We introduce SuperCoder, the first work to successfully apply LLMs as superoptimizers for assembly code 🚀. Our RL-trained model achieves 95% correctness ✅ and 1.46× speedup ⚡over gcc -O3. 📄arxiv.org/pdf/2505.11480 💻github.com/Anjiang-Wei/Su… #LLM #Compilers #Code #Optimization
With the last tweet about my C compiler I have reached the 2500 followers... I'm thinking if it would be possible to make a giveaway to celebrate this milestone! I will think something with my friend @jeppojeps (@fuzzsociety_org) :D #giveaway #compilers #security
The hidden costs of #OpenSource #compilers - buff.ly/3Uazchu #software #GCC #RTOS #IT #embeddeddevices #Edge #edgecomputing
Sonya is here to teach you how to write step-by-step instructions in #programming you human hardware #compilers 🔧 Check out their talk at the LACM in 15 mins 📍
August is half over already! That means, next week is our next #Dlang Coffee Haus meeting. Nuclear physics was born in coffee houses, imagine what we can do! Red Robin Thu Aug 22 7:00pm 2150 148th Ave NE, Redmond, WA 98052 #compilers #programming #programminglanguages Yes,…
Writing Readable Code Writing readable code is extremely important in software development for one simple reason. #developers #code #compilers
How do you acquire the fundamental computer skills to hack on a complex systems project like OCaml? What’s missing and how do you go about bridging the gap? kcsrk.info/ocaml/2025/11/… Wrote the list for my students, but it may be useful for others too.
Closing the day with the banquet at the National Museum of Scotland #CGO24 #compilers #codegeneration #optimization #edinburgh
🔴 LIVE from #CGO24 with our keynote speaker Kunle Olukotun! #compilers #edinburgh #computingsystems #codegeneration #optimization
What's the best language for building #compilers? I'm specifically interested in skipping over the (interesting but time-consuming!) parts like Lexers and Parsers and moving on to the next phase quickly. Don't want to dig into LLVM just yet since it's a rabbit hole. Ocaml?
Last day of conference is starting with @PPoPPConf keynote by Nir Shavit! #CGO24 #edinburgh #compilers #codegeneration #optimization #parallelprogramming
Compiler Engineer roles at Riverlane in Cambridge! Build the toolchain for fault-tolerant quantum computing. Hybrid, £50–65k DOE. Apply: apply.workable.com/riverlane/ #Compilers #EngineeringJobs #QuantumComputing apply.workable.com/riverlane/j/6F…
@GillVerd @beffjezos @trevormccrt1 GitHub Repo: github.com/DhanrajRateria… #AI #Compilers #HPC #Physics #ThermodynamicComputing
In Deep Engineering #26 we look at how C++26, Rust, Swift, Zig, and Mojo push more work into the compiler—and how Mojo’s patterns translate into shippable code, with Ivo Balbaert. open.substack.com/pub/deepengine… #SoftwareEngineering #Compilers
9/10 LLVM It's the powerful backend , that lets you target any architecture (like x86 or RISC-V) without writing custom assembly. Imagine getting optimized assembley for almost any architecture...Amazing right !!! #Compilers #programming #LLVM
8/10 Compilers - GCC for C, G++ for C++, NVCC for CUDA (compiles host + device code). NVCC wraps GCC/G++ and adds GPU flags. Compile with nvcc -o program file.cu for simple kernels. #Compilers #GCC #NVCC
With the last tweet about my C compiler I have reached the 2500 followers... I'm thinking if it would be possible to make a giveaway to celebrate this milestone! I will think something with my friend @jeppojeps (@fuzzsociety_org) :D #giveaway #compilers #security
Related to the C compiler work: here's a deep dive into Intermediate Representation design. Not perfect, but documents the journey when I was designing an IR and has solid bibliography. #Compilers #IntermediateRepresentation #SystemsProgramming
Hello everyone! Finally I have published the post about how I designed the first version of MjolnIR, the IR of Kunai, an Android analysis tool I did for my PhD, you can find it here: farena.in/compilers/prog… I have to specially thanks @yates82 for his technical and english review.
I laughed out at the conclusion 😂: “A Short Survey Of Compiler Targets”, Abhinav Sarkar (abhinavsarkar.net/notes/2025-com…). On Lobsters: lobste.rs/s/ctbibn/short… #Compilers #Programming #IR #IntermediateRepresentation #GCC #LLVM #QBE
🚀 New article! After exploring the Go lexer, we’re diving into the parser — the phase that turns tokens into structure 🧩 internals-for-interns.com/posts/the-go-p… See how Go builds its AST and gives meaning to code. #GoLang #Compilers #Programming #SoftwareEngineering #Internals
#reversing #compilers Function Peekaboo: Crafting self masking functions using LLVM mdsec.co.uk/2025/10/functi… ]-> Code - github.com/mdsecactivebre… // The post details how to extend LLVM and Clang to implement runtime self-masking of user-defined functions through control flow…
🌳 Abstract Syntax Tree (AST), the hidden backbone of compilers & code analyzers! It breaks your code into a structured tree 📜, showing what your program means not just how it’s written. Perfect for linting, optimization, and refactoring magic! ✨ #Programming #AST #Compilers
We introduce SuperCoder, the first work to successfully apply LLMs as superoptimizers for assembly code 🚀. Our RL-trained model achieves 95% correctness ✅ and 1.46× speedup ⚡over gcc -O3. 📄arxiv.org/pdf/2505.11480 💻github.com/Anjiang-Wei/Su… #LLM #Compilers #Code #Optimization
❗️ Are jump tables always fastest? (2017) #performance #compilers #benchmarking #programming
Learn about type-based alias analysis in C/C++, how aliasing affects performance, why undefined behavior matters, & how restrict helps #compilers generate faster code: kdab.com/understanding-… #Cpp #Optimization
The React 1.0 Compiler is a huge move. It automates memoization, which will clean up codebases massively. But as a systems-level developer, what trade-offs are we making? More complex build steps? Harder to debug "magic" optimizations? #reactjs #compilers #frontend
What if you need to JMP to a label that doesn't exist yet? This classic "forward reference" problem would crash a simple assembler. Here's the story of how I solved it in my single-pass Rust assembler. 🧵 #RustLang #Compilers
🚀 Just launched bootstrap.millsy.dev — my site on Compiler Bootstrapping 🖥️ How do you make the first compiler when you need a compiler to make one? 🤯 Interactive demos, security insights & research — all free. #Programming #Compilers #CyberSecurity #millsydev
how did someone actually compiled the first compiler? Right answers only, no AI no internet ... go! 👇👇👇 #programming #compilers
#Research #compilers "Detecting Implicit Conversions in OpenVPN2 Using CodeQL", September 2025. ]-> Final version of the CodeQL query github.com/trailofbits/co… // Its aim was to answer the question, are any of OpenVPN2’s approximately 2500 implicit integer conversions actually…
Great free book on Compilers, linkers, JITs and assemblers Internals (focus on software security hardening) Low-Level Software Security for Compiler Developers: llsoftsec.github.io/llsoftsecbook/ #compilers
Excellent free book teaching security hardening for compilers, linkers, JITs and assemblers Low-Level Software Security for Compiler Developers: llsoftsec.github.io/llsoftsecbook/ #cybersecurity #compilers
Excellent free book on compilers, linkers, JITs and assemblers for software security hardening Low-Level Software Security for Compiler Developers: llsoftsec.github.io/llsoftsecbook/ #cybersecurity #compilers
Guide for learning internals of compilers, linkers, JITs and assemblers (with focus on software security hardening) Low-Level Software Security for Compiler Developers: llsoftsec.github.io/llsoftsecbook/ #infosec #compilers
"Low-Level Software Security for Compiler Developers" llsoftsec.github.io/llsoftsecbook/ #infosec #compilers
Compilers, linkers, JITs and assemblers Internals (focus on software security hardening) Low-Level Software Security for Compiler Developers: llsoftsec.github.io/llsoftsecbook/ #compilers #cybersecurity
Compilers, linkers, JITs and assemblers internals with focus on software security hardening Low-Level Software Security for Compiler Developers: llsoftsec.github.io/llsoftsecbook/ #compilers #cybersecurity
Internals of compilers, linkers, JITs and assemblers with focus on software security hardening) Low-Level Software Security for Compiler Developers: llsoftsec.github.io/llsoftsecbook/ #infosec #compilers #cybersecurity
Software security hardening in compilers, linkers, JITs and assemblers internals "Low-Level Software Security for Compiler Developers" llsoftsec.github.io/llsoftsecbook/ #compilers #cybersecurity
With the last tweet about my C compiler I have reached the 2500 followers... I'm thinking if it would be possible to make a giveaway to celebrate this milestone! I will think something with my friend @jeppojeps (@fuzzsociety_org) :D #giveaway #compilers #security
- Marathon: Compiler - . . . #Bungie #MarathonTheGame #Compilers #b3d #blendercycles #blendercommunity #3ddesign #3dart #3dartshare #3dartwork #3dmodeling #visualart #digital3d #lighting #gameart #gameartists #artstation #artstationhq
Spent the last two hours of my day finishing this chapter! Ek din zaroor khatam hoga mera rust to go transpiler! #Compilers #CraftingInterpreters
‼️700 teams from 66 countries participated in Runtime Prediction challenge. 🤔Are they all GNNs? Come find out! Sampling some of the top solutions NOW. Room 211-213 Brought to you by @Google and @kaggle and congrats to the winners! #NeurIPS2023 #XLA #Compilers #MLforSystems
Do You know that the answer to the question 33 or 34 or 35 depends on the compiler!! Please comment the reason here. #programming #compilers #C #technology #softwaredevelopment
Most modern compilers are written in the same language they compile. 🤯✨ This is achieved through bootstrapping: first a simple compiler in another language, then the new language compiles itself. Compiling a compiler! ⚙️ #Compilers #ProgrammingLanguages
Something went wrong.
Something went wrong.
United States Trends
- 1. #AEWFullGear 57.7K posts
- 2. Klay 9,545 posts
- 3. #LasVegasGP 136K posts
- 4. Lando 74.9K posts
- 5. Samoa Joe 2,382 posts
- 6. Benavidez 14K posts
- 7. Swerve 3,768 posts
- 8. Haney 26.2K posts
- 9. LJ Martin N/A
- 10. LAFC 9,157 posts
- 11. Hangman 5,653 posts
- 12. Mark Briscoe 3,648 posts
- 13. Georgia Tech 6,479 posts
- 14. Terry Smith 2,779 posts
- 15. Verstappen 38.3K posts
- 16. Kimi 26.5K posts
- 17. #AlianzasAAA 4,150 posts
- 18. Westbrook 3,219 posts
- 19. Terry Crews 1,839 posts
- 20. Utah 22K posts