reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/ExecutionEngine/Interpreter/Execution.cpp
 2023   switch (CE->getOpcode()) {
 2025       return executeTruncInst(CE->getOperand(0), CE->getType(), SF);
 2025       return executeTruncInst(CE->getOperand(0), CE->getType(), SF);
 2027       return executeZExtInst(CE->getOperand(0), CE->getType(), SF);
 2027       return executeZExtInst(CE->getOperand(0), CE->getType(), SF);
 2029       return executeSExtInst(CE->getOperand(0), CE->getType(), SF);
 2029       return executeSExtInst(CE->getOperand(0), CE->getType(), SF);
 2031       return executeFPTruncInst(CE->getOperand(0), CE->getType(), SF);
 2031       return executeFPTruncInst(CE->getOperand(0), CE->getType(), SF);
 2033       return executeFPExtInst(CE->getOperand(0), CE->getType(), SF);
 2033       return executeFPExtInst(CE->getOperand(0), CE->getType(), SF);
 2035       return executeUIToFPInst(CE->getOperand(0), CE->getType(), SF);
 2035       return executeUIToFPInst(CE->getOperand(0), CE->getType(), SF);
 2037       return executeSIToFPInst(CE->getOperand(0), CE->getType(), SF);
 2037       return executeSIToFPInst(CE->getOperand(0), CE->getType(), SF);
 2039       return executeFPToUIInst(CE->getOperand(0), CE->getType(), SF);
 2039       return executeFPToUIInst(CE->getOperand(0), CE->getType(), SF);
 2041       return executeFPToSIInst(CE->getOperand(0), CE->getType(), SF);
 2041       return executeFPToSIInst(CE->getOperand(0), CE->getType(), SF);
 2043       return executePtrToIntInst(CE->getOperand(0), CE->getType(), SF);
 2043       return executePtrToIntInst(CE->getOperand(0), CE->getType(), SF);
 2045       return executeIntToPtrInst(CE->getOperand(0), CE->getType(), SF);
 2045       return executeIntToPtrInst(CE->getOperand(0), CE->getType(), SF);
 2047       return executeBitCastInst(CE->getOperand(0), CE->getType(), SF);
 2047       return executeBitCastInst(CE->getOperand(0), CE->getType(), SF);
 2049     return executeGEPOperation(CE->getOperand(0), gep_type_begin(CE),
 2049     return executeGEPOperation(CE->getOperand(0), gep_type_begin(CE),
 2050                                gep_type_end(CE), SF);
 2053     return executeCmpInst(CE->getPredicate(),
 2054                           getOperandValue(CE->getOperand(0), SF),
 2055                           getOperandValue(CE->getOperand(1), SF),
 2056                           CE->getOperand(0)->getType());
 2058     return executeSelectInst(getOperandValue(CE->getOperand(0), SF),
 2059                              getOperandValue(CE->getOperand(1), SF),
 2060                              getOperandValue(CE->getOperand(2), SF),
 2061                              CE->getOperand(0)->getType());
 2068   GenericValue Op0 = getOperandValue(CE->getOperand(0), SF);
 2069   GenericValue Op1 = getOperandValue(CE->getOperand(1), SF);
 2071   Type * Ty = CE->getOperand(0)->getType();
 2072   switch (CE->getOpcode()) {
 2098     dbgs() << "Unhandled ConstantExpr: " << *CE << "\n";