HomeSort by relevance Sort by last modified time
    Searched defs:Indexes (Results 1 - 11 of 11) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineLoopRanges.h 91 SlotIndexes *Indexes;
97 MachineLoopRanges() : MachineFunctionPass(ID), Indexes(0) {}
LiveIntervalAnalysis.h 57 SlotIndexes* Indexes;
83 /// MI = Indexes->getInstructionFromIndex(RegMaskSlot[N]);
169 return Indexes;
179 return !Indexes->hasIndex(Instr);
184 return Indexes->getInstructionIndex(instr);
189 return Indexes->getInstructionFromIndex(index);
194 return Indexes->getMBBStartIdx(mbb);
199 return Indexes->getMBBEndIdx(mbb);
213 return Indexes->getMBBFromIndex(index);
217 return Indexes->insertMachineInstrInMaps(MI)
    [all...]
  /external/llvm/lib/CodeGen/
LiveRangeCalc.h 38 SlotIndexes *Indexes;
49 /// redundant, it can be computed as: MDT[Indexes.getMBBFromIndex(VNI->def)].
127 LiveRangeCalc() : MRI(0), Indexes(0), DomTree(0), Alloc(0) {}
VirtRegMap.cpp 151 SlotIndexes *Indexes;
196 Indexes = &getAnalysis<SlotIndexes>();
242 if (!Indexes->findLiveInMBBs(I->start, I->end, LiveIn))
262 DEBUG(MBBI->print(dbgs(), Indexes));
306 // PhysReg operands cannot have subregister indexes.
334 if (Indexes)
335 Indexes->removeMachineInstrFromMaps(MI);
InterferenceCache.h 54 /// Indexes - Mapping block numbers to SlotIndex ranges.
55 SlotIndexes *Indexes;
96 Entry() : PhysReg(0), Tag(0), RefCount(0), Indexes(0), LIS(0) {}
98 void clear(MachineFunction *mf, SlotIndexes *indexes, LiveIntervals *lis) {
102 Indexes = indexes;
RegAllocGreedy.cpp 75 SlotIndexes *Indexes;
711 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number))
769 if (Intf.first() <= Indexes->getMBBStartIdx(Number))
    [all...]
StackColoring.cpp 107 SlotIndexes* Indexes;
382 SlotIndex ThisIndex = Indexes->getInstructionIndex(MI);
401 Starts[pos] = Indexes->getMBBStartIdx(MBB);
403 Finishes[pos] = Indexes->getMBBEndIdx(MBB);
422 SlotIndex NewStart = Indexes->getMBBStartIdx(MBB);
423 SlotIndex NewFin = Indexes->getMBBEndIdx(MBB);
526 SlotIndex Index = Indexes->getInstructionIndex(I);
566 Indexes = &getAnalysis<SlotIndexes>();
608 LI->getNextValue(Indexes->getZeroIndex(), VNInfoAllocator);
MachineVerifier.cpp 196 SlotIndexes *Indexes;
295 Indexes = NULL;
302 Indexes = PASS->getAnalysisIfAvailable<SlotIndexes>();
360 MF->print(*OS, Indexes);
372 if (Indexes)
373 *OS << " [" << Indexes->getMBBStartIdx(MBB)
374 << ';' << Indexes->getMBBEndIdx(MBB) << ')';
382 if (Indexes && Indexes->hasIndex(MI))
383 *OS << Indexes->getInstructionIndex(MI) << '\t'
    [all...]
TwoAddressInstructionPass.cpp 70 SlotIndexes *Indexes;
555 if (Indexes)
556 Indexes->replaceMachineInstrInMaps(MI, NewMI);
605 if (Indexes)
606 Indexes->replaceMachineInstrInMaps(mi, NewMI);
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-bind.cpp 206 template<int I, int... Indexes, typename T, typename... Types>
207 struct make_indexes_impl<I, int_tuple<Indexes...>, T, Types...> {
208 typedef typename make_indexes_impl<I+1, int_tuple<Indexes..., I>, Types...>::type type;
211 template<int I, int... Indexes>
212 struct make_indexes_impl<I, int_tuple<Indexes...> > {
213 typedef int_tuple<Indexes...> type;
231 typedef typename make_indexes<BoundArgs...>::type indexes; typedef in class:bound_functor
286 template<typename F, int... Indexes, typename... Args>
288 unwrap_and_forward(F& f, int_tuple<Indexes...>, const tuple<Args&...>& args) {
289 return f(get<Indexes>(args)...)
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]

Completed in 558 milliseconds