Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:PASS

10 // Pass to verify generated machine code. The following is checked:
54 MachineVerifier(Pass *pass, const char *b) :
55 PASS(pass),
62 Pass *const PASS;
115 // Vregs that pass through MBB untouched. This set is disjoint from
119 // Vregs that must pass through MBB because they are needed by a successor
241 static char ID; // Pass ID, replacement for typeid
270 void MachineFunction::verify(Pass *p, const char *Banner) const {
303 if (PASS) {
304 LiveInts = PASS->getAnalysisIfAvailable<LiveIntervals>();
307 LiveVars = PASS->getAnalysisIfAvailable<LiveVariables>();
308 LiveStks = PASS->getAnalysisIfAvailable<LiveStacks>();
309 Indexes = PASS->getAnalysisIfAvailable<SlotIndexes>();
1154 // can pass through an MBB live, but may not be live every time. It is assumed