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

References

lib/ExecutionEngine/Interpreter/Execution.cpp
 2025       return executeTruncInst(CE->getOperand(0), CE->getType(), SF);
 2027       return executeZExtInst(CE->getOperand(0), CE->getType(), SF);
 2029       return executeSExtInst(CE->getOperand(0), CE->getType(), SF);
 2031       return executeFPTruncInst(CE->getOperand(0), CE->getType(), SF);
 2033       return executeFPExtInst(CE->getOperand(0), CE->getType(), SF);
 2035       return executeUIToFPInst(CE->getOperand(0), CE->getType(), SF);
 2037       return executeSIToFPInst(CE->getOperand(0), CE->getType(), SF);
 2039       return executeFPToUIInst(CE->getOperand(0), CE->getType(), SF);
 2041       return executeFPToSIInst(CE->getOperand(0), CE->getType(), SF);
 2043       return executePtrToIntInst(CE->getOperand(0), CE->getType(), SF);
 2045       return executeIntToPtrInst(CE->getOperand(0), CE->getType(), SF);
 2047       return executeBitCastInst(CE->getOperand(0), CE->getType(), SF);
 2050                                gep_type_end(CE), SF);
 2054                           getOperandValue(CE->getOperand(0), SF),
 2055                           getOperandValue(CE->getOperand(1), SF),
 2058     return executeSelectInst(getOperandValue(CE->getOperand(0), SF),
 2059                              getOperandValue(CE->getOperand(1), SF),
 2060                              getOperandValue(CE->getOperand(2), SF),
 2068   GenericValue Op0 = getOperandValue(CE->getOperand(0), SF);
 2069   GenericValue Op1 = getOperandValue(CE->getOperand(1), SF);