Searched refs:Indexes (Results 1 - 25 of 31) sorted by relevance

12

/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DLiveRangeCalc.cpp26 Indexes = SI;
39 assert(MRI && Indexes && "call reset() first");
50 Idx = Indexes->getMBBStartIdx(MI->getParent());
53 Idx = Indexes->getInstructionIndex(MI)
63 assert(MRI && Indexes && "call reset() first");
85 Idx = Indexes->getMBBEndIdx(MI->getOperand(I.getOperandNo()+1).getMBB());
88 Idx = Indexes->getInstructionIndex(MI).getRegSlot();
118 tie(Start, End) = Indexes->getMBBRange(MBB);
139 assert(Indexes && "Missing SlotIndexes");
142 MachineBasicBlock *KillMBB = Indexes
[all...]
H A DMachineLoopRanges.cpp40 Indexes = &getAnalysis<SlotIndexes>();
52 Range = new MachineLoopRange(Loop, Allocator, *Indexes);
59 SlotIndexes &Indexes)
64 const std::pair<SlotIndex, SlotIndex> &Range = Indexes.getMBBRange(*I);
57 MachineLoopRange(const MachineLoop *loop, MachineLoopRange::Allocator &alloc, SlotIndexes &Indexes) argument
H A DInterferenceCache.h54 /// Indexes - Mapping block numbers to SlotIndex ranges.
55 SlotIndexes *Indexes; member in class:llvm::InterferenceCache::Entry
96 Entry() : PhysReg(0), Tag(0), RefCount(0), Indexes(0), LIS(0) {}
102 Indexes = indexes;
H A DLiveRangeCalc.h38 SlotIndexes *Indexes; member in class:llvm::LiveRangeCalc
49 /// redundant, it can be computed as: MDT[Indexes.getMBBFromIndex(VNI->def)].
127 LiveRangeCalc() : MRI(0), Indexes(0), DomTree(0), Alloc(0) {}
H A DVirtRegMap.cpp152 SlotIndexes *Indexes; member in class:__anon10229::VirtRegRewriter
200 Indexes = &getAnalysis<SlotIndexes>();
246 if (!Indexes->findLiveInMBBs(I->start, I->end, LiveIn))
263 DEBUG(MBBI->print(dbgs(), Indexes));
335 if (Indexes)
336 Indexes->removeMachineInstrFromMaps(MI);
H A DStackColoring.cpp119 SlotIndexes *Indexes; member in class:__anon10220::StackColoring
402 SlotIndex ThisIndex = Indexes->getInstructionIndex(MI);
421 Starts[pos] = Indexes->getMBBStartIdx(MBB);
423 Finishes[pos] = Indexes->getMBBEndIdx(MBB);
442 SlotIndex NewStart = Indexes->getMBBStartIdx(MBB);
443 SlotIndex NewFin = Indexes->getMBBEndIdx(MBB);
560 SlotIndex Index = Indexes->getInstructionIndex(I);
616 SlotIndex Index = Indexes->getInstructionIndex(I);
648 Indexes = &getAnalysis<SlotIndexes>();
690 LI->getNextValue(Indexes
[all...]
H A DLiveIntervalAnalysis.cpp109 Indexes = &getAnalysis<SlotIndexes>();
154 MF->print(OS, Indexes);
406 MIIndex = Indexes->getNextNonNullIndex(MIIndex);
413 assert(Indexes->getInstructionFromIndex(MIIndex) == MI &&
438 MIIndex = Indexes->getNextNonNullIndex(MIIndex);
496 RegMaskSlots.push_back(Indexes->getInstructionIndex(MI).getRegSlot());
575 SlotIndex Begin = Indexes->getMBBStartIdx(MBB);
747 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill);
749 tie(MBBStart, MBBEnd) = Indexes->getMBBRange(KillMBB);
776 tie(MBBStart, MBBEnd) = Indexes
[all...]
H A DMachineVerifier.cpp196 SlotIndexes *Indexes; member in struct:__anon10174::MachineVerifier
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
[all...]
H A DMachineBasicBlock.cpp256 void MachineBasicBlock::print(raw_ostream &OS, SlotIndexes *Indexes) const {
264 if (Indexes)
265 OS << Indexes->getMBBStartIdx(this) << '\t';
285 if (Indexes) OS << '\t';
293 if (Indexes) OS << '\t';
301 if (Indexes) {
302 if (Indexes->hasIndex(I))
303 OS << Indexes->getInstructionIndex(I);
314 if (Indexes) OS << '\t';
H A DInterferenceCache.cpp108 tie(Start, Stop) = Indexes->getMBBRange(MBBNum);
185 tie(Start, Stop) = Indexes->getMBBRange(MBBNum);
H A DRegisterCoalescer.cpp1205 SlotIndexes *Indexes; member in class:__anon10192::JoinVals
1295 Indexes(LIS->getSlotIndexes()), TRI(tri),
1342 MachineInstr *MI = Indexes->getInstructionFromIndex(VNI->def);
1380 DefMI = Indexes->getInstructionFromIndex(VNI->def);
1534 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(VNI->def);
1535 if (OtherLRQ.endPoint() >= Indexes->getMBBEndIdx(MBB))
1617 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(VNI->def);
1618 SlotIndex MBBEnd = Indexes->getMBBEndIdx(MBB);
1696 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(VNI->def);
1699 MI = Indexes
[all...]
H A DTwoAddressInstructionPass.cpp70 SlotIndexes *Indexes; member in class:__anon10226::TwoAddressInstructionPass
555 if (Indexes)
556 Indexes->replaceMachineInstrInMaps(MI, NewMI);
605 if (Indexes)
606 Indexes->replaceMachineInstrInMaps(mi, NewMI);
1294 if (Indexes)
1295 CopyIdx = Indexes->insertMachineInstrInMaps(PrevMI).getRegSlot();
1365 Indexes = getAnalysisIfAvailable<SlotIndexes>();
H A DRegAllocGreedy.cpp75 SlotIndexes *Indexes; member in class:__anon10188::RAGreedy
711 if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number))
769 if (Intf.first() <= Indexes->getMBBStartIdx(Number))
1305 if (const MachineInstr *MI = Indexes->getInstructionFromIndex(Uses[i]))
1757 Indexes = &getAnalysis<SlotIndexes>();
1770 IntfCache.init(MF, Matrix->getLiveUnions(), Indexes, LIS, TRI);
H A DMachineFunction.cpp298 void MachineFunction::print(raw_ostream &OS, SlotIndexes *Indexes) const {
341 BB->print(OS, Indexes);
H A DLiveInterval.cpp133 const SlotIndexes &Indexes) const {
157 !CP.isCoalescable(Indexes.getInstructionFromIndex(Def)))
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DLiveIntervalAnalysis.h57 SlotIndexes* Indexes; member in class:llvm::LiveIntervals
77 /// MI = Indexes->getInstructionFromIndex(RegMaskSlot[N]);
171 return Indexes;
181 return !Indexes->hasIndex(Instr);
186 return Indexes->getInstructionIndex(instr);
191 return Indexes->getInstructionFromIndex(index);
196 return Indexes->getMBBStartIdx(mbb);
201 return Indexes->getMBBEndIdx(mbb);
215 return Indexes->getMBBFromIndex(index);
219 return Indexes
[all...]
H A DMachineLoopRanges.h91 SlotIndexes *Indexes; member in class:llvm::MachineLoopRanges
97 MachineLoopRanges() : MachineFunctionPass(ID), Indexes(0) {}
H A DLiveInterval.h420 bool isZeroLength(SlotIndexes *Indexes) const {
422 if (Indexes->getNextNonNullIndex(i->start).getBaseIndex() <
/macosx-10.9.5/apache-786.1/httpd/docs/conf/extra/
H A Dhttpd-manual.conf.in13 Options Indexes
H A Dhttpd-autoindex.conf.in7 # directory must include "Indexes", and the directory must not contain
23 Options Indexes MultiViews
/macosx-10.9.5/apache-786.1/httpd/docs/conf/
H A Dhttpd.conf.in140 # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
149 Options Indexes FollowSymLinks MultiViews
H A Dhttpd.conf.in.orig140 # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
149 Options Indexes FollowSymLinks MultiViews
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.07033/lib/DBIx/Class/Schema/Loader/DBI/ODBC/
H A DACCESS.pm200 $self->_adox_catalog->Tables->Item($table->name)->Indexes
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dapache.vim43 syn match apacheOptionOption "[+-]\?\<\(ExecCGI\|FollowSymLinks\|Includes\|IncludesNoExec\|Indexes\|MultiViews\|SymLinksIfOwnerMatch\)\>"
55 syn keyword apacheAllowOverrideValue AuthConfig FileInfo Indexes Limit Options contained
/macosx-10.9.5/libxml2-26/libxml2/doc/
H A Dsearch.php65 <tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr>

Completed in 241 milliseconds

12