HomeSort by relevance Sort by last modified time
    Searched refs:emitWordLE (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/Target/Mips/
MipsCodeEmitter.cpp 89 void emitWordLE(unsigned Word);
287 MCE.emitWordLE(
289 MCE.emitWordLE(
302 MCE.emitWordLE(
304 MCE.emitWordLE(
311 MCE.emitWordLE(
313 MCE.emitWordLE(
315 MCE.emitWordLE(
329 MCE.emitWordLE(
331 MCE.emitWordLE(
    [all...]
MipsJITInfo.cpp 180 JCE.emitWordLE(0xf << 26 | 25 << 16 | Hi);
181 JCE.emitWordLE(9 << 26 | 25 << 21 | 25 << 16 | Lo);
182 JCE.emitWordLE(25 << 21 | 24 << 11 | 9);
183 JCE.emitWordLE(0);
  /external/llvm/lib/Target/ARM/
ARMJITInfo.cpp 185 JCE.emitWordLE(0xe59fc004); // ldr ip, [pc, #+4]
186 JCE.emitWordLE(0xe08fc00c); // L_func$scv: add ip, pc, ip
187 JCE.emitWordLE(0xe59cf000); // ldr pc, [ip]
188 JCE.emitWordLE(LazyPtr - (intptr_t(Addr)+4+8)); // func - (L_func$scv+8)
200 JCE.emitWordLE(0xe51ff004); // ldr pc, [pc, #-4]
201 JCE.emitWordLE((intptr_t)Fn); // addr of function
223 JCE.emitWordLE(0xe92d4000); // push {lr}
225 JCE.emitWordLE(0xe24fe00c); // sub lr, pc, #12
227 JCE.emitWordLE(0xe51ff004); // ldr pc, [pc, #-4]
229 JCE.emitWordLE((intptr_t)ARMCompilationCallback)
    [all...]
ARMCodeEmitter.cpp 89 void emitWordLE(unsigned Binary);
533 void ARMCodeEmitter::emitWordLE(unsigned Binary) {
536 MCE.emitWordLE(Binary);
659 emitWordLE(0);
665 emitWordLE(Val);
671 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
724 emitWordLE(0);
748 emitWordLE(Binary);
763 emitWordLE(Binary);
787 emitWordLE(Binary)
    [all...]
  /external/llvm/lib/Target/X86/
X86JITInfo.cpp 492 JCE.emitWordLE((unsigned)(intptr_t)Target);
493 JCE.emitWordLE((unsigned)(((intptr_t)Target) >> 32));
499 JCE.emitWordLE((intptr_t)Target-JCE.getCurrentPCValue()-4);
507 JCE.emitWordLE((unsigned)(intptr_t)Target);
508 JCE.emitWordLE((unsigned)(((intptr_t)Target) >> 32));
515 JCE.emitWordLE((intptr_t)Target-JCE.getCurrentPCValue()-4);
X86CodeEmitter.cpp 253 MCE.emitWordLE(0);
281 MCE.emitWordLE((int32_t)Disp);
303 MCE.emitWordLE(0);
324 MCE.emitWordLE((int32_t)Disp);
344 MCE.emitWordLE(0);
    [all...]
  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.h 85 /// emitWordLE - This callback is invoked when a 32-bit word needs to be
88 void emitWordLE(uint32_t W) {
MachineCodeEmitter.h 90 /// emitWordLE - This callback is invoked when a 32-bit word needs to be
93 void emitWordLE(uint32_t W) {

Completed in 533 milliseconds