Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:PASS

10 // Pass to verify generated machine code. The following is checked:
51 MachineVerifier(Pass *pass, const char *b) :
52 PASS(pass),
59 Pass *const PASS;
108 // Vregs that pass through MBB untouched. This set is disjoint from
112 // Vregs that must pass through MBB because they are needed by a successor
207 static char ID; // Pass ID, replacement for typeid
236 void MachineFunction::verify(Pass *p, const char *Banner) const {
269 if (PASS) {
270 LiveInts = PASS->getAnalysisIfAvailable<LiveIntervals>();
273 LiveVars = PASS->getAnalysisIfAvailable<LiveVariables>();
274 LiveStks = PASS->getAnalysisIfAvailable<LiveStacks>();
275 Indexes = PASS->getAnalysisIfAvailable<SlotIndexes>();
853 // can pass through an MBB live, but may not be live every time. It is assumed