mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Support changed expression api
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
19f31f28d8
commit
85202d4622
@ -38,20 +38,20 @@ static void PrintClassifiedExprs(Method *M) {
|
||||
cout << *I;
|
||||
|
||||
if ((*I)->getType() == Type::VoidTy) continue;
|
||||
ExprAnalysisResult R = ClassifyExpression(*I);
|
||||
analysis::ExprType R = analysis::ClassifyExpression(*I);
|
||||
if (R.Var == *I) continue; // Doesn't tell us anything
|
||||
|
||||
cout << "\t\tExpr =";
|
||||
switch (R.ExprType) {
|
||||
case ExprAnalysisResult::ScaledLinear:
|
||||
switch (R.ExprTy) {
|
||||
case analysis::ExprType::ScaledLinear:
|
||||
WriteAsOperand(cout, (Value*)R.Scale) << " *";
|
||||
// fall through
|
||||
case ExprAnalysisResult::Linear:
|
||||
case analysis::ExprType::Linear:
|
||||
WriteAsOperand(cout, R.Var);
|
||||
if (R.Offset == 0) break;
|
||||
else cout << " +";
|
||||
// fall through
|
||||
case ExprAnalysisResult::Constant:
|
||||
case analysis::ExprType::Constant:
|
||||
if (R.Offset) WriteAsOperand(cout, (Value*)R.Offset); else cout << " 0";
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user