Home
last modified time | relevance | path

Searched refs:Offsets (Results 1 – 25 of 35) sorted by relevance

12

/NextBSD/contrib/llvm/tools/lli/
HDRemoteMemoryManager.cpp94 SmallVector<std::pair<Allocation, uint64_t>, 16> Offsets; in notifyObjectLoaded() local
109 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset)); in notifyObjectLoaded()
126 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset)); in notifyObjectLoaded()
138 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) { in notifyObjectLoaded()
139 uint64_t Addr = RemoteAddr + Offsets[i].second; in notifyObjectLoaded()
140 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first.MB.base()), Addr); in notifyObjectLoaded()
142 DEBUG(dbgs() << " Mapping local: " << Offsets[i].first.MB.base() in notifyObjectLoaded()
145 MappedSections[Addr] = Offsets[i].first; in notifyObjectLoaded()
/NextBSD/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/
HDR600MCCodeEmitter.cpp119 int64_t Offsets[3] = { in encodeInstruction() local
128 SrcSelect[ELEMENT_W] << 29 | Offsets[0] << 0 | Offsets[1] << 5 | in encodeInstruction()
129 Offsets[2] << 10; in encodeInstruction()
/NextBSD/contrib/llvm/lib/Target/Hexagon/
HDHexagonFrameLowering.h59 static const SpillSlot Offsets[] = { in getCalleeSavedSpillSlots() local
67 NumEntries = array_lengthof(Offsets); in getCalleeSavedSpillSlots()
68 return Offsets; in getCalleeSavedSpillSlots()
/NextBSD/contrib/llvm/lib/Object/
HDArchive.cpp382 const char *Offsets = Buf; in getMember() local
384 Offsets += sizeof(uint64_t); in getMember()
386 Offsets += sizeof(uint32_t); in getMember()
389 Offset = read32be(Offsets + SymbolIndex * 4); in getMember()
391 Offset = read64be(Offsets + SymbolIndex * 8); in getMember()
399 Offset = read32le(Offsets + SymbolIndex * 8 + 4); in getMember()
421 Offset = read32le(Offsets + OffsetIndex * 4); in getMember()
/NextBSD/contrib/llvm/lib/Support/
HDIntervalMap.cpp19 void Path::replaceRoot(void *Root, unsigned Size, IdxPair Offsets) { in replaceRoot() argument
21 path.front() = Entry(Root, Size, Offsets.first); in replaceRoot()
22 path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second)); in replaceRoot()
/NextBSD/contrib/llvm/include/llvm/Transforms/IPO/
HDLowerBitSets.h63 SmallVector<uint64_t, 16> Offsets; member
74 Offsets.push_back(Offset); in addOffset()
/NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/
HDScheduleDAGSDNodes.cpp213 SmallVector<int64_t, 4> Offsets; in ClusterNeighboringLoads() local
232 Offsets.push_back(Offset1); in ClusterNeighboringLoads()
234 Offsets.push_back(Offset2); in ClusterNeighboringLoads()
246 std::sort(Offsets.begin(), Offsets.end()); in ClusterNeighboringLoads()
251 int64_t BaseOff = Offsets[0]; in ClusterNeighboringLoads()
254 for (unsigned i = 1, e = Offsets.size(); i != e; ++i) { in ClusterNeighboringLoads()
255 int64_t Offset = Offsets[i]; in ClusterNeighboringLoads()
HDSelectionDAGBuilder.cpp1193 SmallVector<uint64_t, 4> Offsets; in visitRet() local
1194 ComputeValueVTs(TLI, DL, I.getOperand(0)->getType(), ValueVTs, &Offsets); in visitRet()
1201 DAG.getIntPtrConstant(Offsets[i], in visitRet()
2932 SmallVector<uint64_t, 4> Offsets; in visitLoad() local
2933 ComputeValueVTs(TLI, DAG.getDataLayout(), Ty, ValueVTs, &Offsets); in visitLoad()
2978 DAG.getConstant(Offsets[i], dl, PtrVT)); in visitLoad()
2980 A, MachinePointerInfo(SV, Offsets[i]), isVolatile, in visitLoad()
3009 SmallVector<uint64_t, 4> Offsets; in visitStore() local
3011 SrcV->getType(), ValueVTs, &Offsets); in visitStore()
3043 DAG.getConstant(Offsets[i], dl, PtrVT)); in visitStore()
[all …]
/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDSROA.cpp3642 auto &Offsets = SplitOffsetsMap[I]; in presplitLoadsAndStores() local
3643 assert(Offsets.Splits.empty() && in presplitLoadsAndStores()
3645 Offsets.S = &S; in presplitLoadsAndStores()
3646 Offsets.Splits.push_back(P.endOffset() - S.beginOffset()); in presplitLoadsAndStores()
3656 auto &Offsets = SplitOffsetsMapI->second; in presplitLoadsAndStores() local
3658 assert(Offsets.S == S && "Found a mismatched slice!"); in presplitLoadsAndStores()
3659 assert(!Offsets.Splits.empty() && in presplitLoadsAndStores()
3661 assert(Offsets.Splits.back() == in presplitLoadsAndStores()
3662 P.beginOffset() - Offsets.S->beginOffset() && in presplitLoadsAndStores()
3668 Offsets.Splits.push_back(P.endOffset() - Offsets.S->beginOffset()); in presplitLoadsAndStores()
[all …]
HDLoopStrengthReduce.cpp886 const SmallVectorImpl<int64_t> &Offsets,
978 const SmallVectorImpl<int64_t> &Offsets, in RateFormula() argument
1016 for (int64_t O : Offsets) { in RateFormula()
1209 SmallVector<int64_t, 8> Offsets; member in __anon548e3d030711::LSRUse
1342 for (int64_t O : Offsets) { in print()
2255 if (NewOffset != LU.Offsets.back()) in reconcileNewOffset()
2256 LU.Offsets.push_back(NewOffset); in reconcileNewOffset()
2295 if (LU.Offsets.empty() || Offset != LU.Offsets.back()) in getUse()
2296 LU.Offsets.push_back(Offset); in getUse()
3892 CostF.RateFormula(TTI, F, Regs, VisitedRegs, L, LU.Offsets, SE, DT, LU, in FilterOutUndesirableDedicatedRegisters()
[all …]
/NextBSD/contrib/llvm/lib/CodeGen/
HDAnalysis.cpp86 SmallVectorImpl<uint64_t> *Offsets, in ComputeValueVTs() argument
95 ComputeValueVTs(TLI, DL, *EI, ValueVTs, Offsets, in ComputeValueVTs()
104 ComputeValueVTs(TLI, DL, EltTy, ValueVTs, Offsets, in ComputeValueVTs()
113 if (Offsets) in ComputeValueVTs()
114 Offsets->push_back(StartingOffset); in ComputeValueVTs()
/NextBSD/contrib/llvm/lib/Support/Unix/
HDSignals.inc325 const char **Modules, intptr_t *Offsets,
328 Modules, Offsets, MainExecutableName};
334 const char **Modules, intptr_t *Offsets,
358 std::vector<intptr_t> Offsets(Depth, 0);
359 if (!findModulesAndOffsets(StackTrace, Depth, Modules.data(), Offsets.data(),
373 Input << Modules[i] << " " << (void*)Offsets[i] << "\n";
419 OS << format("(%s+%p)", Modules[i], (void *)Offsets[i]);
/NextBSD/contrib/llvm/include/llvm/CodeGen/
HDAnalysis.h69 SmallVectorImpl<uint64_t> *Offsets = nullptr,
/NextBSD/contrib/llvm/lib/Target/NVPTX/
HDNVPTXISelLowering.cpp85 SmallVectorImpl<uint64_t> *Offsets = nullptr, in ComputePTXValueVTs() argument
97 if (Offsets) in ComputePTXValueVTs()
98 Offsets->push_back(Off+j*VT.getVectorElementType().getStoreSize()); in ComputePTXValueVTs()
102 if (Offsets) in ComputePTXValueVTs()
103 Offsets->push_back(Off); in ComputePTXValueVTs()
1096 SmallVector<uint64_t, 16> Offsets; in LowerCall() local
1097 ComputePTXValueVTs(*this, DAG.getDataLayout(), Ty, vtparts, &Offsets, in LowerCall()
1114 unsigned ArgAlign = GreatestCommonDivisor64(align, Offsets[j]); in LowerCall()
1124 DAG.getConstant(Offsets[j], dl, MVT::i32), in LowerCall()
1320 SmallVector<uint64_t, 16> Offsets; in LowerCall() local
[all …]
/NextBSD/contrib/llvm/lib/MC/
HDELFObjectWriter.cpp1174 const std::pair<uint64_t, uint64_t> &Offsets = in writeSectionHeader() local
1180 Size = Offsets.second - Offsets.first; in writeSectionHeader()
1182 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size, in writeSectionHeader()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDVTableBuilder.cpp451 SmallVector<MethodAndOffsetPairTy, 16> Offsets; member
469 bool empty() const { return Offsets.empty(); } in empty()
518 for (unsigned I = 0, E = Offsets.size(); I != E; ++I) { in AddVCallOffset()
519 if (MethodsCanShareVCallOffset(Offsets[I].first, MD)) in AddVCallOffset()
524 Offsets.push_back(MethodAndOffsetPairTy(MD, OffsetOffset)); in AddVCallOffset()
530 for (unsigned I = 0, E = Offsets.size(); I != E; ++I) { in getVCallOffsetOffset()
531 if (MethodsCanShareVCallOffset(Offsets[I].first, MD)) in getVCallOffsetOffset()
532 return Offsets[I].second; in getVCallOffsetOffset()
/NextBSD/contrib/llvm/tools/clang/lib/Parse/
HDParseStmtAsm.cpp50 ArrayRef<Token> Toks, ArrayRef<unsigned> Offsets) in ClangAsmParserCallback() argument
52 AsmTokOffsets(Offsets) { in ClangAsmParserCallback()
/NextBSD/contrib/llvm/lib/Transforms/IPO/
HDLowerBitSets.cpp103 for (uint64_t &Offset : Offsets) { in build()
118 for (uint64_t Offset : Offsets) { in build()
/NextBSD/contrib/llvm/lib/Target/AMDGPU/
HDSIInstrInfo.h378 enum Offsets { enum
/NextBSD/contrib/ntp/libparse/
HDREADME48 that delivers time stamps and stati. Offsets and sychron-
/NextBSD/contrib/llvm/lib/Target/PowerPC/
HDPPCFrameLowering.cpp116 static const SpillSlot Offsets[] = { in getCalleeSavedSpillSlots() local
243 NumEntries = array_lengthof(Offsets); in getCalleeSavedSpillSlots()
245 return Offsets; in getCalleeSavedSpillSlots()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDMicrosoftCXXABI.cpp1946 SmallVector<llvm::Constant *, 4> Offsets(1 + ReusingBase->getNumVBases(), in emitVBTableDefinition() local
1951 Offsets[0] = llvm::ConstantInt::get(CGM.IntTy, -VBPtrOffset.getQuantity()); in emitVBTableDefinition()
1967 assert(Offsets[VBIndex] == nullptr && "The same vbindex seen twice?"); in emitVBTableDefinition()
1968 Offsets[VBIndex] = llvm::ConstantInt::get(CGM.IntTy, Offset.getQuantity()); in emitVBTableDefinition()
1971 assert(Offsets.size() == in emitVBTableDefinition()
1975 llvm::ArrayType::get(CGM.IntTy, Offsets.size()); in emitVBTableDefinition()
1976 llvm::Constant *Init = llvm::ConstantArray::get(VBTableType, Offsets); in emitVBTableDefinition()
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderDecl.cpp3328 std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC); in ReadDeclRecord() local
3329 if (Offsets.first || Offsets.second) { in ReadDeclRecord()
3330 if (Offsets.first != 0) in ReadDeclRecord()
3332 if (Offsets.second != 0) in ReadDeclRecord()
3334 if (ReadDeclContextStorage(*Loc.F, DeclsCursor, Offsets, in ReadDeclRecord()
/NextBSD/sys/dev/aic7xxx/
HDaic7xxx.reg1254 /* ---------------------- Scratch RAM Offsets ------------------------- */
1588 /* Offsets into the SCBID array where different data is stored */
/NextBSD/contrib/llvm/tools/clang/include/clang/Serialization/
HDASTReader.h530 const std::pair<uint64_t, uint64_t> &Offsets,

12