| bio | website | pennware.com |
|---|---|---|
| location | Milwaukee, WI | |
| age | ||
| visits | member for | 3 years, 6 months |
| seen | 2 hours ago | |
| stats | profile views | 1,075 |
I dabble in a lot of areas: embedded real-time systems, operating systems, and compiler/tool chain development.
In real life, I program CT scanners.
In my spare time, I'm putting together an embedded C/C++ compiler based on Clang and LLVM: ELLCC.
I'm also on LinkedIn.
|
Apr 19 |
comment |
How to compare two files in vxworks shell? +1 for showing how simple it is. |
|
Apr 19 |
comment |
What does it mean for a binary to be 'munched' after it is compiled? We don't much in our 6.8 Makefiles, so I think it is really gone. |
|
Mar 3 |
comment |
Translation to LLVM IR directly or via C/Clang You might also want to look at stackoverflow.com/questions/10264635/…. |
|
Feb 15 |
comment |
Initializer element is not a constant @ouah It wasn't tagged as C when it was first posted. I was just pointing out a difference in the way C and C++ handle static initializers. |
|
Feb 15 |
comment |
Initializer element is not a constant Try using a C++ compiler. Make sure to add "#include <stdio.h>" though. C does not allow static variables to be initialized with a non-constant. |
|
Feb 10 |
comment |
Generate LLVM C++ API code as backend If you're still interested, my demo page at ellcc.org/demo can generate the C++ API code. |
|
Feb 7 |
comment |
clang llvm very long compliation time on cygwin RAM size is important. Under Linux, I found a lot of paging when I had 3GB of RAM. I upped it to 8GB it sped up quite a bit. |
|
Sep 30 |
comment |
Software implementation of integer division in LLVM backend No problem. Just compile the compiler-rt files to bitcode, use llvm-link to link the rt objects with your application code bitcode, and then run the result through your code generator. |
|
Aug 15 |
comment |
Does compiler knows relocatable address of local variables You can see how several processors use local memory by trying the ELLCC online demo: ellcc.org/demo |
|
Jul 22 |
comment |
LLVM cpp backend, does it replace c backend? The C backend has been removed from the latest LLVM. No one was maintaining it and it was becoming increasingly non-functional. |
|
May 6 |
comment |
assembly disassembly In main, try "return Foo(2, 4);" to see if main returns 4. That would prove inlineing. |
|
May 2 |
comment |
Porting compiler from x86 Assembly to LLVM I have a slightly modified version of the page that let's you look at assembly language for other LLVM targets as well: ellcc.org/demo |
|
Apr 28 |
comment |
I am new to c++. So please help me in following snippet Are both main.cpp and add.cpp on the build command line? What compiler are you using? |
|
Apr 28 |
comment |
how to put an unsigned int into a char array and extract it back Yes. A word of warning however. You probably want to make the array an array of unsigned char or you'll be bit by a sign bit if your compiler treats plain char as signed. (Pun intended) |
|
Apr 28 |
comment |
how to put an unsigned int into a char array and extract it back I warned the OP without any options. ;-) |
|
Apr 23 |
comment |
Compiler output language - LLVM IR vs C Right, C is typed. But you don't get an indication of the error until you try to compile the C code. With LLVM IR you get an indication of the error when you generate the IR. Much easier to debug. |
|
Mar 3 |
comment |
Understanding state-machine for detecting C-style commentsif (c == "/*"[1]) { Is a silly way of saying if (c == '*') { |
|
Feb 28 |
comment |
Extract just the required functions from a C code project? Or you could start by compiling main() and add functions until you don't get any more linker errors. :-) |
|
Feb 28 |
comment |
Extract just the required functions from a C code project? In the past I've used LLVM link time optimization which internalized all identifiers other than main. Unreferenced functions were removed. I had to take pains to keep things like interrupt handlers from getting removed. It's not a source level solution, though. |
|
Feb 18 |
comment |
Using LLVM bytecode for libraries (instead of native object files) I figured the type system re-write would help. I should try whole program compilation again, the concept is pretty cool. :-) |