/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/ |
H A D | PerfJITEventListener.cpp | 78 uint64_t CodeSize); 143 uint64_t CodeSize; member 405 uint64_t CodeAddr, uint64_t CodeSize) { in NotifyCode() argument 409 if (CodeSize == 0) in NotifyCode() 416 CodeSize; // and code in NotifyCode() 419 rec.CodeSize = CodeSize; in NotifyCode() 432 Dumpstream->write(reinterpret_cast<const char *>(CodeAddr), CodeSize); in NotifyCode()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | FunctionSpecialization.cpp | 114 Cost CodeSize = 0; in estimateBasicBlocks() local 138 CodeSize += C; in estimateBasicBlocks() 148 return CodeSize; in estimateBasicBlocks() 179 << B.CodeSize << ", Latency = " << B.Latency in getSpecializationBonus() 193 Cost CodeSize = 0; in getUserBonus() local 195 CodeSize = estimateSwitchInst(*I); in getUserBonus() 197 CodeSize = estimateBranchInst(*I); in getUserBonus() 209 CodeSize += TTI.getInstructionCost(User, TargetTransformInfo::TCK_CodeSize); in getUserBonus() 217 LLVM_DEBUG(dbgs() << "FnSpecialization: {CodeSize = " << CodeSize in getUserBonus() 221 Bonus B(CodeSize, Latency); in getUserBonus() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | DebugLinesSubsection.cpp | 105 Header.CodeSize = CodeSize; in commit() 154 void DebugLinesSubsection::setCodeSize(uint32_t Size) { CodeSize = Size; } in setCodeSize()
|
H A D | SymbolRecordMapping.cpp | 51 error(IO.mapInteger(Block.CodeSize)); in visitKnownRecord() 413 error(IO.mapInteger(Proc.CodeSize)); in visitKnownRecord()
|
H A D | SymbolDumper.cpp | 122 W.printHex("CodeSize", Block.CodeSize); in visitKnownRecord() 568 W.printHex("CodeSize", Proc.CodeSize); in visitKnownRecord()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | CodeViewYAMLDebugSections.h | 47 uint32_t CodeSize; member 94 uint32_t CodeSize; member
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
H A D | BreakpadRecords.h | 213 StackWinRecord(lldb::addr_t RVA, lldb::addr_t CodeSize, in StackWinRecord() argument 216 : Record(StackWin), RVA(RVA), CodeSize(CodeSize), in StackWinRecord() 222 lldb::addr_t CodeSize; variable
|
H A D | BreakpadRecords.cpp | 509 lldb::addr_t CodeSize; in parse() 511 if (!to_integer(Str, CodeSize, 16)) in parse() 543 return StackWinRecord(RVA, CodeSize, ParameterSize, SavedRegisterSize, in parse() 548 return L.RVA == R.RVA && L.CodeSize == R.CodeSize && in operator ==() 558 R.CodeSize, R.ParameterSize, R.SavedRegisterSize, R.LocalSize, in operator <<() 508 lldb::addr_t CodeSize; parse() local
|
/freebsd/contrib/llvm-project/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 | 586 support::ulittle32_t CodeSize; member
|
H A D | SymbolRecord.h | 56 uint32_t CodeSize = 0; variable 635 uint32_t CodeSize = 0; 614 uint32_t CodeSize = 0; global() variable
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUAsmPrinter.h | 66 uint64_t ScratchSize, uint64_t CodeSize, 71 const MCExpr *ScratchSize, uint64_t CodeSize,
|
H A D | AMDGPUAsmPrinter.cpp | 380 uint32_t NumSGPR, uint64_t ScratchSize, uint64_t CodeSize, in emitCommonFunctionComments() argument 382 OutStreamer->emitRawComment(" codeLenInByte = " + Twine(CodeSize), false); in emitCommonFunctionComments() 409 const MCExpr *NumSGPR, const MCExpr *ScratchSize, uint64_t CodeSize, in emitCommonFunctionComments() argument 411 OutStreamer->emitRawComment(" codeLenInByte = " + Twine(CodeSize), false); in emitCommonFunctionComments() 739 uint64_t CodeSize = 0; in getFunctionCodeSize() local 749 CodeSize += TII->getInstSizeInBytes(MI); in getFunctionCodeSize() 753 return CodeSize; in getFunctionCodeSize()
|
/freebsd/contrib/llvm-project/llvm/tools/lli/ |
H A D | ForwardingMemoryManager.h | 46 void reserveAllocationSpace(uintptr_t CodeSize, Align CodeAlign, in reserveAllocationSpace() argument 50 MemMgr->reserveAllocationSpace(CodeSize, CodeAlign, RODataSize, RODataAlign, in reserveAllocationSpace()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A 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 in fromCodeViewSubsection() [all...] |
H A D | CodeViewYAMLSymbols.cpp | 362 IO.mapRequired("CodeSize", Symbol.CodeSize); in map() 460 IO.mapRequired("CodeSize", Symbol.CodeSize); in map()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | EPCGenericRTDyldMemoryManager.cpp | 97 uintptr_t CodeSize, Align CodeAlign, uintptr_t RODataSize, in reserveAllocationSpace() argument 121 TotalSize += alignTo(CodeSize, EPC.getPageSize()); in reserveAllocationSpace() 147 *TargetAllocAddr, ExecutorAddrDiff(alignTo(CodeSize, EPC.getPageSize()))}; in reserveAllocationSpace()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | EPCGenericRTDyldMemoryManager.h | 63 void reserveAllocationSpace(uintptr_t CodeSize, Align CodeAlign,
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | NativeFunctionSymbol.cpp | 53 uint64_t NativeFunctionSymbol::getLength() const { return Sym.CodeSize; } in getLength()
|
H A D | SymbolCache.cpp | 366 Offset < PS.CodeOffset + PS.CodeSize) { in findFunctionSymbolBySectOffset() 512 uint64_t EndAddr = StartAddr + Lines.header()->CodeSize; in findLineTable()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyld.cpp | 193 uint64_t CodeSize = 0, RODataSize = 0, RWDataSize = 0; in loadObjectImpl() local 195 if (auto Err = computeTotalAllocSize(Obj, CodeSize, CodeAlign, RODataSize, in loadObjectImpl() 198 MemMgr.reserveAllocationSpace(CodeSize, CodeAlign, RODataSize, RODataAlign, in loadObjectImpl() 536 const ObjectFile &Obj, uint64_t &CodeSize, Align &CodeAlign, in computeTotalAllocSize() argument 642 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, CodeAlign); in computeTotalAllocSize()
|
H A D | RuntimeDyldImpl.h | 426 Error computeTotalAllocSize(const ObjectFile &Obj, uint64_t &CodeSize,
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
H A D | RuntimeDyld.h | 137 virtual void reserveAllocationSpace(uintptr_t CodeSize, Align CodeAlign, in reserveAllocationSpace() argument
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbUtil.cpp | 445 return {record.Segment, record.CodeOffset, record.CodeSize}; in GetSegmentOffsetAndLength() 674 RangeListEntry fd_range(load_addr + it->RvaStart, it->CodeSize); in GetCorrespondingFrameData() 684 RangeListEntry fd_range(load_addr + it->RvaStart, it->CodeSize); in GetCorrespondingFrameData()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/ |
H A D | SymbolFileBreakpad.cpp | 704 AddressRange(base + record->RVA, record->CodeSize, in ParseWinUnwindPlan() 914 base + record->RVA, record->CodeSize, It.GetBookmark())); in ParseUnwindData()
|