Home
last modified time | relevance | path

Searched refs:CodeSize (Results 1 – 25 of 58) sorted by relevance

123

/external/llvm/test/tools/llvm-readobj/
Dcodeview-linetables.test45 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/
DMCJITMemoryManagerTest.cpp125 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/
DPerfJITEventListener.cpp80 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/
DDebugLinesSubsection.cpp105 Header.CodeSize = CodeSize; in commit()
154 void DebugLinesSubsection::setCodeSize(uint32_t Size) { CodeSize = Size; } in setCodeSize()
/external/llvm/test/DebugInfo/COFF/
Dmultifunction.ll158 ; 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 …]
Dsimple.ll70 ; OBJ32: CodeSize: 0x6
80 ; OBJ32-NEXT: CodeSize: 0x6
160 ; OBJ64: CodeSize: 0xE
170 ; OBJ64-NEXT: CodeSize: 0xE
Dasm.ll72 ; OBJ32: CodeSize: 0x6
82 ; OBJ32-NEXT: CodeSize: 0x6
164 ; OBJ64: CodeSize: 0xE
174 ; OBJ64-NEXT: CodeSize: 0xE
Dmultifile.ll80 ; 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/
DCodeViewYAMLDebugSections.h47 uint32_t CodeSize; member
94 uint32_t CodeSize; member
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugLinesSubsection.h35 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/
DCodeViewYAMLDebugSections.cpp309 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/
DRemoteJITUtils.h103 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/
DCodeView.h35 ulittle32_t CodeSize; member
/external/llvm/include/llvm/DebugInfo/CodeView/
DModuleSubstream.h33 support::ulittle32_t CodeSize; // Code size of this line contribution. member
/external/llvm/test/MC/COFF/
Dcv-empty-linetable.s81 # CHECK: CodeSize: 0x5
Dcv-loc.s47 # CHECK: CodeSize: 0x9
/external/giflib/
Ddgif_lib.c702 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/
DRuntimeDyld.cpp185 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/
DOrcRemoteTargetClient.h108 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/
DX86InstrFormats.td345 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 …]
DX86InstrArithmetic.td374 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/
DX86InstrFormats.td382 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/
DAMDGPUAsmPrinter.h86 uint64_t CodeSize,
/external/llvm/lib/Target/AMDGPU/
DAMDGPUAsmPrinter.cpp313 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/
DOrcRemoteTargetClient.h116 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()

123