Home | History | Annotate | Download | only in Utils

Lines Matching full:instruction

20 /// Instruction and replaces it with a slot in the stack frame, allocated via
24 AllocaInst *llvm::DemoteRegToStack(Instruction &I, bool VolatileLoads,
25 Instruction *AllocaPoint) {
42 // Change all of the users of the instruction to read from the stack slot.
44 Instruction *U = cast<Instruction>(I.use_back());
68 // If this is a normal instruction, just insert a load.
76 // careful if I is an invoke instruction, because we can't insert the store
77 // AFTER the terminator instruction.
110 AllocaInst *llvm::DemotePHIToStack(PHINode *P, Instruction *AllocaPoint) {