search for: labelty

Displaying 3 results from an estimated 3 matches for "labelty".

Did you mean: labels
2008 Apr 18
0
[LLVMdev] Giving labels to intrinsics and getting the address
...instruction to be "0x0f, 0x36, 0x00" and label address put into register a. // Get the label from instrinsic's arguments.. BasicBlock* theLabel = ...magic?... // Create a function type that takes a label and returns void std::vector<const Type*>asmArgs; asmArgs.push_back(Type::LabelTy); FunctionType* asmFuncTy = FunctionType::get(Type::VoidTy, asmArgs, false); // Create inline asm that emits the desired opcode and prepares register a InlineAsm* asm = InlineAsm::get(asmFuncTy, ".byte 0x0f, 0x36, 0x00", "{ax},~{dirflag},~{fpsr},~{flags},~{memory}", true); //...
2006 Sep 02
0
[LLVMdev] gfortran calling convention
On Fri, 1 Sep 2006, Michael McCracken wrote: > Here's what works now, and I have a separate test case for each of these: > > statement functions > intrinsic functions (print, cos, etc) > loops, goto statments > scalarized array operations > function calls with *no arguments* > simple common blocks Great! > Function calls with more than one argument don't work.
2006 Sep 02
2
[LLVMdev] gfortran calling convention
The NIST F77 test suite doesn't seem to be compatible with gfortran at all, so I had to work from my own sample codes, and generate test cases from them. Here's what works now, and I have a separate test case for each of these: statement functions intrinsic functions (print, cos, etc) loops, goto statments scalarized array operations function calls with *no arguments* simple common