mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-27 16:17:17 +00:00
Declare that lowerinvoke doesn't interact with other lowering passes.
Patch written by Domagoj Babic! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28367 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -41,11 +41,12 @@ namespace {
|
|||||||
AU.addRequired<TargetData>();
|
AU.addRequired<TargetData>();
|
||||||
AU.setPreservesCFG();
|
AU.setPreservesCFG();
|
||||||
|
|
||||||
// This is a cluster of orthogonal Transforms:
|
// This is a cluster of orthogonal Transforms:
|
||||||
AU.addPreserved<UnifyFunctionExitNodes>();
|
AU.addPreserved<UnifyFunctionExitNodes>();
|
||||||
AU.addPreservedID(PromoteMemoryToRegisterID);
|
AU.addPreservedID(PromoteMemoryToRegisterID);
|
||||||
AU.addPreservedID(LowerSelectID);
|
AU.addPreservedID(LowerSelectID);
|
||||||
AU.addPreservedID(LowerSwitchID);
|
AU.addPreservedID(LowerSwitchID);
|
||||||
|
AU.addPreservedID(LowerInvokePassID);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// doPassInitialization - For the lower allocations pass, this ensures that
|
/// doPassInitialization - For the lower allocations pass, this ensures that
|
||||||
|
@@ -71,7 +71,15 @@ namespace {
|
|||||||
JumpBufAlign(Align) {}
|
JumpBufAlign(Align) {}
|
||||||
bool doInitialization(Module &M);
|
bool doInitialization(Module &M);
|
||||||
bool runOnFunction(Function &F);
|
bool runOnFunction(Function &F);
|
||||||
|
|
||||||
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
||||||
|
// This is a cluster of orthogonal Transforms
|
||||||
|
AU.addPreservedID(PromoteMemoryToRegisterID);
|
||||||
|
AU.addPreservedID(LowerSelectID);
|
||||||
|
AU.addPreservedID(LowerSwitchID);
|
||||||
|
AU.addPreservedID(LowerAllocationsID);
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void createAbortMessage();
|
void createAbortMessage();
|
||||||
void writeAbortMessage(Instruction *IB);
|
void writeAbortMessage(Instruction *IB);
|
||||||
|
@@ -39,10 +39,12 @@ namespace {
|
|||||||
|
|
||||||
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
||||||
// This certainly destroys the CFG.
|
// This certainly destroys the CFG.
|
||||||
// This is a cluster of orthogonal Transforms:
|
// This is a cluster of orthogonal Transforms:
|
||||||
AU.addPreserved<UnifyFunctionExitNodes>();
|
AU.addPreserved<UnifyFunctionExitNodes>();
|
||||||
AU.addPreservedID(PromoteMemoryToRegisterID);
|
AU.addPreservedID(PromoteMemoryToRegisterID);
|
||||||
AU.addPreservedID(LowerSwitchID);
|
AU.addPreservedID(LowerSwitchID);
|
||||||
|
AU.addPreservedID(LowerInvokePassID);
|
||||||
|
AU.addPreservedID(LowerAllocationsID);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool runOnFunction(Function &F);
|
bool runOnFunction(Function &F);
|
||||||
|
@@ -34,14 +34,16 @@ namespace {
|
|||||||
class LowerSwitch : public FunctionPass {
|
class LowerSwitch : public FunctionPass {
|
||||||
public:
|
public:
|
||||||
virtual bool runOnFunction(Function &F);
|
virtual bool runOnFunction(Function &F);
|
||||||
|
|
||||||
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
||||||
// This is a cluster of orthogonal Transforms
|
// This is a cluster of orthogonal Transforms
|
||||||
AU.addPreserved<UnifyFunctionExitNodes>();
|
AU.addPreserved<UnifyFunctionExitNodes>();
|
||||||
AU.addPreservedID(PromoteMemoryToRegisterID);
|
AU.addPreservedID(PromoteMemoryToRegisterID);
|
||||||
AU.addPreservedID(LowerSelectID);
|
AU.addPreservedID(LowerSelectID);
|
||||||
|
AU.addPreservedID(LowerInvokePassID);
|
||||||
|
AU.addPreservedID(LowerAllocationsID);
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef std::pair<Constant*, BasicBlock*> Case;
|
typedef std::pair<Constant*, BasicBlock*> Case;
|
||||||
typedef std::vector<Case>::iterator CaseItr;
|
typedef std::vector<Case>::iterator CaseItr;
|
||||||
private:
|
private:
|
||||||
|
@@ -38,10 +38,12 @@ namespace {
|
|||||||
AU.addRequired<DominanceFrontier>();
|
AU.addRequired<DominanceFrontier>();
|
||||||
AU.addRequired<TargetData>();
|
AU.addRequired<TargetData>();
|
||||||
AU.setPreservesCFG();
|
AU.setPreservesCFG();
|
||||||
// This is a cluster of orthogonal Transforms
|
// This is a cluster of orthogonal Transforms
|
||||||
AU.addPreserved<UnifyFunctionExitNodes>();
|
AU.addPreserved<UnifyFunctionExitNodes>();
|
||||||
AU.addPreservedID(LowerSelectID);
|
AU.addPreservedID(LowerSelectID);
|
||||||
AU.addPreservedID(LowerSwitchID);
|
AU.addPreservedID(LowerSwitchID);
|
||||||
|
AU.addPreservedID(LowerInvokePassID);
|
||||||
|
AU.addPreservedID(LowerAllocationsID);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user