Home
last modified time | relevance | path

Searched refs:StartAddress (Results 1 – 25 of 36) sorted by relevance

12

/llvm-project-15.0.7/llvm/test/tools/llvm-symbolizer/
H A Doutput-style-json-code.test15 …Column":0,"Discriminator":0,"FileName":"","FunctionName":"","Line":0,"StartAddress":"","StartFileN…
20 …2,"FileName":"/tmp{{/|\\\\}}discrim.c","FunctionName":"foo","Line":5,"StartAddress":"0x400560","St…
30 …tor":0,"FileName":"/tmp{{/|\\\\}}x.c","FunctionName":"main","Line":3,"StartAddress":"0x400540","St…
40StartAddress":"0x400540","StartFileName":"/tmp{{/|\\\\}}x.c","StartLine":2},{"Column":0,"Discrimin…
51StartAddress":"0x400540","StartFileName":"/tmp{{/|\\\\}}x.c","StartLine":2},{"Column":0,"Discrimin…
61StartAddress":"0x400540","StartFileName":"/tmp{{/|\\\\}}x.c","StartLine":2},{"Column":0,"Discrimin…
H A Dsource.ll25 …e":3,"Source":"2 : // Line 2\n3 >: void foo() {}\n4 : // Line 4\n","StartAddress":"0x0","StartFi…
/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugRangeList.cpp22 return StartAddress == dwarf::computeTombstoneAddress(AddressSize); in isBaseAddressSelectionEntry()
49 Entry.StartAddress = data.getRelocatedAddress(offset_ptr); in extract()
83 OS << format(AddrFmt, Offset, RLE.StartAddress, RLE.EndAddress); in dump()
100 E.LowPC = RLE.StartAddress; in getAbsoluteRanges()
H A DDWARFContext.cpp1114 Optional<uint64_t> &StartAddress) { in getFunctionNameAndStartLineForAddress() argument
1140 StartAddress = LowPcAddr->Address; in getFunctionNameAndStartLineForAddress()
1251 Result.StartFileName, Result.StartLine, Result.StartAddress); in getLineInfoForAddress()
1288 Optional<uint64_t> StartAddress; in getLineInfoForAddressRange() local
1291 StartFileName, StartLine, StartAddress); in getLineInfoForAddressRange()
1300 Result.StartAddress = StartAddress; in getLineInfoForAddressRange()
1325 Result.StartAddress = StartAddress; in getLineInfoForAddressRange()
1369 Frame.StartAddress = LowPcAddr->Address; in getInliningInfoForAddress()
/llvm-project-15.0.7/bolt/lib/Profile/
H A DHeatmap.cpp30 void Heatmap::registerAddressRange(uint64_t StartAddress, uint64_t EndAddress, in registerAddressRange() argument
32 if (ignoreAddress(StartAddress)) { in registerAddressRange()
37 if (StartAddress > EndAddress || EndAddress - StartAddress > 64 * 1024) { in registerAddressRange()
38 LLVM_DEBUG(dbgs() << "invalid range : 0x" << Twine::utohexstr(StartAddress) in registerAddressRange()
44 for (uint64_t Bucket = StartAddress / BucketSize; in registerAddressRange()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugRangeList.h31 uint64_t StartAddress; member
45 return (StartAddress == 0) && (EndAddress == 0); in isEndOfListEntry()
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachVMRegion.h26 mach_vm_address_t StartAddress() const { return m_start; } in StartAddress() function
36 return addr >= StartAddress() && addr < EndAddress(); in ContainsAddress()
H A DMachVMMemory.cpp123 region_info->addr = vmRegion.StartAddress(); in GetMemoryRegionInfo()
127 get_dirty_pages(task, vmRegion.StartAddress(), vmRegion.GetByteSize()); in GetMemoryRegionInfo()
137 mach_vm_address_t start_addr = vmRegion.StartAddress(); in GetMemoryRegionInfo()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PECOFF/
H A DPECallFrameInfo.cpp451 m_object_file.GetAddress(runtime_function->StartAddress); in GetAddressRange()
453 runtime_function->StartAddress); in GetAddressRange()
499 m_object_file.GetAddress(runtime_function->StartAddress), in GetUnwindPlan()
500 runtime_function->EndAddress - runtime_function->StartAddress)); in GetUnwindPlan()
522 if (runtime_function->StartAddress < rva + size && in FindRuntimeFunctionIntersectsWithRange()
526 if (runtime_function->StartAddress >= rva + size) in FindRuntimeFunctionIntersectsWithRange()
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/COFF/
H A Dx86_64-unwind-preferred-symbol-gcc.yaml7 # CHECK: StartAddress: func1
11 # CHECK: StartAddress: func2
H A Dx86_64-unwind-preferred-symbol-msvc.yaml7 # CHECK: StartAddress: func1
11 # CHECK: StartAddress: func2
H A Dunwind-x86_64-image.yaml5 # CHECK: StartAddress: entry (0x140001020)
/llvm-project-15.0.7/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp164 if (Info.StartAddress) { in printStartAddress()
166 OS.write_hex(*Info.StartAddress); in printStartAddress()
310 LineInfo.StartAddress ? toHex(*LineInfo.StartAddress) : ""}, in print()
H A DSymbolizableObjectFile.cpp285 LineInfo.StartAddress = Start; in symbolizeCode()
315 LI->StartAddress = Start; in symbolizeInlinedCode()
/llvm-project-15.0.7/lldb/include/lldb/Expression/
H A DExpression.h78 lldb::addr_t StartAddress() { return m_jit_start_addr; } in StartAddress() function
/llvm-project-15.0.7/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp254 const uint64_t StartAddress = FI.startAddress(); in convertFunctionLineTable() local
256 const uint64_t RangeSize = EndAddress - StartAddress; in convertFunctionLineTable()
258 StartAddress, object::SectionedAddress::UndefSection}; in convertFunctionLineTable()
270 LineEntry LE(StartAddress, Gsym.insertFile(FilePath), *Line); in convertFunctionLineTable()
/llvm-project-15.0.7/bolt/include/bolt/Profile/
H A DHeatmap.h66 void registerAddressRange(uint64_t StartAddress, uint64_t EndAddress,
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dwin64_eh_leaf.ll16 ; READOBJ-NEXT: StartAddress: not_leaf
/llvm-project-15.0.7/lldb/source/Expression/
H A DUtilityFunction.cpp69 impl_code_address.SetOffset(StartAddress()); in MakeFunctionCaller()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DWin64EH.h128 support::ulittle32_t StartAddress; member
/llvm-project-15.0.7/llvm/lib/MC/
H A DMachObjectWriter.cpp646 uint64_t StartAddress = 0; in computeSectionAddresses() local
648 StartAddress = alignTo(StartAddress, Sec->getAlignment()); in computeSectionAddresses()
649 SectionAddress[Sec] = StartAddress; in computeSectionAddresses()
650 StartAddress += Layout.getSectionAddressSize(Sec); in computeSectionAddresses()
655 StartAddress += getPaddingSize(Sec, Layout); in computeSectionAddresses()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp149 static LineNumberInfo DILineInfoToIntelJITFormat(uintptr_t StartAddress, in DILineInfoToIntelJITFormat() argument
154 Result.Offset = Address - StartAddress; in DILineInfoToIntelJITFormat()
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRDynamicChecks.cpp326 BuildPointerValidatorFunc(m_checker_function->StartAddress()); in InstrumentInstruction()
395 BuildObjectCheckerFunc(m_checker_function->StartAddress()); in InstrumentInstruction()
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp213 static uint64_t StartAddress; variable
1097 uint64_t StartAddress = SectionAddr + Start; in collectBBAddrMapLabels() local
1099 auto Iter = AddrToBBAddrMap.find(StartAddress); in collectBBAddrMapLabels()
1499 if (Start >= End || End <= StartAddress) in disassembleObject()
1562 if (SectionAddr < StartAddress) in disassembleObject()
1563 Index = std::max<uint64_t>(Index, StartAddress - SectionAddr); in disassembleObject()
1787 if (getHidden(*RelCur) || SectionAddr + Offset < StartAddress) { in disassembleObject()
2171 if ((Address < StartAddress) || (Address > StopAddress)) in printSymbol()
2572 checkForInvalidStartStopAddress(O, StartAddress, StopAddress); in dumpObject()
2813 parseIntArg(InputArgs, OBJDUMP_start_address_EQ, StartAddress); in parseObjdumpOptions()
[all …]
/llvm-project-15.0.7/bolt/runtime/
H A Dinstr.cpp594 bool parseAddressRange(const char *Str, uint64_t &StartAddress, in parseAddressRange() argument
599 StartAddress = hexToLong(Str, '-'); in parseAddressRange()
639 uint64_t StartAddress, EndAddress; in getBinaryPath() local
640 if (!parseAddressRange(d->d_name, StartAddress, EndAddress)) in getBinaryPath()
642 if (CurAddr < StartAddress || CurAddr > EndAddress) in getBinaryPath()

12