Home
last modified time | relevance | path

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

/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugRangeList.h30 uint64_t StartAddress; member
41 return (StartAddress == 0) && (EndAddress == 0); in isEndOfListEntry()
52 return StartAddress == -1U; in isBaseAddressSelectionEntry()
54 return StartAddress == -1ULL; in isBaseAddressSelectionEntry()
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp25 void RuntimeDyldImpl::extractFunction(StringRef Name, uint8_t *StartAddress, in extractFunction() argument
28 uintptr_t Size = EndAddress - StartAddress + 1; in extractFunction()
31 assert(Size >= (uint64_t)(EndAddress - StartAddress + 1) && in extractFunction()
34 memcpy(Mem, StartAddress, Size); in extractFunction()
DRuntimeDyldImpl.h65 void extractFunction(StringRef Name, uint8_t *StartAddress,
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugRangeList.cpp33 entry.StartAddress = data.getAddress(offset_ptr); in extract()
52 OS << format(format_str, Offset, RLE.StartAddress, RLE.EndAddress); in dump()
64 Res.push_back(std::make_pair(BaseAddress + RLE.StartAddress, in getAbsoluteRanges()
/external/swiftshader/third_party/LLVM/lib/MC/
DMachObjectWriter.cpp531 uint64_t StartAddress = 0; in computeSectionAddresses() local
535 StartAddress = RoundUpToAlignment(StartAddress, SD->getAlignment()); in computeSectionAddresses()
536 SectionAddress[SD] = StartAddress; in computeSectionAddresses()
537 StartAddress += Layout.getSectionAddressSize(SD); in computeSectionAddresses()
542 StartAddress += getPaddingSize(SD, Layout); in computeSectionAddresses()
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
DIntelJITEventListener.cpp65 static LineNumberInfo DILineInfoToIntelJITFormat(uintptr_t StartAddress, in DILineInfoToIntelJITFormat() argument
70 Result.Offset = Address - StartAddress; in DILineInfoToIntelJITFormat()
/external/llvm/lib/MC/
DMachObjectWriter.cpp611 uint64_t StartAddress = 0; in computeSectionAddresses() local
613 StartAddress = alignTo(StartAddress, Sec->getAlignment()); in computeSectionAddresses()
614 SectionAddress[Sec] = StartAddress; in computeSectionAddresses()
615 StartAddress += Layout.getSectionAddressSize(Sec); in computeSectionAddresses()
620 StartAddress += getPaddingSize(Sec, Layout); in computeSectionAddresses()
/external/llvm/include/llvm/Support/
DWin64EH.h70 support::ulittle32_t StartAddress; member
/external/llvm/tools/llvm-objdump/
DCOFFDump.cpp519 if (!RF.StartAddress) in printRuntimeFunction()
523 static_cast<uint32_t>(RF.StartAddress)) in printRuntimeFunction()
549 RF.StartAddress); in printRuntimeFunctionRels()
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClBitstreamReader.h271 NaClBitstreamReader(size_t StartAddress, const unsigned char *Start, in NaClBitstreamReader() argument
275 ErrorOffset(StartAddress) { BlockInfoRecords->freeze(); } in NaClBitstreamReader()
/external/llvm/tools/llvm-readobj/
DWin64EHDumper.cpp170 formatSymbol(Ctx, Section, Offset + 0, RF.StartAddress)); in printRuntimeFunctionEntry()
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp732 if (Range.StartAddress == Range.EndAddress) in emitRangesEntries()
736 if (!(Range.StartAddress + OrigLowPc >= FuncRange.start() && in emitRangesEntries()
739 MS->EmitIntValue(Range.StartAddress + PcOffset, AddressSize); in emitRangesEntries()
2903 First.StartAddress + OrigLowPc < CurrRange.start() || in patchRangesForUnit()
2904 First.StartAddress + OrigLowPc >= CurrRange.stop()) { in patchRangesForUnit()
2905 CurrRange = FunctionRanges.find(First.StartAddress + OrigLowPc); in patchRangesForUnit()
2907 CurrRange.start() > First.StartAddress + OrigLowPc) { in patchRangesForUnit()
/external/libchrome/sandbox/win/src/
Dnt_internals.h387 IN LPTHREAD_START_ROUTINE StartAddress,
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp11572 int64_t StartAddress = StoreNodes[0].OffsetFromBase; in MergeConsecutiveStores() local
11579 if (CurrAddress - StartAddress != (ElementSizeBytes * i)) in MergeConsecutiveStores()
11769 StartAddress = LoadNodes[0].OffsetFromBase; in MergeConsecutiveStores()
11777 if (CurrAddress - StartAddress != (ElementSizeBytes * i)) in MergeConsecutiveStores()