Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are good or interesting Assembler-like languages, but at a higher level? [closed]

Tags:

assembly

I've been looking at L.in.oleum and am intrigued by it's mix of higher-level constructs (loops, dynamic variables) with low-level assembler power (registers).

Are there other languages like Lino out there, which blend the speed of assembler with productivity enhancing features?

EDIT: I realized this kind of sounds like an ad. I'm genuinely interested in other assembler-like languages, Lino is just the only one I happen to know of.

like image 260
CodexArcanum Avatar asked Apr 21 '09 22:04

CodexArcanum


2 Answers

C-- is an intermediate language designed to be generated mainly by compilers, is somewhere between C and assembler

like image 138
hiena Avatar answered Oct 17 '22 14:10

hiena


You might want to look at LLVM. It's pseudo-assmbler might be similar to what you've got in mind

like image 27
SingleNegationElimination Avatar answered Oct 17 '22 15:10

SingleNegationElimination