| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | executor_address.h | 144 ExecutorAddressRange(ExecutorAddress StartAddress, ExecutorAddress EndAddress) in ExecutorAddressRange() 145 : StartAddress(StartAddress), EndAddress(EndAddress) {} in ExecutorAddressRange() 147 bool empty() const { return StartAddress == EndAddress; } in empty() 148 ExecutorAddrDiff size() const { return EndAddress - StartAddress; } in size() 153 return span<T>(StartAddress.toPtr<T *>(), size().getValue() / sizeof(T)); in toSpan() 156 ExecutorAddress StartAddress; member 189 Value.StartAddress, Value.EndAddress); in size() 195 BOB, Value.StartAddress, Value.EndAddress); in serialize() 200 BIB, Value.StartAddress, Value.EndAddress); in deserialize()
|
| H A D | macho_platform.cpp | 96 << SE.StartAddress.getValue() << " -- 0x" << SE.EndAddress.getValue() in validatePointerSectionExtent() 116 ObjCSelRefs.StartAddress.getValue()); in registerObjCSelectors() 182 Swift5Protocols.StartAddress.toPtr<const ProtocolRecord *>(), in registerSwift5Protocols() 199 ProtoConfSec.StartAddress.toPtr<const ProtocolConformanceRecord *>(), in registerSwift5ProtocolConformances() 328 if (POSR.EHFrameSection.StartAddress) in registerObjectSections() 332 if (POSR.ThreadDataSection.StartAddress) { in registerObjectSections() 343 if (POSR.EHFrameSection.StartAddress) in deregisterObjectSections()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
| H A D | ExecutorAddress.h | 141 ExecutorAddressRange(ExecutorAddress StartAddress, ExecutorAddress EndAddress) in ExecutorAddressRange() 142 : StartAddress(StartAddress), EndAddress(EndAddress) {} in ExecutorAddressRange() 144 bool empty() const { return StartAddress == EndAddress; } in empty() 145 ExecutorAddrDiff size() const { return EndAddress - StartAddress; } in size() 147 ExecutorAddress StartAddress; member 182 Value.StartAddress, Value.EndAddress); in size() 188 BOB, Value.StartAddress, Value.EndAddress); in serialize() 193 BIB, Value.StartAddress, Value.EndAddress); in deserialize()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugRangeList.h | 29 uint64_t StartAddress; member 43 return (StartAddress == 0) && (EndAddress == 0); in isEndOfListEntry() 55 return StartAddress == -1U; in isBaseAddressSelectionEntry() 56 return StartAddress == -1ULL; in isBaseAddressSelectionEntry()
|
| /freebsd-13.1/sys/contrib/dev/acpica/components/tables/ |
| H A D | tbxfroot.c | 391 UINT8 *StartAddress, in ACPI_EXPORT_SYMBOL_INIT() 402 EndAddress = StartAddress + Length; in ACPI_EXPORT_SYMBOL_INIT() 406 for (MemRover = StartAddress; MemRover < EndAddress; in ACPI_EXPORT_SYMBOL_INIT() 429 StartAddress)); in ACPI_EXPORT_SYMBOL_INIT()
|
| /freebsd-13.1/sys/contrib/dev/acpica/components/utilities/ |
| H A D | utaddress.c | 212 RangeInfo->StartAddress = Address; in AcpiUtAddAddressRange() 283 ACPI_FORMAT_UINT64 (RangeInfo->StartAddress), in AcpiUtRemoveAddressRange() 358 (EndAddress >= RangeInfo->StartAddress)) in AcpiUtCheckAddressRange() 372 ACPI_FORMAT_UINT64 (RangeInfo->StartAddress), in AcpiUtCheckAddressRange()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugRangeList.cpp | 42 Entry.StartAddress = data.getRelocatedAddress(offset_ptr); in extract() 65 OS << format(format_str, Offset, RLE.StartAddress, RLE.EndAddress); in dump() 83 E.LowPC = RLE.StartAddress; in getAbsoluteRanges()
|
| H A D | DWARFContext.cpp | 1042 Optional<uint64_t> &StartAddress) { in getFunctionNameAndStartLineForAddress() argument 1068 StartAddress = LowPcAddr->Address; in getFunctionNameAndStartLineForAddress() 1237 Result.StartFileName, Result.StartLine, Result.StartAddress); in getLineInfoForAddress() 1258 Optional<uint64_t> StartAddress; in getLineInfoForAddressRange() local 1261 StartFileName, StartLine, StartAddress); in getLineInfoForAddressRange() 1270 Result.StartAddress = StartAddress; in getLineInfoForAddressRange() 1295 Result.StartAddress = StartAddress; in getLineInfoForAddressRange() 1339 Frame.StartAddress = LowPcAddr->Address; in getInliningInfoForAddress()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
| H A D | DIPrinter.cpp | 166 if (Info.StartAddress) { in printStartAddress() 168 OS.write_hex(*Info.StartAddress); in printStartAddress() 308 LineInfo.StartAddress ? toHex(*LineInfo.StartAddress) : ""}, in print()
|
| H A D | SymbolizableObjectFile.cpp | 285 LineInfo.StartAddress = Start; in symbolizeCode() 315 LI->StartAddress = Start; in symbolizeInlinedCode()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Expression/ |
| H A D | Expression.h | 78 lldb::addr_t StartAddress() { return m_jit_start_addr; } in StartAddress() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | DwarfTransformer.cpp | 253 const uint64_t StartAddress = FI.startAddress(); in convertFunctionLineTable() local 255 const uint64_t RangeSize = EndAddress - StartAddress; in convertFunctionLineTable() 257 StartAddress, object::SectionedAddress::UndefSection}; in convertFunctionLineTable() 267 LineEntry LE(StartAddress, CUI.DWARFToGSYMFileIndex(Gsym, *FileIdx), in convertFunctionLineTable()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MachObjectWriter.cpp | 644 uint64_t StartAddress = 0; in computeSectionAddresses() local 646 StartAddress = alignTo(StartAddress, Sec->getAlignment()); in computeSectionAddresses() 647 SectionAddress[Sec] = StartAddress; in computeSectionAddresses() 648 StartAddress += Layout.getSectionAddressSize(Sec); in computeSectionAddresses() 653 StartAddress += getPaddingSize(Sec, Layout); in computeSectionAddresses()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Win64EH.h | 94 support::ulittle32_t StartAddress; member
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | UtilityFunction.cpp | 74 impl_code_address.SetOffset(StartAddress()); in MakeFunctionCaller()
|
| /freebsd-13.1/sys/contrib/dev/acpica/include/ |
| H A D | actables.h | 173 UINT8 *StartAddress,
|
| H A D | actbl2.h | 628 UINT64 StartAddress; member 1446 UINT64 StartAddress; member
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/ |
| H A D | IntelJITEventListener.cpp | 148 static LineNumberInfo DILineInfoToIntelJITFormat(uintptr_t StartAddress, in DILineInfoToIntelJITFormat() argument 153 Result.Offset = Address - StartAddress; in DILineInfoToIntelJITFormat()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | COFFDump.cpp | 532 if (!RF.StartAddress) in printRuntimeFunction() 536 static_cast<uint32_t>(RF.StartAddress)) in printRuntimeFunction() 562 RF.StartAddress); in printRuntimeFunctionRels()
|
| H A D | llvm-objdump.cpp | 208 static uint64_t StartAddress; variable 1321 if (Start >= End || End <= StartAddress) in disassembleObject() 1384 if (SectionAddr < StartAddress) in disassembleObject() 1385 Index = std::max<uint64_t>(Index, StartAddress - SectionAddr); in disassembleObject() 1591 if (getHidden(*RelCur) || SectionAddr + Offset < StartAddress) { in disassembleObject() 1758 if (Address < StartAddress || Address > StopAddress || getHidden(Reloc)) in printRelocations() 1954 if ((Address < StartAddress) || (Address > StopAddress)) in printSymbol() 2307 checkForInvalidStartStopAddress(O, StartAddress, StopAddress); in dumpObject() 2535 parseIntArg(InputArgs, OBJDUMP_start_address_EQ, StartAddress); in parseObjdumpOptions() 2663 if (StartAddress >= StopAddress) in main()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | IRDynamicChecks.cpp | 326 BuildPointerValidatorFunc(m_checker_function->StartAddress()); in InstrumentInstruction() 395 BuildObjectCheckerFunc(m_checker_function->StartAddress()); in InstrumentInstruction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DWARFLinker/ |
| H A D | DWARFStreamer.cpp | 325 if (Range.StartAddress == Range.EndAddress) in emitRangesEntries() 329 if (!(Range.StartAddress + OrigLowPc >= FuncRange.start() && in emitRangesEntries() 332 MS->emitIntValue(Range.StartAddress + PcOffset, AddressSize); in emitRangesEntries()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/ |
| H A D | DIContext.h | 43 Optional<uint64_t> StartAddress; member
|
| /freebsd-13.1/contrib/llvm-project/openmp/runtime/src/ |
| H A D | z_Windows_NT_util.cpp | 71 LPVOID StartAddress; member 82 KMP_BUILD_ASSERT(offsetof(SYSTEM_THREAD, StartAddress) == 28); 85 KMP_BUILD_ASSERT(offsetof(SYSTEM_THREAD, StartAddress) == 32);
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | Win64EHDumper.cpp | 208 formatSymbol(Ctx, Section, Offset + 0, RF.StartAddress)); in printRuntimeFunctionEntry()
|