/external/llvm/test/tools/llvm-readobj/ |
D | codeview-linetables.test | 45 MFUN32: CodeSize: 0xA 64 MFUN32: CodeSize: 0xA 83 MFUN32: CodeSize: 0x14 109 MFUN32-NEXT CodeSize: 0xA 132 MFUN32-NEXT CodeSize: 0xA 155 MFUN32-NEXT CodeSize: 0x14 197 MFUN64: CodeSize: 0xE 212 MFUN64: CodeSize: 0xE 227 MFUN64: CodeSize: 0x18 253 MFUN64-NEXT: CodeSize: 0xE [all …]
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITMemoryManagerTest.cpp | 125 uintptr_t CodeSize = i % 16 + 1; in TEST() local 131 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i, ""); in TEST() 135 for (unsigned j = 0; j < CodeSize; j++) { in TEST() 154 uintptr_t CodeSize = i % 16 + 1; in TEST() local 157 for (unsigned j = 0; j < CodeSize; j++) { in TEST()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/PerfJITEvents/ |
D | PerfJITEventListener.cpp | 80 uint64_t CodeSize); 145 uint64_t CodeSize; member 403 uint64_t CodeAddr, uint64_t CodeSize) { in NotifyCode() argument 407 if (CodeSize == 0) in NotifyCode() 414 CodeSize; // and code in NotifyCode() 417 rec.CodeSize = CodeSize; in NotifyCode() 430 Dumpstream->write(reinterpret_cast<const char *>(CodeAddr), CodeSize); in NotifyCode()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | DebugLinesSubsection.cpp | 105 Header.CodeSize = CodeSize; in commit() 154 void DebugLinesSubsection::setCodeSize(uint32_t Size) { CodeSize = Size; } in setCodeSize()
|
/external/llvm/test/DebugInfo/COFF/ |
D | multifunction.ll | 158 ; OBJ32: CodeSize: 0x6 173 ; OBJ32: CodeSize: 0x6 188 ; OBJ32: CodeSize: 0x10 201 ; OBJ32-NEXT: CodeSize: 0x6 223 ; OBJ32-NEXT: CodeSize: 0x6 245 ; OBJ32-NEXT: CodeSize: 0x10 427 ; OBJ64: CodeSize: 0xE 442 ; OBJ64: CodeSize: 0xE 457 ; OBJ64: CodeSize: 0x18 470 ; OBJ64-NEXT: CodeSize: 0xE [all …]
|
D | simple.ll | 70 ; OBJ32: CodeSize: 0x6 80 ; OBJ32-NEXT: CodeSize: 0x6 160 ; OBJ64: CodeSize: 0xE 170 ; OBJ64-NEXT: CodeSize: 0xE
|
D | asm.ll | 72 ; OBJ32: CodeSize: 0x6 82 ; OBJ32-NEXT: CodeSize: 0x6 164 ; OBJ64: CodeSize: 0xE 174 ; OBJ64-NEXT: CodeSize: 0xE
|
D | multifile.ll | 80 ; OBJ32: CodeSize: 0x10 90 ; OBJ32-NEXT: CodeSize: 0x10 185 ; OBJ64: CodeSize: 0x18 195 ; OBJ64-NEXT: CodeSize: 0x18
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | CodeViewYAMLDebugSections.h | 47 uint32_t CodeSize; member 94 uint32_t CodeSize; member
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | DebugLinesSubsection.h | 35 support::ulittle32_t CodeSize; // Code size of this line contribution. member 141 uint32_t CodeSize = 0; variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLDebugSections.cpp | 309 IO.mapRequired("CodeSize", Obj.CodeSize); in mapping() 326 IO.mapRequired("CodeSize", Lines.CodeSize); in map() 418 Result->setCodeSize(Lines.CodeSize); in toCodeViewSubsection() 516 F.CodeSize = YF.CodeSize; in toCodeViewSubsection() 585 Result->Lines.CodeSize = Lines.header()->CodeSize; in fromCodeViewSubsection() 714 YF.CodeSize = F.CodeSize; in fromCodeViewSubsection()
|
/external/llvm/tools/lli/ |
D | RemoteJITUtils.h | 103 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument 107 MemMgr->reserveAllocationSpace(CodeSize, CodeAlign, RODataSize, RODataAlign, in reserveAllocationSpace()
|
/external/llvm/tools/llvm-readobj/ |
D | CodeView.h | 35 ulittle32_t CodeSize; member
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | ModuleSubstream.h | 33 support::ulittle32_t CodeSize; // Code size of this line contribution. member
|
/external/llvm/test/MC/COFF/ |
D | cv-empty-linetable.s | 81 # CHECK: CodeSize: 0x5
|
D | cv-loc.s | 47 # CHECK: CodeSize: 0x9
|
/external/giflib/ |
D | dgif_lib.c | 702 DGifGetCode(GifFileType *GifFile, int *CodeSize, GifByteType **CodeBlock) in DGifGetCode() argument 712 *CodeSize = Private->BitsPerPixel; in DGifGetCode() 760 GifByteType CodeSize; in DGifSetupDecompress() local 765 if (READ(GifFile, &CodeSize, 1) < 1) { /* Read Code size from file. */ in DGifSetupDecompress() 768 BitsPerPixel = CodeSize; in DGifSetupDecompress()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 185 uint64_t CodeSize = 0, RODataSize = 0, RWDataSize = 0; in loadObjectImpl() local 188 CodeSize, CodeAlign, in loadObjectImpl() 192 MemMgr.reserveAllocationSpace(CodeSize, CodeAlign, RODataSize, RODataAlign, in loadObjectImpl() 411 uint64_t &CodeSize, in computeTotalAllocSize() argument 496 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, CodeAlign); in computeTotalAllocSize()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | OrcRemoteTargetClient.h | 108 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument 116 if (CodeSize != 0) { in reserveAllocationSpace() 118 Client.reserveMem(Id, CodeSize, CodeAlign); in reserveAllocationSpace() 123 << " (" << CodeSize << " bytes, alignment " << CodeAlign in reserveAllocationSpace()
|
/external/llvm/lib/Target/X86/ |
D | X86InstrFormats.td | 345 let CodeSize = 3; 352 let CodeSize = 3; 358 let CodeSize = 3; 364 let CodeSize = 3; 370 let CodeSize = 3; 376 let CodeSize = 3; 383 let CodeSize = 3; 390 let CodeSize = 3; 417 let CodeSize = 3; 424 let CodeSize = 3; [all …]
|
D | X86InstrArithmetic.td | 374 let CodeSize = 2 in { 449 } // CodeSize 454 let CodeSize = 2 in 459 let isConvertibleToThreeAddress = 1, CodeSize = 2 in { // Can xform into LEA. 471 } // isConvertibleToThreeAddress = 1, CodeSize = 2 474 let CodeSize = 1, hasSideEffects = 0 in { 481 } // CodeSize = 1, hasSideEffects = 0 484 let CodeSize = 2, SchedRW = [WriteALULd, WriteRMW] in { 497 } // CodeSize = 2, SchedRW 500 let CodeSize = 2 in [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86InstrFormats.td | 382 let CodeSize = 3; 388 let CodeSize = 3; 394 let CodeSize = 3; 400 let CodeSize = 3; 406 let CodeSize = 3; 412 let CodeSize = 3; 418 let CodeSize = 3; 425 let CodeSize = 3; 432 let CodeSize = 3; 439 let CodeSize = 3; [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUAsmPrinter.h | 86 uint64_t CodeSize,
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUAsmPrinter.cpp | 313 uint64_t CodeSize = 0; in getSIProgramInfo() local 329 CodeSize += TII->getInstSizeInBytes(MI); in getSIProgramInfo() 511 ProgInfo.CodeLen = CodeSize; in getSIProgramInfo()
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | OrcRemoteTargetClient.h | 116 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument 124 if (CodeSize != 0) { in reserveAllocationSpace() 125 if (auto AddrOrErr = Client.reserveMem(Id, CodeSize, CodeAlign)) in reserveAllocationSpace() 134 << " (" << CodeSize << " bytes, alignment " << CodeAlign in reserveAllocationSpace()
|