Searched refs:Offsets (Results 1 - 20 of 20) sorted by relevance

/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/include/llvm/CodeGen/
H A DAnalysis.h52 /// If Offsets is non-null, it points to a vector to be filled in
57 SmallVectorImpl<uint64_t> *Offsets = 0,
/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/Target/PowerPC/
H A DPPCFrameLowering.h132 static const SpillSlot Offsets[] = { local
312 NumEntries = array_lengthof(Offsets);
314 return Offsets;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp190 SmallVector<int64_t, 4> Offsets; local
206 Offsets.push_back(Offset1);
208 Offsets.push_back(Offset2);
218 std::sort(Offsets.begin(), Offsets.end());
223 int64_t BaseOff = Offsets[0];
226 for (unsigned i = 1, e = Offsets.size(); i != e; ++i) {
227 int64_t Offset = Offsets[i];
H A DSelectionDAGBuilder.cpp1175 SmallVector<uint64_t, 4> Offsets; local
1176 ComputeValueVTs(TLI, I.getOperand(0)->getType(), ValueVTs, &Offsets);
1183 DAG.getIntPtrConstant(Offsets[i]));
3215 SmallVector<uint64_t, 4> Offsets; local
3216 ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets);
3257 DAG.getConstant(Offsets[i], PtrVT));
3259 A, MachinePointerInfo(SV, Offsets[i]), isVolatile,
3289 SmallVector<uint64_t, 4> Offsets; local
3290 ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets);
3320 DAG.getConstant(Offsets[
5160 SmallVector<uint64_t, 4> Offsets; local
[all...]
H A DTargetLowering.cpp1004 SmallVectorImpl<uint64_t> *Offsets) {
1048 if (Offsets) {
1049 Offsets->push_back(Offset);
1001 GetReturnInfo(Type* ReturnType, Attributes attr, SmallVectorImpl<ISD::OutputArg> &Outs, const TargetLowering &TLI, SmallVectorImpl<uint64_t> *Offsets) argument
/external/clang/lib/AST/
H A DVTableBuilder.cpp444 /// Offsets - Keeps track of methods and their offsets.
446 SmallVector<MethodAndOffsetPairTy, 16> Offsets; member in struct:__anon3092::VCallOffsetMap
464 bool empty() const { return Offsets.empty(); }
513 for (unsigned I = 0, E = Offsets.size(); I != E; ++I) {
514 if (MethodsCanShareVCallOffset(Offsets[I].first, MD))
519 Offsets.push_back(MethodAndOffsetPairTy(MD, OffsetOffset));
525 for (unsigned I = 0, E = Offsets.size(); I != E; ++I) {
526 if (MethodsCanShareVCallOffset(Offsets[I].first, MD))
527 return Offsets[I].second;
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp801 const SmallVectorImpl<int64_t> &Offsets,
891 const SmallVectorImpl<int64_t> &Offsets,
922 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
923 E = Offsets.end(); I != E; ++I) {
1119 SmallVector<int64_t, 8> Offsets; member in class:__anon7785::LSRUse
1238 OS << ", Offsets={";
1239 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1240 E = Offsets.end(); I != E; ++I) {
2073 if (NewOffset != LU.Offsets.back())
2074 LU.Offsets
887 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...]
/external/webkit/Source/WebKit/chromium/tests/
H A DKURLTest.cpp561 TEST(KURLTest, Offsets)
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp2087 std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC); local
2088 if (Offsets.first || Offsets.second) {
2089 if (Offsets.first != 0)
2091 if (Offsets.second != 0)
2093 if (ReadDeclContextStorage(*Loc.F, DeclsCursor, Offsets,
H A DASTReader.cpp721 const std::pair<uint64_t, uint64_t> &Offsets,
725 if (Offsets.first != 0) {
726 Cursor.JumpToBit(Offsets.first);
743 if (Offsets.second != 0) {
744 Cursor.JumpToBit(Offsets.second);
719 ReadDeclContextStorage(ModuleFile &M, llvm::BitstreamCursor &Cursor, const std::pair<uint64_t, uint64_t> &Offsets, DeclContextInfo &Info) argument
/external/clang/include/clang/Serialization/
H A DASTReader.h346 const std::pair<uint64_t, uint64_t> &Offsets,
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp1551 SmallVector<uint64_t, 4> Offsets; local
1553 Outs, TLI, &Offsets);
/external/zlib/contrib/masmx64/
H A Dgvmat64.asm125 ;;; Offsets for fields in the deflate_state structure. These numbers
/external/zlib/contrib/masmx86/
H A Dmatch686.asm140 ;;; Offsets for fields in the deflate_state structure. These numbers
H A Dgvmat32.asm634 ;;; Offsets for fields in the deflate_state structure. These numbers
/external/llvm/include/llvm/Target/
H A DTargetLowering.h2047 SmallVectorImpl<uint64_t> *Offsets = 0);
/external/llvm/include/llvm/ADT/
H A DIntervalMap.h843 /// @param Offsets Offsets into the root and first branch nodes.
844 void replaceRoot(void *Root, unsigned Size, IdxPair Offsets);
/external/qemu-pc-bios/bochs/bios/
H A Drombios.c55 // $fef3 ; Initial Interrupt Vector Offsets Loaded by POST
11237 .org 0xfef3 ; Initial Interrupt Vector Offsets Loaded by POST

Completed in 1746 milliseconds