/external/llvm/include/llvm/CodeGen/ |
MachineLoopRanges.h | 91 SlotIndexes *Indexes; 97 MachineLoopRanges() : MachineFunctionPass(ID), Indexes(0) {}
|
LiveInterval.h | 495 bool isZeroLength(SlotIndexes *Indexes) const { 497 if (Indexes->getNextNonNullIndex(i->start).getBaseIndex() <
|
/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) {}
|
MachineLoopRanges.cpp | 40 Indexes = &getAnalysis<SlotIndexes>(); 52 Range = new MachineLoopRange(Loop, Allocator, *Indexes); 59 SlotIndexes &Indexes) 64 const std::pair<SlotIndex, SlotIndex> &Range = Indexes.getMBBRange(*I);
|
MachineBasicBlock.cpp | 198 void MachineBasicBlock::print(raw_ostream &OS, SlotIndexes *Indexes) const { 208 if (Indexes) 209 OS << Indexes->getMBBStartIdx(this) << '\t'; 225 if (Indexes) OS << '\t'; 233 if (Indexes) OS << '\t'; 241 if (Indexes) { 242 if (Indexes->hasIndex(I)) 243 OS << Indexes->getInstructionIndex(I); 252 if (Indexes) OS << '\t';
|
MachineVerifier.cpp | 180 SlotIndexes *Indexes; 266 Indexes = NULL; 273 Indexes = PASS->getAnalysisIfAvailable<SlotIndexes>(); 318 MF->print(*OS, Indexes); 330 if (Indexes) 331 *OS << " [" << Indexes->getMBBStartIdx(MBB) 332 << ';' << Indexes->getMBBEndIdx(MBB) << ')'; 340 if (Indexes && Indexes->hasIndex(MI)) 341 *OS << Indexes->getInstructionIndex(MI) << '\t' [all...] |
VirtRegMap.cpp | 259 void VirtRegMap::rewrite(SlotIndexes *Indexes) { 270 DEBUG(MBBI->print(dbgs(), Indexes)); 297 // PhysReg operands cannot have subregister indexes. 326 if (Indexes) 327 Indexes->removeMachineInstrFromMaps(MI);
|
InterferenceCache.cpp | 23 SlotIndexes *indexes, 30 Entries[i].clear(mf, indexes); 106 tie(Start, Stop) = Indexes->getMBBRange(MBBNum); 148 tie(Start, Stop) = Indexes->getMBBRange(MBBNum);
|
RegAllocBasic.cpp | 433 SlotIndexes *Indexes = LIS->getSlotIndexes(); 445 tie(Start, Stop) = Indexes->getMBBRange(MBB); 453 MBB = Indexes->getMBBFromIndex(SI.start().getPrevIndex()); 456 tie(Start, Stop) = Indexes->getMBBRange(MBB);
|
RegAllocGreedy.cpp | 66 SlotIndexes *Indexes; 639 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number)) 697 if (Intf.first() <= Indexes->getMBBStartIdx(Number)) 776 tie(Start, Stop) = Indexes->getMBBRange(Number); [all...] |
MachineFunction.cpp | 288 void MachineFunction::print(raw_ostream &OS, SlotIndexes *Indexes) const { 325 BB->print(OS, Indexes);
|
VirtRegMap.h | 125 /// LowSpillSlot, HighSpillSlot - Lowest and highest spill slot indexes. 515 /// @param Indexes Optionally remove deleted instructions from indexes. 516 void rewrite(SlotIndexes *Indexes);
|
/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/webkit/LayoutTests/http/conf/ |
apache2-debian-httpd.conf | 277 # This may also be "None", "All", or any combination of "Indexes", 283 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
|
apache2-httpd.conf | 298 # This may also be "None", "All", or any combination of "Indexes", 304 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
|
apache2-msys-httpd.conf | 299 # This may also be "None", "All", or any combination of "Indexes", 305 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
|
cygwin-httpd.conf | 330 # This may also be "None", "All", or any combination of "Indexes", 336 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
|
fedora-httpd.conf | 315 # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews 324 Options Indexes FollowSymLinks MultiViews ExecCGI Includes 348 # Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec 544 # server-generated indexes. These are only displayed for FancyIndexed
|
httpd.conf | 333 # This may also be "None", "All", or any combination of "Indexes", 339 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
|
/external/llvm/lib/Transforms/Utils/ |
SimplifyCFG.cpp | [all...] |
/external/llvm/lib/Analysis/ |
ScalarEvolution.cpp | [all...] |