| /freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugRangeList.cpp | 72 llvm::Optional<SectionedAddress> BaseAddr) const { in getAbsoluteRanges() 76 BaseAddr = {RLE.EndAddress, RLE.SectionIndex}; in getAbsoluteRanges() 87 if (BaseAddr) { in getAbsoluteRanges() 88 E.LowPC += BaseAddr->Address; in getAbsoluteRanges() 89 E.HighPC += BaseAddr->Address; in getAbsoluteRanges() 91 E.SectionIndex = BaseAddr->SectionIndex; in getAbsoluteRanges()
|
| H A D | DWARFDebugRnglists.cpp | 117 DWARFDebugRnglist::getAbsoluteRanges(llvm::Optional<SectionedAddress> BaseAddr, in getAbsoluteRanges() argument 124 BaseAddr = U.getAddrOffsetSectionItem(RLE.Value0); in getAbsoluteRanges() 125 if (!BaseAddr) in getAbsoluteRanges() 126 BaseAddr = {RLE.Value0, -1ULL}; in getAbsoluteRanges() 130 BaseAddr = {RLE.Value0, RLE.SectionIndex}; in getAbsoluteRanges() 136 if (BaseAddr && E.SectionIndex == -1ULL) in getAbsoluteRanges() 137 E.SectionIndex = BaseAddr->SectionIndex; in getAbsoluteRanges() 143 if (BaseAddr) { in getAbsoluteRanges() 144 E.LowPC += BaseAddr->Address; in getAbsoluteRanges() 145 E.HighPC += BaseAddr->Address; in getAbsoluteRanges()
|
| H A D | DWARFDebugLoc.cpp | 224 void DWARFDebugLoclists::LocationList::dump(raw_ostream &OS, uint64_t BaseAddr, in dump() argument 247 AddressSize * 2, BaseAddr + E.Value0, AddressSize * 2, in dump() 248 AddressSize * 2, BaseAddr + E.Value1); in dump() 251 BaseAddr = E.Value0; in dump() 261 void DWARFDebugLoclists::dump(raw_ostream &OS, uint64_t BaseAddr, in dump() argument 266 L.dump(OS, BaseAddr, IsLittleEndian, AddressSize, MRI, /*Indent=*/12); in dump()
|
| H A D | DWARFDie.cpp | 103 uint64_t BaseAddr = 0; in dumpLocation() local 105 BaseAddr = BA->Address; in dumpLocation() 106 LL->dump(OS, Ctx.isLittleEndian(), Obj.getAddressSize(), MRI, BaseAddr, in dumpLocation() 128 uint64_t BaseAddr = 0; in dumpLocation() local 130 BaseAddr = BA->Address; in dumpLocation() 133 LL->dump(OS, BaseAddr, Ctx.isLittleEndian(), Obj.getAddressSize(), MRI, in dumpLocation()
|
| H A D | DWARFUnit.cpp | 335 BaseAddr.reset(); in clear() 749 if (BaseAddr) in getBaseAddress() 750 return BaseAddr; in getBaseAddress() 754 BaseAddr = toSectionedAddress(PC); in getBaseAddress() 755 return BaseAddr; in getBaseAddress()
|
| /freebsd-12.1/sys/dev/hptmv/ |
| H A D | access601.h | 35 void HPTLIBAPI BeepOn(MV_BUS_ADDR_T BaseAddr); 36 void HPTLIBAPI BeepOff(MV_BUS_ADDR_T BaseAddr); 37 UCHAR HPTLIBAPI check_protect_circuit(MV_BUS_ADDR_T BaseAddr);
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugLoc.h | 88 void dump(raw_ostream &OS, uint64_t BaseAddr, bool IsLittleEndian, 104 void dump(raw_ostream &OS, uint64_t BaseAddr, const MCRegisterInfo *RegInfo,
|
| H A D | DWARFDebugRangeList.h | 80 getAbsoluteRanges(llvm::Optional<SectionedAddress> BaseAddr) const;
|
| H A D | DWARFDebugRnglists.h | 51 getAbsoluteRanges(llvm::Optional<SectionedAddress> BaseAddr,
|
| H A D | DWARFUnit.h | 221 llvm::Optional<SectionedAddress> BaseAddr; variable
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFDebugRanges.cpp | 219 dw_addr_t BaseAddr = cu->GetBaseAddress(); in FindRanges() local 226 BaseAddr = E.value0; in FindRanges() 233 DWARFRangeList::Entry(BaseAddr + E.value0, E.value1 - E.value0)); in FindRanges() 236 BaseAddr = ReadAddressFromDebugAddrSection(cu, E.value0); in FindRanges()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ProfileData/ |
| H A D | InstrProf.h | 453 inline Error create(StringRef D, uint64_t BaseAddr); 524 Error InstrProfSymtab::create(StringRef D, uint64_t BaseAddr) { in create() argument 526 Address = BaseAddr; in create()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | LinePrinter.h | 54 void formatBinary(StringRef Label, ArrayRef<uint8_t> Data, uint64_t BaseAddr,
|
| /freebsd-12.1/contrib/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 1955 uint64_t BaseAddr = Section.getAddress(); in printSectionContents() local 1964 BaseAddr, BaseAddr + Size); in printSectionContents() 1972 outs() << format(" %04" PRIx64 " ", BaseAddr + Addr); in printSectionContents()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGClass.cpp | 375 CodeGenFunction::GetAddressOfDerivedClass(Address BaseAddr, in GetAddressOfDerivedClass() argument 391 return Builder.CreateBitCast(BaseAddr, DerivedPtrTy); in GetAddressOfDerivedClass() 403 llvm::Value *IsNull = Builder.CreateIsNull(BaseAddr.getPointer()); in GetAddressOfDerivedClass() 409 llvm::Value *Value = Builder.CreateBitCast(BaseAddr.getPointer(), Int8PtrTy); in GetAddressOfDerivedClass()
|
| H A D | CGExpr.cpp | 4807 Address BaseAddr = Address::invalid(); in EmitPointerToDataMemberBinaryExpr() local 4809 BaseAddr = EmitPointerWithAlignment(E->getLHS()); in EmitPointerToDataMemberBinaryExpr() 4811 BaseAddr = EmitLValue(E->getLHS()).getAddress(); in EmitPointerToDataMemberBinaryExpr() 4822 EmitCXXMemberDataPointerAddress(E, BaseAddr, OffsetV, MPT, &BaseInfo, in EmitPointerToDataMemberBinaryExpr()
|
| H A D | TargetInfo.cpp | 5391 Address BaseAddr(CGF.Builder.CreateInBoundsGEP(reg_top, reg_offs), in EmitAAPCSVAArg() local 5426 CGF.Builder.CreateConstInBoundsByteGEP(BaseAddr, BaseOffset); in EmitAAPCSVAArg() 5441 CharUnits SlotSize = BaseAddr.getAlignment(); in EmitAAPCSVAArg() 5446 BaseAddr = CGF.Builder.CreateConstInBoundsByteGEP(BaseAddr, Offset); in EmitAAPCSVAArg() 5449 RegAddr = CGF.Builder.CreateElementBitCast(BaseAddr, MemTy); in EmitAAPCSVAArg()
|
| H A D | CGCall.cpp | 1008 Address BaseAddr, in forConstantArrayExpansion() argument 1012 BaseAddr.getAlignment().alignmentOfArrayElement(EltSize); in forConstantArrayExpansion() 1016 CGF.Builder.CreateConstGEP2_32(nullptr, BaseAddr.getPointer(), 0, i); in forConstantArrayExpansion()
|
| H A D | CGStmtOpenMP.cpp | 1102 Address BaseAddr = RedCG.adjustPrivateAddress( in EmitOMPReductionClauseInit() local 1105 RedCG.getBaseDecl(Count), [BaseAddr]() { return BaseAddr; }); in EmitOMPReductionClauseInit()
|
| H A D | CGOpenMPRuntime.cpp | 5061 enum RTLDependInfoFieldsTy { BaseAddr, Len, Flags }; in emitTaskCall() enumerator 5108 Base, *std::next(KmpDependInfoRD->field_begin(), BaseAddr)); in emitTaskCall()
|
| /freebsd-12.1/contrib/llvm/tools/lld/ELF/ |
| H A D | SyntheticSections.cpp | 2615 uint64_t BaseAddr = E.Section->getVA(0); in writeTo() local 2616 write64le(Buf, BaseAddr + E.LowAddress); in writeTo() 2617 write64le(Buf + 8, BaseAddr + E.HighAddress); in writeTo()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 8374 Value *BaseAddr = LI->getPointerOperand(); in lowerInterleavedLoad() local 8385 BaseAddr = Builder.CreateBitCast( in lowerInterleavedLoad() 8386 BaseAddr, VecTy->getVectorElementType()->getPointerTo( in lowerInterleavedLoad() 8408 BaseAddr = Builder.CreateConstGEP1_32( in lowerInterleavedLoad() 8409 BaseAddr, VecTy->getVectorNumElements() * Factor); in lowerInterleavedLoad() 8412 LdNFunc, Builder.CreateBitCast(BaseAddr, PtrTy), "ldN"); in lowerInterleavedLoad() 8513 Value *BaseAddr = SI->getPointerOperand(); in lowerInterleavedStore() local 8524 BaseAddr = Builder.CreateBitCast( in lowerInterleavedStore() 8525 BaseAddr, SubVecTy->getVectorElementType()->getPointerTo( in lowerInterleavedStore() 8571 BaseAddr = Builder.CreateConstGEP1_32(BaseAddr, LaneLen * Factor); in lowerInterleavedStore() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 14796 Value *BaseAddr = LI->getPointerOperand(); in lowerInterleavedLoad() local 14807 BaseAddr = Builder.CreateBitCast( in lowerInterleavedLoad() 14808 BaseAddr, VecTy->getVectorElementType()->getPointerTo( in lowerInterleavedLoad() 14831 BaseAddr = Builder.CreateConstGEP1_32( in lowerInterleavedLoad() 14832 BaseAddr, VecTy->getVectorNumElements() * Factor); in lowerInterleavedLoad() 14835 Ops.push_back(Builder.CreateBitCast(BaseAddr, Int8Ptr)); in lowerInterleavedLoad() 14941 Value *BaseAddr = SI->getPointerOperand(); in lowerInterleavedStore() local 14952 BaseAddr = Builder.CreateBitCast( in lowerInterleavedStore() 14953 BaseAddr, SubVecTy->getVectorElementType()->getPointerTo( in lowerInterleavedStore() 14971 BaseAddr = Builder.CreateConstGEP1_32(BaseAddr, LaneLen * Factor); in lowerInterleavedStore() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 13461 SDValue BaseAddr = OldBaseAddr; in loadSlice() local 13467 EVT ArithType = BaseAddr.getValueType(); in loadSlice() 13469 BaseAddr = DAG->getNode(ISD::ADD, DL, ArithType, BaseAddr, in loadSlice() 13478 DAG->getLoad(SliceType, SDLoc(Origin), Origin->getChain(), BaseAddr, in loadSlice() 17048 SDValue BaseAddr = Ld->getOperand(1); in narrowExtractedVectorLoad() local 17052 SDValue NewAddr = DAG.getMemBasePlusOffset(BaseAddr, Offset, DL); in narrowExtractedVectorLoad()
|
| /freebsd-12.1/contrib/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 11771 SDValue BaseAddr = Ld->getOperand(1); in lowerVectorShuffleAsBroadcast() local 11774 SDValue NewAddr = DAG.getMemBasePlusOffset(BaseAddr, Offset, DL); in lowerVectorShuffleAsBroadcast()
|