mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 06:12:18 +00:00
Move DemoteRegToStack prototype out of DemoteRegToStack.h to this file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12367 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f5ee170f93
commit
cbf99ee973
@ -21,6 +21,7 @@ namespace llvm {
|
|||||||
|
|
||||||
class Pass;
|
class Pass;
|
||||||
class PHINode;
|
class PHINode;
|
||||||
|
class AllocaInst;
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// Local constant propagation...
|
// Local constant propagation...
|
||||||
@ -87,6 +88,14 @@ Value *hasConstantValue(PHINode *PN);
|
|||||||
///
|
///
|
||||||
bool SimplifyCFG(BasicBlock *BB);
|
bool SimplifyCFG(BasicBlock *BB);
|
||||||
|
|
||||||
|
/// DemoteRegToStack - This function takes a virtual register computed by an
|
||||||
|
/// Instruction& X and replaces it with a slot in the stack frame, allocated via
|
||||||
|
/// alloca. This allows the CFG to be changed around without fear of
|
||||||
|
/// invalidating the SSA information for the value. It returns the pointer to
|
||||||
|
/// the alloca inserted to create a stack slot for X.
|
||||||
|
///
|
||||||
|
AllocaInst *DemoteRegToStack(Instruction &X);
|
||||||
|
|
||||||
} // End llvm namespace
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user