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;
106 // Vregs that pass through MBB untouched. This set is disjoint from
110 // Vregs that must pass through MBB because they are needed by a successor
205 static char ID; // Pass ID, replacement for typeid
234 void MachineFunction::verify(Pass *p, const char *Banner) const {
267 if (PASS) {
268 LiveInts = PASS->getAnalysisIfAvailable<LiveIntervals>();
271 LiveVars = PASS->getAnalysisIfAvailable<LiveVariables>();
272 LiveStks = PASS->getAnalysisIfAvailable<LiveStacks>();
273 Indexes = PASS->getAnalysisIfAvailable<SlotIndexes>();
819 // can pass through an MBB live, but may not be live every time. It is assumed