/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
D | Range.cpp | 70 void AddressRange::encode(FileWriter &O, uint64_t BaseAddr) const { in encode() 71 assert(Start >= BaseAddr); in encode() 72 O.writeULEB(Start - BaseAddr); in encode() 76 void AddressRange::decode(DataExtractor &Data, uint64_t BaseAddr, in decode() argument 80 const uint64_t StartAddr = BaseAddr + AddrOffset; in decode() 85 void AddressRanges::encode(FileWriter &O, uint64_t BaseAddr) const { in encode() 90 Range.encode(O, BaseAddr); in encode() 93 void AddressRanges::decode(DataExtractor &Data, uint64_t BaseAddr, in decode() argument 101 Range.decode(Data, BaseAddr, Offset); in decode()
|
D | InlineInfo.cpp | 109 uint64_t BaseAddr, uint64_t Addr, SourceLocations &SrcLocs, in lookup() argument 112 Inline.Ranges.decode(Data, BaseAddr, Offset); in lookup() 156 uint64_t BaseAddr, uint64_t Addr, in lookup() argument 161 ::lookup(GR, Data, Offset, BaseAddr, Addr, SrcLocs, Err); in lookup() 176 uint64_t BaseAddr) { in decode() argument 181 Inline.Ranges.decode(Data, BaseAddr, Offset); in decode() 219 uint64_t BaseAddr) { in decode() argument 221 return ::decode(Data, Offset, BaseAddr); in decode() 224 llvm::Error InlineInfo::encode(FileWriter &O, uint64_t BaseAddr) const { in encode() 231 Ranges.encode(O, BaseAddr); in encode()
|
D | LineTable.cpp | 54 static llvm::Error parse(DataExtractor &Data, uint64_t BaseAddr, in parse() argument 70 LineEntry Row(BaseAddr, 1, FirstLine); in parse() 122 llvm::Error LineTable::encode(FileWriter &Out, uint64_t BaseAddr) const { in encode() 193 LineEntry Prev(BaseAddr, 1, Lines.front().Line); in encode() 202 if (Curr.Addr < BaseAddr) in encode() 206 PRIx64, Curr.Addr, BaseAddr); in encode() 252 uint64_t BaseAddr) { in decode() argument 254 llvm::Error Err = parse(Data, BaseAddr, [&](const LineEntry &Row) -> bool { in decode() 266 Expected<LineEntry> LineTable::lookup(DataExtractor &Data, uint64_t BaseAddr, uint64_t Addr) { in lookup() argument 268 llvm::Error Err = parse(Data, BaseAddr, in lookup()
|
D | FunctionInfo.cpp | 34 uint64_t BaseAddr) { in decode() argument 36 FI.Range.Start = BaseAddr; in decode() 73 if (Expected<LineTable> LT = LineTable::decode(InfoData, BaseAddr)) in decode() 80 if (Expected<InlineInfo> II = InlineInfo::decode(InfoData, BaseAddr)) in decode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugRnglists.cpp | 116 llvm::Optional<object::SectionedAddress> BaseAddr, DWARFUnit &U) const { in getAbsoluteRanges() argument 117 return getAbsoluteRanges(BaseAddr, [&](uint32_t Index) { in getAbsoluteRanges() 123 Optional<object::SectionedAddress> BaseAddr, in getAbsoluteRanges() argument 131 BaseAddr = LookupPooledAddress(RLE.Value0); in getAbsoluteRanges() 132 if (!BaseAddr) in getAbsoluteRanges() 133 BaseAddr = {RLE.Value0, -1ULL}; in getAbsoluteRanges() 137 BaseAddr = {RLE.Value0, RLE.SectionIndex}; in getAbsoluteRanges() 143 if (BaseAddr && E.SectionIndex == -1ULL) in getAbsoluteRanges() 144 E.SectionIndex = BaseAddr->SectionIndex; in getAbsoluteRanges() 150 if (BaseAddr) { in getAbsoluteRanges() [all …]
|
D | DWARFDebugRangeList.cpp | 71 llvm::Optional<object::SectionedAddress> BaseAddr) const { in getAbsoluteRanges() 75 BaseAddr = {RLE.EndAddress, RLE.SectionIndex}; in getAbsoluteRanges() 86 if (BaseAddr) { in getAbsoluteRanges() 87 E.LowPC += BaseAddr->Address; in getAbsoluteRanges() 88 E.HighPC += BaseAddr->Address; in getAbsoluteRanges() 90 E.SectionIndex = BaseAddr->SectionIndex; in getAbsoluteRanges()
|
D | DWARFDebugLoc.cpp | 122 Optional<SectionedAddress> BaseAddr, in dumpLocationList() argument 128 BaseAddr, [U](uint32_t Index) -> Optional<SectionedAddress> { in dumpLocationList() 173 uint64_t Offset, Optional<SectionedAddress> BaseAddr, in visitAbsoluteLocationList() argument 176 DWARFLocationInterpreter Interp(BaseAddr, std::move(LookupAddr)); in visitAbsoluteLocationList() 190 auto BaseAddr = None; in dump() local 193 dumpLocationList(&*DumpOffset, OS, BaseAddr, MRI, Obj, nullptr, DumpOpts, in dump() 203 CanContinue = dumpLocationList(&Offset, OS, BaseAddr, MRI, Obj, nullptr, in dump()
|
D | DWARFUnit.cpp | 368 BaseAddr.reset(); in clear() 857 if (BaseAddr) in getBaseAddress() 858 return BaseAddr; in getBaseAddress() 862 BaseAddr = toSectionedAddress(PC); in getBaseAddress() 863 return BaseAddr; in getBaseAddress()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/GSYM/ |
D | Range.h | 61 void decode(DataExtractor &Data, uint64_t BaseAddr, uint64_t &Offset); 62 void encode(FileWriter &O, uint64_t BaseAddr) const; 108 void decode(DataExtractor &Data, uint64_t BaseAddr, uint64_t &Offset); 109 void encode(FileWriter &O, uint64_t BaseAddr) const;
|
D | InlineInfo.h | 123 uint64_t BaseAddr, uint64_t Addr, 153 uint64_t BaseAddr); 168 llvm::Error encode(FileWriter &O, uint64_t BaseAddr) const;
|
D | LineTable.h | 139 static Expected<LineEntry> lookup(DataExtractor &Data, uint64_t BaseAddr, 155 uint64_t BaseAddr); 166 llvm::Error encode(FileWriter &O, uint64_t BaseAddr) const;
|
D | FunctionInfo.h | 134 uint64_t BaseAddr);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugRnglists.h | 50 getAbsoluteRanges(Optional<object::SectionedAddress> BaseAddr, 56 getAbsoluteRanges(llvm::Optional<object::SectionedAddress> BaseAddr,
|
D | DWARFDebugLoc.h | 65 Optional<object::SectionedAddress> BaseAddr, 71 uint64_t Offset, Optional<object::SectionedAddress> BaseAddr,
|
D | DWARFDebugRangeList.h | 78 getAbsoluteRanges(llvm::Optional<object::SectionedAddress> BaseAddr) const;
|
D | DWARFUnit.h | 227 llvm::Optional<object::SectionedAddress> BaseAddr; variable
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
D | InstrProf.h | 448 inline Error create(StringRef D, uint64_t BaseAddr); 519 Error InstrProfSymtab::create(StringRef D, uint64_t BaseAddr) { in create() argument 521 Address = BaseAddr; in create()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsInstructionSelector.cpp | 411 MachineOperand BaseAddr = I.getOperand(1); in select() local 426 BaseAddr = Addr->getOperand(1); in select() 434 .add(BaseAddr) in select()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyISelLowering.cpp | 1132 SDValue BaseAddr = in LowerGlobalAddress() local 1141 return DAG.getNode(ISD::ADD, DL, VT, BaseAddr, SymAddr); in LowerGlobalAddress()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 17068 Value *BaseAddr = LI->getPointerOperand(); in lowerInterleavedLoad() local 17079 BaseAddr = Builder.CreateBitCast( in lowerInterleavedLoad() 17080 BaseAddr, VecTy->getVectorElementType()->getPointerTo( in lowerInterleavedLoad() 17086 auto createLoadIntrinsic = [&](Value *BaseAddr) { in lowerInterleavedLoad() argument 17097 Ops.push_back(Builder.CreateBitCast(BaseAddr, Int8Ptr)); in lowerInterleavedLoad() 17113 Ops.push_back(Builder.CreateBitCast(BaseAddr, VecEltTy)); in lowerInterleavedLoad() 17127 BaseAddr = in lowerInterleavedLoad() 17128 Builder.CreateConstGEP1_32(VecTy->getVectorElementType(), BaseAddr, in lowerInterleavedLoad() 17131 CallInst *VldN = createLoadIntrinsic(BaseAddr); in lowerInterleavedLoad() 17234 Value *BaseAddr = SI->getPointerOperand(); in lowerInterleavedStore() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.cpp | 9161 Value *BaseAddr = LI->getPointerOperand(); in lowerInterleavedLoad() local 9172 BaseAddr = Builder.CreateBitCast( in lowerInterleavedLoad() 9173 BaseAddr, VecTy->getVectorElementType()->getPointerTo( in lowerInterleavedLoad() 9195 BaseAddr = in lowerInterleavedLoad() 9196 Builder.CreateConstGEP1_32(VecTy->getVectorElementType(), BaseAddr, in lowerInterleavedLoad() 9200 LdNFunc, Builder.CreateBitCast(BaseAddr, PtrTy), "ldN"); in lowerInterleavedLoad() 9301 Value *BaseAddr = SI->getPointerOperand(); in lowerInterleavedStore() local 9312 BaseAddr = Builder.CreateBitCast( in lowerInterleavedStore() 9313 BaseAddr, SubVecTy->getVectorElementType()->getPointerTo( in lowerInterleavedStore() 9359 BaseAddr = Builder.CreateConstGEP1_32(SubVecTy->getVectorElementType(), in lowerInterleavedStore() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 14642 SDValue BaseAddr = OldBaseAddr; in loadSlice() local 14648 EVT ArithType = BaseAddr.getValueType(); in loadSlice() 14650 BaseAddr = DAG->getNode(ISD::ADD, DL, ArithType, BaseAddr, in loadSlice() 14659 DAG->getLoad(SliceType, SDLoc(Origin), Origin->getChain(), BaseAddr, in loadSlice() 18472 SDValue BaseAddr = Ld->getOperand(1); in narrowExtractedVectorLoad() local 18476 SDValue NewAddr = DAG.getMemBasePlusOffset(BaseAddr, Offset, DL); in narrowExtractedVectorLoad()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 12803 SDValue BaseAddr = Ld->getOperand(1); in lowerShuffleAsBroadcast() local 12807 SDValue NewAddr = DAG.getMemBasePlusOffset(BaseAddr, Offset, DL); in lowerShuffleAsBroadcast()
|