| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/PerfJITEvents/ |
| H A D | PerfJITEventListener.cpp | 80 uint64_t CodeSize); 145 uint64_t CodeSize; member 397 uint64_t CodeAddr, uint64_t CodeSize) { in NotifyCode() argument 401 if (CodeSize == 0) in NotifyCode() 408 CodeSize; // and code in NotifyCode() 411 rec.CodeSize = CodeSize; in NotifyCode() 424 Dumpstream->write(reinterpret_cast<const char *>(CodeAddr), CodeSize); in NotifyCode()
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/ |
| H A D | DebugLinesSubsection.cpp | 106 Header.CodeSize = CodeSize; in commit() 155 void DebugLinesSubsection::setCodeSize(uint32_t Size) { CodeSize = Size; } in setCodeSize()
|
| H A D | SymbolRecordMapping.cpp | 52 error(IO.mapInteger(Block.CodeSize)); in visitKnownRecord() 414 error(IO.mapInteger(Proc.CodeSize)); in visitKnownRecord()
|
| H A D | SymbolDumper.cpp | 125 W.printHex("CodeSize", Block.CodeSize); in visitKnownRecord() 569 W.printHex("CodeSize", Proc.CodeSize); in visitKnownRecord()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/ |
| H A D | CodeViewYAMLDebugSections.h | 48 uint32_t CodeSize; member 95 uint32_t CodeSize; member
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | DebugLinesSubsection.h | 36 support::ulittle32_t CodeSize; // Code size of this line contribution. member 142 uint32_t CodeSize = 0; variable
|
| H A D | CodeView.h | 554 support::ulittle32_t CodeSize; member
|
| H A D | SymbolRecord.h | 57 uint32_t CodeSize = 0; variable 609 uint32_t CodeSize; variable
|
| /freebsd-12.1/contrib/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLDebugSections.cpp | 310 IO.mapRequired("CodeSize", Obj.CodeSize); in mapping() 327 IO.mapRequired("CodeSize", Lines.CodeSize); in map() 419 Result->setCodeSize(Lines.CodeSize); in toCodeViewSubsection() 517 F.CodeSize = YF.CodeSize; in toCodeViewSubsection() 586 Result->Lines.CodeSize = Lines.header()->CodeSize; in fromCodeViewSubsection() 715 YF.CodeSize = F.CodeSize; in fromCodeViewSubsection()
|
| H A D | CodeViewYAMLSymbols.cpp | 326 IO.mapRequired("CodeSize", Symbol.CodeSize); in map() 424 IO.mapRequired("CodeSize", Symbol.CodeSize); in map()
|
| /freebsd-12.1/contrib/llvm/tools/lli/ |
| H A D | RemoteJITUtils.h | 104 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument 108 MemMgr->reserveAllocationSpace(CodeSize, CodeAlign, RODataSize, RODataAlign, in reserveAllocationSpace()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | OrcRemoteTargetClient.h | 109 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument 117 if (CodeSize != 0) { in reserveAllocationSpace() 119 Client.reserveMem(Id, CodeSize, CodeAlign); in reserveAllocationSpace() 124 << " (" << CodeSize << " bytes, alignment " << CodeAlign in reserveAllocationSpace()
|
| /freebsd-12.1/contrib/llvm/lib/Target/X86/ |
| H A D | X86InstrFormats.td | 380 let CodeSize = 3; 386 let CodeSize = 3; 392 let CodeSize = 3; 398 let CodeSize = 3; 404 let CodeSize = 3; 410 let CodeSize = 3; 416 let CodeSize = 3; 423 let CodeSize = 3; 430 let CodeSize = 3; 437 let CodeSize = 3; [all …]
|
| H A D | X86InstrArithmetic.td | 349 let CodeSize = 2 in { 423 } // CodeSize 439 let CodeSize = 2 in 457 let CodeSize = 1, hasSideEffects = 0 in { 464 } // CodeSize = 1, hasSideEffects = 0 467 let CodeSize = 2, SchedRW = [WriteALURMW] in { 484 } // CodeSize = 2, SchedRW 487 let CodeSize = 2 in 505 let CodeSize = 1, hasSideEffects = 0 in { 512 } // CodeSize = 1, hasSideEffects = 0 [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUAsmPrinter.h | 82 uint64_t CodeSize,
|
| H A D | AMDGPUAsmPrinter.cpp | 340 uint64_t CodeSize, in emitCommonFunctionComments() argument 342 OutStreamer->emitRawComment(" codeLenInByte = " + Twine(CodeSize), false); in emitCommonFunctionComments() 543 uint64_t CodeSize = 0; in getFunctionCodeSize() local 553 CodeSize += TII->getInstSizeInBytes(MI); in getFunctionCodeSize() 557 return CodeSize; in getFunctionCodeSize()
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyld.cpp | 192 uint64_t CodeSize = 0, RODataSize = 0, RWDataSize = 0; in loadObjectImpl() local 195 CodeSize, CodeAlign, in loadObjectImpl() 199 MemMgr.reserveAllocationSpace(CodeSize, CodeAlign, RODataSize, RODataAlign, in loadObjectImpl() 468 uint64_t &CodeSize, in computeTotalAllocSize() argument 561 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, CodeAlign); in computeTotalAllocSize()
|
| H A D | RuntimeDyldImpl.h | 445 uint64_t &CodeSize, uint32_t &CodeAlign,
|
| /freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/ |
| H A D | RuntimeDyld.h | 123 virtual void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Orc/ |
| H A D | OrcMCJITReplacement.h | 87 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument 91 return ClientMM->reserveAllocationSpace(CodeSize, CodeAlign, in reserveAllocationSpace()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalSymbolDumper.cpp | 373 P.formatLine("code size = {0}, addr = {1}", Block.CodeSize, in visitKnownRecord() 721 Proc.CodeSize); in visitKnownRecord()
|
| H A D | DumpOutputStyle.cpp | 883 uint32_t End = Begin + Lines.header()->CodeSize; in dumpLines() 1071 uint32_t(FD.RvaStart), uint32_t(FD.CodeSize), in dumpNewFpo()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-readobj/ |
| H A D | COFFDumper.cpp | 1064 W.printHex("CodeSize", FD.CodeSize); in printCodeViewSymbolSection() 1114 W.printHex("CodeSize", LineInfo.header()->CodeSize); in printCodeViewSymbolSection() 1121 if (Line.Offset >= LineInfo.header()->CodeSize) { in printCodeViewSymbolSection()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbUtil.cpp | 297 return {record.Segment, record.CodeOffset, record.CodeSize}; in GetSegmentOffsetAndLength()
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | PPCInstrVSX.td | 133 let CodeSize = 3 in 140 let CodeSize = 3 in 164 let CodeSize = 3 in 171 let CodeSize = 3 in 1274 let CodeSize = 3 in 1283 let CodeSize = 3 in 1299 let CodeSize = 3 in 1306 let CodeSize = 3 in
|