search for: asssembl

Displaying 4 results from an estimated 4 matches for "asssembl".

Did you mean: asssembly
2012 Jan 28
3
[LLVMdev] [Sparc] size of input arguments with doubles in llvm byte code?
Hi, I have a llvm asssembly version of radix_mod.c modified from radix (a splash2 bench mark). It is named radix.bc. I have extended the number of arguments from 2 to 4 in the function called product_mod_46 and saved it as a new file called radix_mod.bc . Although the extra arguments does not do anything in the function. It...
2012 Jan 28
0
[LLVMdev] [Sparc] size of input arguments with doubles in llvm byte code?
ckathy wrote: > > Hi, > > I have a llvm asssembly version of radix_mod.c modified from radix (a > splash2 bench mark). It is named radix.bc. > > I have extended the number of arguments from 2 to 4 in the function called > product_mod_46 and saved it as a new file called radix_mod.bc . Although > the extra arguments does not do any...
2015 Mar 04
2
[LLVMdev] Mips patches for LLVM 3.5.2
...atterns for MIPS32r6/MIPS64r6. o Fixes bad code generation in the test-suite for certain option combinations. * r225529 - [mips] Add support for accessing $gp as a named register. o Fixes bad code generation in LLVMLinux * r224425 and r225521 - [mips] Set GCC-compatible MIPS asssembler options before inline asm blocks. o Fixes bad code generation in LLVMLinux o Makes our inline assembly compatible with GCC's. If you're ok with these then I'll start merging them in advance of 3.5.2-rc1. I was considering these too but I decided against them: * r22665...
2010 Jun 21
2
[LLVMdev] MC: Object file specific parsing
...class MachOAsmParser : public AsmParser { +public: + MachOAsmParser(SourceMgr &SM, MCContext &Ctx, MCStreamer &Out, + const MCAsmInfo &MAI) + : AsmParser(SM, Ctx, Out, MAI) {} + + ~MachOAsmParser() {}; + + /// ParseDirectiveSectionSwitch - Parse Mach-O specific asssembler + /// section directives. + bool ParseDirectiveSectionSwitch(StringRef Section); + bool ParseDirectiveDarwinSection(); // Darwin specific ".section". + + bool ParseDirectiveDarwinSymbolDesc(); // Darwin specific ".desc" + bool ParseDirectiveDarwinLsym(); // Darwin specifi...