Chris Lattner
8900ef1931
add .o file writing for inline asm in llc. Here's a silly
demo:
$ clang asm.c -S -o - -emit-llvm | llc -filetype=obj -o t.o
<inline asm>:1:2: error: unrecognized instruction
abc incl %eax
^
LLVM ERROR: Error parsing inline asm
Only problem seems to be that the parser finalizes OutStreamer
at the end of the first inline asm, which isn't what we want.
For example:
$ cat asm.c
int foo(int X) {
__asm__ ("incl %0" : "+r" (X));
return X;
}
$ clang asm.c -S -o - -emit-llvm | llc
...
subq $8, %rsp
movl %edi, (%rsp)
movl %edi, %eax
## InlineAsm Start
incl %eax
## InlineAsm End
movl %eax, (%rsp)
movl %eax, 4(%rsp)
addq $8, %rsp
ret
$ clang asm.c -S -o - -emit-llvm | llc -filetype=obj -o t.o
$ otool -tv t.o
t.o:
(__TEXT,__text) section
_foo:
0000000000000000 subq $0x08,%rsp
0000000000000004 movl %edi,(%rsp)
0000000000000007 movl %edi,%eax
0000000000000009 incl %eax
$
don't stop at inc!
llvm-svn: 100491
2010-04-05 23:11:24 +00:00
..
2010-03-24 19:56:17 +00:00
2010-04-04 05:04:31 +00:00
2010-01-24 20:43:08 +00:00
2010-04-05 23:11:24 +00:00
2010-02-05 16:19:36 +00:00
2010-01-24 20:43:08 +00:00
2010-01-24 20:43:08 +00:00
2010-04-03 02:17:50 +00:00
2010-03-04 20:56:19 +00:00
2010-01-24 20:43:08 +00:00
2010-03-24 19:56:17 +00:00
2010-03-30 19:56:41 +00:00
2010-03-24 19:56:17 +00:00
2010-04-05 23:07:18 +00:00
2010-01-24 20:43:08 +00:00
2010-01-24 20:43:08 +00:00
2009-07-15 22:16:10 +00:00
2010-02-25 06:34:33 +00:00
2009-08-11 11:01:19 +00:00
2010-04-03 02:00:03 +00:00
2010-04-05 22:42:30 +00:00
2010-03-24 19:56:17 +00:00
2009-10-05 02:29:51 +00:00
2010-03-23 23:09:03 +00:00