Home
last modified time | relevance | path

Searched refs:StartAddr (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/llvm/unittests/DebugInfo/GSYM/
DGSYMTest.cpp90 const uint64_t StartAddr = 0x1000; in TEST() local
92 const uint64_t Size = EndAddr - StartAddr; in TEST()
94 FunctionInfo FI(StartAddr, Size, NameOffset); in TEST()
97 EXPECT_EQ(FI.startAddress(), StartAddr); in TEST()
103 FI.OptLineTable->push(LineEntry(StartAddr,FileIdx,Line)); in TEST()
136 FunctionInfo FISymtab(StartAddr, Size, NameOffset); in TEST()
137 FunctionInfo FIWithLines(StartAddr, Size, NameOffset); in TEST()
139 FIWithLines.OptLineTable->push(LineEntry(StartAddr,FileIdx,Line)); in TEST()
147 AddressRange(StartAddr, StartAddr + 0x10)); in TEST()
155 FIWithMoreLines.OptLineTable->push(LineEntry(StartAddr,FileIdx,Line+5)); in TEST()
[all …]
/external/llvm-project/llvm/examples/OrcV2Examples/LLJITWithObjectLinkingLayerPlugin/
DLLJITWithObjectLinkingLayerPlugin.cpp100 JITTargetAddress StartAddr = B->getAddress(); in printLinkGraph() local
108 if (CurAddr < StartAddr) in printLinkGraph()
111 dbgs() << formatv("{0:x-2}", Data[CurAddr - StartAddr]) << " "; in printLinkGraph()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/
DRange.cpp80 const uint64_t StartAddr = BaseAddr + AddrOffset; in decode() local
81 Start = StartAddr; in decode()
82 End = StartAddr + Size; in decode()
/external/llvm-project/llvm/lib/DebugInfo/GSYM/
DRange.cpp90 const uint64_t StartAddr = BaseAddr + AddrOffset; in decode() local
91 Start = StartAddr; in decode()
92 End = StartAddr + Size; in decode()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCAssembler.cpp966 static bool mayCrossBoundary(uint64_t StartAddr, uint64_t Size, in mayCrossBoundary() argument
968 uint64_t EndAddr = StartAddr + Size; in mayCrossBoundary()
969 return (StartAddr >> Log2(BoundaryAlignment)) != in mayCrossBoundary()
979 static bool isAgainstBoundary(uint64_t StartAddr, uint64_t Size, in isAgainstBoundary() argument
981 uint64_t EndAddr = StartAddr + Size; in isAgainstBoundary()
991 static bool needPadding(uint64_t StartAddr, uint64_t Size, in needPadding() argument
993 return mayCrossBoundary(StartAddr, Size, BoundaryAlignment) || in needPadding()
994 isAgainstBoundary(StartAddr, Size, BoundaryAlignment); in needPadding()
/external/llvm-project/llvm/lib/MC/
DMCAssembler.cpp1033 static bool mayCrossBoundary(uint64_t StartAddr, uint64_t Size, in mayCrossBoundary() argument
1035 uint64_t EndAddr = StartAddr + Size; in mayCrossBoundary()
1036 return (StartAddr >> Log2(BoundaryAlignment)) != in mayCrossBoundary()
1046 static bool isAgainstBoundary(uint64_t StartAddr, uint64_t Size, in isAgainstBoundary() argument
1048 uint64_t EndAddr = StartAddr + Size; in isAgainstBoundary()
1058 static bool needPadding(uint64_t StartAddr, uint64_t Size, in needPadding() argument
1060 return mayCrossBoundary(StartAddr, Size, BoundaryAlignment) || in needPadding()
1061 isAgainstBoundary(StartAddr, Size, BoundaryAlignment); in needPadding()
/external/llvm-project/llvm/tools/llvm-gsymutil/
Dllvm-gsymutil.cpp300 const uint64_t StartAddr = Sect.getAddress(); in handleObjectFile() local
301 TextRanges.insert(AddressRange(StartAddr, StartAddr + Size)); in handleObjectFile()
/external/llvm-project/llvm/test/tools/llvm-objcopy/ELF/
Dihex-reader.test192 ## 10. Bad data length for '05' (StartAddr) record.
/external/llvm-project/llvm/tools/llvm-objcopy/ELF/
DObject.cpp255 case IHexRecord::StartAddr: in checkRecord()
1349 case IHexRecord::StartAddr: in addDataSections()
2598 HexData = IHexRecord::getLine(IHexRecord::StartAddr, 0, Data); in writeEntryPointRecord()
DObject.h258 StartAddr = 5, enumerator