Searched refs:emitByte (Results 1 – 13 of 13) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86CodeEmitter.cpp | 356 MCE.emitByte(ModRMByte(3, RegOpcodeFld, X86_MC::getX86RegNum(ModRMReg))); in emitRegModRMByte() 361 MCE.emitByte(ModRMByte(3, RegOpcodeFld, 0)); in emitRegModRMByte() 369 MCE.emitByte(ModRMByte(SS, Index, Base)); in emitSIBByte() 376 MCE.emitByte(Val & 255); in emitConstant() 478 MCE.emitByte(ModRMByte(0, RegOpcodeField, 5)); in emitMemModRMByte() 507 MCE.emitByte(ModRMByte(0, RegOpcodeField, 5)); in emitMemModRMByte() 517 MCE.emitByte(ModRMByte(0, RegOpcodeField, BaseRegNo)); in emitMemModRMByte() 523 MCE.emitByte(ModRMByte(1, RegOpcodeField, BaseRegNo)); in emitMemModRMByte() 529 MCE.emitByte(ModRMByte(2, RegOpcodeField, BaseRegNo)); in emitMemModRMByte() 543 MCE.emitByte(ModRMByte(0, RegOpcodeField, 4)); in emitMemModRMByte() [all …]
|
D | X86JITInfo.cpp | 479 JCE.emitByte(0x49); // REX prefix in emitFunctionStub() 480 JCE.emitByte(0xB8+2); // movabsq r10 in emitFunctionStub() 483 JCE.emitByte(0x41); // REX prefix in emitFunctionStub() 484 JCE.emitByte(0xFF); // jmpq *r10 in emitFunctionStub() 485 JCE.emitByte(2 | (4 << 3) | (3 << 6)); in emitFunctionStub() 487 JCE.emitByte(0xE9); in emitFunctionStub() 494 JCE.emitByte(0x49); // REX prefix in emitFunctionStub() 495 JCE.emitByte(0xB8+2); // movabsq r10 in emitFunctionStub() 498 JCE.emitByte(0x41); // REX prefix in emitFunctionStub() 499 JCE.emitByte(0xFF); // callq *r10 in emitFunctionStub() [all …]
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
D | JITDwarfEmitter.cpp | 90 JCE->emitByte(dwarf::DW_CFA_advance_loc4); in EmitFrameMoves() 101 JCE->emitByte(dwarf::DW_CFA_def_cfa_offset); in EmitFrameMoves() 103 JCE->emitByte(dwarf::DW_CFA_def_cfa); in EmitFrameMoves() 114 JCE->emitByte(dwarf::DW_CFA_def_cfa_register); in EmitFrameMoves() 124 JCE->emitByte(dwarf::DW_CFA_offset_extended_sf); in EmitFrameMoves() 128 JCE->emitByte(dwarf::DW_CFA_offset + Reg); in EmitFrameMoves() 131 JCE->emitByte(dwarf::DW_CFA_offset_extended); in EmitFrameMoves() 395 JCE->emitByte(dwarf::DW_EH_PE_omit); in EmitExceptionTable() 397 JCE->emitByte(dwarf::DW_EH_PE_absptr); in EmitExceptionTable() 401 JCE->emitByte(dwarf::DW_EH_PE_udata4); in EmitExceptionTable() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | JITCodeEmitter.h | 79 void emitByte(uint8_t B) { in emitByte() function 180 emitByte(Byte); 186 emitByte(Byte); 202 emitByte(Byte); in emitSLEB128Bytes() 212 emitByte(C); in emitString() 214 emitByte(0); in emitString()
|
D | MachineCodeEmitter.h | 82 void emitByte(uint8_t B) { in emitByte() function 182 emitByte(Byte); in emitULEB128Bytes() 197 emitByte(Byte); in emitSLEB128Bytes() 207 emitByte(C); in emitString() 209 emitByte(0); in emitString()
|
D | BinaryObject.h | 75 emitByte(0); in emitZeros() 80 inline void emitByte(uint8_t B) { in emitByte() function 307 emitByte(Byte); in emitULEB128Bytes() 322 emitByte(Byte); in emitSLEB128Bytes() 331 emitByte(C); in emitString() 333 emitByte(0); in emitString()
|
D | ObjectCodeEmitter.h | 66 void emitByte(uint8_t B);
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | ELFWriter.cpp | 127 ElfHdr.emitByte(0x7f); // e_ident[EI_MAG0] in doInitialization() 128 ElfHdr.emitByte('E'); // e_ident[EI_MAG1] in doInitialization() 129 ElfHdr.emitByte('L'); // e_ident[EI_MAG2] in doInitialization() 130 ElfHdr.emitByte('F'); // e_ident[EI_MAG3] in doInitialization() 132 ElfHdr.emitByte(TEW->getEIClass()); // e_ident[EI_CLASS] in doInitialization() 133 ElfHdr.emitByte(TEW->getEIData()); // e_ident[EI_DATA] in doInitialization() 134 ElfHdr.emitByte(ELF::EV_CURRENT); // e_ident[EI_VERSION] in doInitialization() 477 GblS.emitByte(CI->getZExtValue()); in EmitGlobalConstant() 851 SymbolTable.emitByte(Sym.Info); in EmitSymbol() 852 SymbolTable.emitByte(Sym.Other); in EmitSymbol() [all …]
|
D | ObjectCodeEmitter.cpp | 30 void ObjectCodeEmitter::emitByte(uint8_t B) { in emitByte() function in llvm::ObjectCodeEmitter 31 BO->emitByte(B); in emitByte()
|
D | ELFCodeEmitter.cpp | 200 JTSection.emitByte(0); in emitJumpTables()
|
/external/caliper/caliper/src/test/resources/com/google/caliper/bridge/ |
D | jdk6-compilation.txt | 92 82 sun.reflect.ClassFileAssembler::emitByte (11 bytes)
|
D | jdk7-compilation.txt | 114 1413 106 b sun.reflect.ClassFileAssembler::emitByte (11 bytes)
|
/external/llvm/docs/ |
D | WritingAnLLVMBackend.rst | 1838 for the ``X86II::AddRegFrm`` case, the first data emitted (by ``emitByte``) is 1850 MCE.emitByte(BaseOpcode + getX86RegNum(MI.getOperand(CurOp++).getReg()));
|