Add all arithmetic operators to ConstantExprToString().

Note that some generated operators (like &, | or ^) may
not be supported by the assembler -- but if they've got
this far, it's better to generate them and let the assembler decide.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7476 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Vikram S. Adve 2003-08-01 15:55:53 +00:00
parent 97e02ebd86
commit 72666e6c30

View File

@ -213,6 +213,46 @@ public:
+ valToExprString(CE->getOperand(1), target) + ")";
break;
case Instruction::Sub:
S += "(" + valToExprString(CE->getOperand(0), target) + ") - ("
+ valToExprString(CE->getOperand(1), target) + ")";
break;
case Instruction::Mul:
S += "(" + valToExprString(CE->getOperand(0), target) + ") * ("
+ valToExprString(CE->getOperand(1), target) + ")";
break;
case Instruction::Div:
S += "(" + valToExprString(CE->getOperand(0), target) + ") / ("
+ valToExprString(CE->getOperand(1), target) + ")";
break;
case Instruction::Rem:
S += "(" + valToExprString(CE->getOperand(0), target) + ") % ("
+ valToExprString(CE->getOperand(1), target) + ")";
break;
case Instruction::And:
// Logical && for booleans; bitwise & otherwise
S += "(" + valToExprString(CE->getOperand(0), target)
+ ((CE->getType() == Type::BoolTy)? ") && (" : ") & (")
+ valToExprString(CE->getOperand(1), target) + ")";
break;
case Instruction::Or:
// Logical || for booleans; bitwise | otherwise
S += "(" + valToExprString(CE->getOperand(0), target)
+ ((CE->getType() == Type::BoolTy)? ") || (" : ") | (")
+ valToExprString(CE->getOperand(1), target) + ")";
break;
case Instruction::Xor:
// Bitwise ^ for all types
S += "(" + valToExprString(CE->getOperand(0), target) + ") ^ ("
+ valToExprString(CE->getOperand(1), target) + ")";
break;
default:
assert(0 && "Unsupported operator in ConstantExprToString()");
break;