Searched defs:Offsets (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/Target/PowerPC/
H A DPPCFrameLowering.h132 static const SpillSlot Offsets[] = { local
312 NumEntries = array_lengthof(Offsets);
314 return Offsets;
/external/llvm/lib/Support/
H A DIntervalMap.cpp19 void Path::replaceRoot(void *Root, unsigned Size, IdxPair Offsets) { argument
21 path.front() = Entry(Root, Size, Offsets.first);
22 path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second));
/external/llvm/lib/CodeGen/
H A DAnalysis.cpp73 /// If Offsets is non-null, it points to a vector to be filled in
78 SmallVectorImpl<uint64_t> *Offsets,
87 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets,
96 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets,
105 if (Offsets)
106 Offsets->push_back(StartingOffset);
76 ComputeValueVTs(const TargetLowering &TLI, Type *Ty, SmallVectorImpl<EVT> &ValueVTs, SmallVectorImpl<uint64_t> *Offsets, uint64_t StartingOffset) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp218 SmallVector<int64_t, 4> Offsets; local
234 Offsets.push_back(Offset1);
236 Offsets.push_back(Offset2);
246 std::sort(Offsets.begin(), Offsets.end());
251 int64_t BaseOff = Offsets[0];
254 for (unsigned i = 1, e = Offsets.size(); i != e; ++i) {
255 int64_t Offset = Offsets[i];
H A DSelectionDAGBuilder.cpp1178 SmallVector<uint64_t, 4> Offsets; local
1179 ComputeValueVTs(TLI, I.getOperand(0)->getType(), ValueVTs, &Offsets);
1186 DAG.getIntPtrConstant(Offsets[i]));
3250 SmallVector<uint64_t, 4> Offsets; local
3251 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
3292 DAG.getConstant(Offsets[i], PtrVT));
3294 A, MachinePointerInfo(SV, Offsets[i]), isVolatile,
3324 SmallVector<uint64_t, 4> Offsets; local
3325 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
3355 DAG.getConstant(Offsets[
5386 SmallVector<uint64_t, 4> Offsets; local
[all...]
/external/llvm/tools/lli/
H A Dlli.cpp393 SmallVector<std::pair<const void*, uint64_t>, 16> Offsets; local
405 Offsets.push_back(std::pair<const void*,uint64_t>(I->first.base(), CurOffset));
411 unsigned FirstDataIndex = Offsets.size();
422 Offsets.push_back(std::pair<const void*,uint64_t>(I->first.base(), CurOffset));
433 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) {
434 uint64_t Addr = RemoteAddr + Offsets[i].second;
435 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first), Addr);
437 DEBUG(dbgs() << " Mapping local: " << Offsets[i].first
442 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) {
443 uint64_t Addr = RemoteAddr + Offsets[
[all...]
/external/clang/lib/AST/
H A DVTableBuilder.cpp445 /// Offsets - Keeps track of methods and their offsets.
447 SmallVector<MethodAndOffsetPairTy, 16> Offsets; member in struct:__anon3534::VCallOffsetMap
465 bool empty() const { return Offsets.empty(); }
514 for (unsigned I = 0, E = Offsets.size(); I != E; ++I) {
515 if (MethodsCanShareVCallOffset(Offsets[I].first, MD))
520 Offsets.push_back(MethodAndOffsetPairTy(MD, OffsetOffset));
526 for (unsigned I = 0, E = Offsets.size(); I != E; ++I) {
527 if (MethodsCanShareVCallOffset(Offsets[I].first, MD))
528 return Offsets[I].second;
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp2099 std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC); local
2100 if (Offsets.first || Offsets.second) {
2101 if (Offsets.first != 0)
2103 if (Offsets.second != 0)
2105 if (ReadDeclContextStorage(*Loc.F, DeclsCursor, Offsets,
H A DASTReader.cpp727 const std::pair<uint64_t, uint64_t> &Offsets,
731 if (Offsets.first != 0) {
732 Cursor.JumpToBit(Offsets.first);
749 if (Offsets.second != 0) {
750 Cursor.JumpToBit(Offsets.second);
725 ReadDeclContextStorage(ModuleFile &M, llvm::BitstreamCursor &Cursor, const std::pair<uint64_t, uint64_t> &Offsets, DeclContextInfo &Info) argument
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp806 const SmallVectorImpl<int64_t> &Offsets,
896 const SmallVectorImpl<int64_t> &Offsets,
927 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
928 E = Offsets.end(); I != E; ++I) {
1128 SmallVector<int64_t, 8> Offsets; member in class:__anon9107::LSRUse
1247 OS << ", Offsets={";
1248 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1249 E = Offsets.end(); I != E; ++I) {
2118 if (NewOffset != LU.Offsets.back())
2119 LU.Offsets
892 RateFormula(const Formula &F, SmallPtrSet<const SCEV *, 16> &Regs, const DenseSet<const SCEV *> &VisitedRegs, const Loop *L, const SmallVectorImpl<int64_t> &Offsets, ScalarEvolution &SE, DominatorTree &DT, SmallPtrSet<const SCEV *, 16> *LoserRegs) argument
[all...]

Completed in 1675 milliseconds