Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DAnalysis.cpp78 SmallVectorImpl<uint64_t> *Offsets, in ComputeValueVTs() argument
87 ComputeValueVTs(TLI, *EI, ValueVTs, Offsets, in ComputeValueVTs()
96 ComputeValueVTs(TLI, EltTy, ValueVTs, Offsets, in ComputeValueVTs()
105 if (Offsets) in ComputeValueVTs()
106 Offsets->push_back(StartingOffset); in ComputeValueVTs()
/external/llvm/lib/Support/
DIntervalMap.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()
/external/llvm/lib/Target/PowerPC/
DPPCFrameLowering.h132 static const SpillSlot Offsets[] = { in getCalleeSavedSpillSlots() local
312 NumEntries = array_lengthof(Offsets); in getCalleeSavedSpillSlots()
314 return Offsets; in getCalleeSavedSpillSlots()
/external/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGSDNodes.cpp190 SmallVector<int64_t, 4> Offsets; in ClusterNeighboringLoads() local
206 Offsets.push_back(Offset1); in ClusterNeighboringLoads()
208 Offsets.push_back(Offset2); in ClusterNeighboringLoads()
218 std::sort(Offsets.begin(), Offsets.end()); in ClusterNeighboringLoads()
223 int64_t BaseOff = Offsets[0]; in ClusterNeighboringLoads()
226 for (unsigned i = 1, e = Offsets.size(); i != e; ++i) { in ClusterNeighboringLoads()
227 int64_t Offset = Offsets[i]; in ClusterNeighboringLoads()
DSelectionDAGBuilder.cpp1175 SmallVector<uint64_t, 4> Offsets; in visitRet() local
1176 ComputeValueVTs(TLI, I.getOperand(0)->getType(), ValueVTs, &Offsets); in visitRet()
1183 DAG.getIntPtrConstant(Offsets[i])); in visitRet()
3215 SmallVector<uint64_t, 4> Offsets; in visitLoad() local
3216 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets); in visitLoad()
3257 DAG.getConstant(Offsets[i], PtrVT)); in visitLoad()
3259 A, MachinePointerInfo(SV, Offsets[i]), isVolatile, in visitLoad()
3289 SmallVector<uint64_t, 4> Offsets; in visitStore() local
3290 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets); in visitStore()
3320 DAG.getConstant(Offsets[i], PtrVT)); in visitStore()
[all …]
DTargetLowering.cpp1004 SmallVectorImpl<uint64_t> *Offsets) { in GetReturnInfo() argument
1048 if (Offsets) { in GetReturnInfo()
1049 Offsets->push_back(Offset); in GetReturnInfo()
/external/llvm/include/llvm/CodeGen/
DAnalysis.h57 SmallVectorImpl<uint64_t> *Offsets = 0,
/external/clang/lib/AST/
DVTableBuilder.cpp446 SmallVector<MethodAndOffsetPairTy, 16> Offsets; member
464 bool empty() const { return Offsets.empty(); } in empty()
513 for (unsigned I = 0, E = Offsets.size(); I != E; ++I) { in AddVCallOffset()
514 if (MethodsCanShareVCallOffset(Offsets[I].first, MD)) in AddVCallOffset()
519 Offsets.push_back(MethodAndOffsetPairTy(MD, OffsetOffset)); in AddVCallOffset()
525 for (unsigned I = 0, E = Offsets.size(); I != E; ++I) { in getVCallOffsetOffset()
526 if (MethodsCanShareVCallOffset(Offsets[I].first, MD)) in getVCallOffsetOffset()
527 return Offsets[I].second; in getVCallOffsetOffset()
/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp801 const SmallVectorImpl<int64_t> &Offsets,
891 const SmallVectorImpl<int64_t> &Offsets, in RateFormula() argument
922 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(), in RateFormula()
923 E = Offsets.end(); I != E; ++I) { in RateFormula()
1119 SmallVector<int64_t, 8> Offsets; member in __anon61c3719a0611::LSRUse
1239 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(), in print()
1240 E = Offsets.end(); I != E; ++I) { in print()
2073 if (NewOffset != LU.Offsets.back()) in reconcileNewOffset()
2074 LU.Offsets.push_back(NewOffset); in reconcileNewOffset()
2112 if (LU.Offsets.empty() || Offset != LU.Offsets.back()) in getUse()
[all …]
/external/clang/lib/Serialization/
DASTReaderDecl.cpp2087 std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC); in ReadDeclRecord() local
2088 if (Offsets.first || Offsets.second) { in ReadDeclRecord()
2089 if (Offsets.first != 0) in ReadDeclRecord()
2091 if (Offsets.second != 0) in ReadDeclRecord()
2093 if (ReadDeclContextStorage(*Loc.F, DeclsCursor, Offsets, in ReadDeclRecord()
DASTReader.cpp721 const std::pair<uint64_t, uint64_t> &Offsets, in ReadDeclContextStorage() argument
725 if (Offsets.first != 0) { in ReadDeclContextStorage()
726 Cursor.JumpToBit(Offsets.first); in ReadDeclContextStorage()
743 if (Offsets.second != 0) { in ReadDeclContextStorage()
744 Cursor.JumpToBit(Offsets.second); in ReadDeclContextStorage()
/external/zlib/contrib/masmx64/
Dgvmat64.asm125 ;;; Offsets for fields in the deflate_state structure. These numbers
/external/zlib/contrib/masmx86/
Dmatch686.asm140 ;;; Offsets for fields in the deflate_state structure. These numbers
/external/webkit/Source/WebKit/chromium/tests/
DKURLTest.cpp561 TEST(KURLTest, Offsets) in TEST() argument
/external/clang/include/clang/Serialization/
DASTReader.h346 const std::pair<uint64_t, uint64_t> &Offsets,
/external/llvm/lib/Target/X86/
DX86FastISel.cpp1551 SmallVector<uint64_t, 4> Offsets; in DoSelectCall() local
1553 Outs, TLI, &Offsets); in DoSelectCall()
/external/llvm/include/llvm/Target/
DTargetLowering.h2047 SmallVectorImpl<uint64_t> *Offsets = 0);
/external/llvm/include/llvm/ADT/
DIntervalMap.h844 void replaceRoot(void *Root, unsigned Size, IdxPair Offsets);
/external/qemu-pc-bios/bochs/bios/
Drombios.c11237 .org 0xfef3 ; Initial Interrupt Vector Offsets Loaded by POST