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/llvm/lib/CodeGen/
RegAllocBase.cpp 248 SlotIndexes *Indexes = LIS->getSlotIndexes();
261 tie(Start, Stop) = Indexes->getMBBRange(MBB);
271 MBB = Indexes->getMBBFromIndex(SI.start().getPrevIndex());
274 tie(Start, Stop) = Indexes->getMBBRange(MBB);
InterferenceCache.h 53 /// Indexes - Mapping block numbers to SlotIndex ranges.
54 SlotIndexes *Indexes;
78 Entry() : PhysReg(0), Tag(0), RefCount(0), Indexes(0), LIS(0) {}
80 void clear(MachineFunction *mf, SlotIndexes *indexes, LiveIntervals *lis) {
84 Indexes = indexes;
RegAllocGreedy.cpp 75 SlotIndexes *Indexes;
706 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number))
764 if (Intf.first() <= Indexes->getMBBStartIdx(Number))
    [all...]
MachineVerifier.cpp 190 SlotIndexes *Indexes;
277 Indexes = NULL;
284 Indexes = PASS->getAnalysisIfAvailable<SlotIndexes>();
334 MF->print(*OS, Indexes);
346 if (Indexes)
347 *OS << " [" << Indexes->getMBBStartIdx(MBB)
348 << ';' << Indexes->getMBBEndIdx(MBB) << ')';
356 if (Indexes && Indexes->hasIndex(MI))
357 *OS << Indexes->getInstructionIndex(MI) << '\t'
    [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 172 milliseconds