Home | History | Annotate | Download | only in Utils

Lines Matching full:instruction

11 // virtual register computed by an Instruction and replaces it with a slot in
13 // AllocaInst inserted. After this function is called on an instruction, we are
14 // guaranteed that the only user of the instruction is a store that is
27 /// Instruction and replaces it with a slot in the stack frame, allocated via
32 AllocaInst* llvm::DemoteRegToStack(Instruction &I, bool VolatileLoads,
33 Instruction *AllocaPoint) {
50 // Change all of the users of the instruction to read from the stack slot
53 Instruction *U = cast<Instruction>(I.use_back());
77 // If this is a normal instruction, just insert a load.
85 // careful is I is an invoke instruction though, because we can't insert the
86 // store AFTER the terminator instruction.
111 AllocaInst* llvm::DemotePHIToStack(PHINode *P, Instruction *AllocaPoint) {