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

  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMJITInfo.cpp 184 JCE.emitWordLE(0xe59fc004); // ldr ip, [pc, #+4]
185 JCE.emitWordLE(0xe08fc00c); // L_func$scv: add ip, pc, ip
186 JCE.emitWordLE(0xe59cf000); // ldr pc, [ip]
187 JCE.emitWordLE(LazyPtr - (intptr_t(Addr)+4+8)); // func - (L_func$scv+8)
199 JCE.emitWordLE(0xe51ff004); // ldr pc, [pc, #-4]
200 JCE.emitWordLE((intptr_t)Fn); // addr of function
222 JCE.emitWordLE(0xe92d4000); // push {lr}
224 JCE.emitWordLE(0xe24fe00c); // sub lr, pc, #12
226 JCE.emitWordLE(0xe51ff004); // ldr pc, [pc, #-4]
228 JCE.emitWordLE((intptr_t)ARMCompilationCallback)
    [all...]
ARMCodeEmitter.cpp 89 void emitWordLE(unsigned Binary);
514 void ARMCodeEmitter::emitWordLE(unsigned Binary) {
517 MCE.emitWordLE(Binary);
650 emitWordLE(0);
666 emitWordLE(0);
669 emitWordLE(Val);
672 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
702 emitWordLE(Binary);
717 emitWordLE(Binary);
741 emitWordLE(Binary)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
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);
MipsCodeEmitter.cpp 89 void emitWordLE(unsigned Word);
246 emitWordLE(getBinaryCodeForInstr(MI));
253 void MipsCodeEmitter::emitWordLE(unsigned Word) {
256 MCE.emitWordLE(Word);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ObjectCodeEmitter.cpp 34 /// emitWordLE - This callback is invoked when a 32-bit word needs to be
36 void ObjectCodeEmitter::emitWordLE(uint32_t W) {
37 BO->emitWordLE(W);
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86JITInfo.cpp 481 JCE.emitWordLE((unsigned)(intptr_t)Target);
482 JCE.emitWordLE((unsigned)(((intptr_t)Target) >> 32));
488 JCE.emitWordLE((intptr_t)Target-JCE.getCurrentPCValue()-4);
496 JCE.emitWordLE((unsigned)(intptr_t)Target);
497 JCE.emitWordLE((unsigned)(((intptr_t)Target) >> 32));
504 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/swiftshader/third_party/LLVM/include/llvm/CodeGen/
ObjectCodeEmitter.h 68 /// emitWordLE - This callback is invoked when a 32-bit word needs to be
70 void emitWordLE(uint32_t W);
MachineCodeEmitter.h 87 /// emitWordLE - This callback is invoked when a 32-bit word needs to be
90 void emitWordLE(uint32_t W) {
BinaryObject.h 120 emitWordLE(W);
147 /// emitWordLE - This callback is invoked when a 32-bit word needs to be
149 inline void emitWordLE(uint32_t W) {
JITCodeEmitter.h 84 /// emitWordLE - This callback is invoked when a 32-bit word needs to be
87 void emitWordLE(uint32_t W) {

Completed in 486 milliseconds