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

  /external/llvm/include/llvm/CodeGen/
MachineLoopRanges.h 91 SlotIndexes *Indexes;
97 MachineLoopRanges() : MachineFunctionPass(ID), Indexes(0) {}
  /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/CodeGen/
InterferenceCache.h 24 SlotIndexes *Indexes;
52 /// Indexes - Mapping block numbers to SlotIndex ranges.
53 SlotIndexes *Indexes;
74 Entry() : PhysReg(0), Tag(0), RefCount(0), Indexes(0) {}
76 void clear(MachineFunction *mf, SlotIndexes *indexes) {
80 Indexes = indexes;
127 InterferenceCache() : TRI(0), LIUArray(0), Indexes(0), MF(0), RoundRobin(0) {}
RegAllocBasic.cpp 432 SlotIndexes *Indexes = LIS->getSlotIndexes();
445 tie(Start, Stop) = Indexes->getMBBRange(MBB);
455 MBB = Indexes->getMBBFromIndex(SI.start().getPrevIndex());
458 tie(Start, Stop) = Indexes->getMBBRange(MBB);
MachineVerifier.cpp 182 SlotIndexes *Indexes;
268 Indexes = NULL;
275 Indexes = PASS->getAnalysisIfAvailable<SlotIndexes>();
320 MF->print(*OS, Indexes);
332 if (Indexes)
333 *OS << " [" << Indexes->getMBBStartIdx(MBB)
334 << ';' << Indexes->getMBBEndIdx(MBB) << ')';
342 if (Indexes && Indexes->hasIndex(MI))
343 *OS << Indexes->getInstructionIndex(MI) << '\t'
    [all...]
RegAllocGreedy.cpp 75 SlotIndexes *Indexes;
697 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number))
755 if (Intf.first() <= Indexes->getMBBStartIdx(Number))
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]

Completed in 253 milliseconds