Lines Matching refs:Interpreter
257 void Interpreter::visitICmpInst(ICmpInst &I) { in visitICmpInst()
445 void Interpreter::visitFCmpInst(FCmpInst &I) { in visitFCmpInst()
521 void Interpreter::visitBinaryOperator(BinaryOperator &I) { in visitBinaryOperator()
557 void Interpreter::visitSelectInst(SelectInst &I) { in visitSelectInst()
571 void Interpreter::exitCalled(GenericValue GV) { in exitCalled()
588 void Interpreter::popStackAndReturnValueToCaller(Type *RetTy, in popStackAndReturnValueToCaller()
614 void Interpreter::visitReturnInst(ReturnInst &I) { in visitReturnInst()
628 void Interpreter::visitUnreachableInst(UnreachableInst &I) { in visitUnreachableInst()
632 void Interpreter::visitBranchInst(BranchInst &I) { in visitBranchInst()
645 void Interpreter::visitSwitchInst(SwitchInst &I) { in visitSwitchInst()
693 void Interpreter::visitIndirectBrInst(IndirectBrInst &I) { in visitIndirectBrInst()
710 void Interpreter::SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF){ in SwitchToNewBasicBlock()
742 void Interpreter::visitAllocaInst(AllocaInst &I) { in visitAllocaInst()
773 GenericValue Interpreter::executeGEPOperation(Value *Ptr, gep_type_iterator I, in executeGEPOperation()
813 void Interpreter::visitGetElementPtrInst(GetElementPtrInst &I) { in visitGetElementPtrInst()
819 void Interpreter::visitLoadInst(LoadInst &I) { in visitLoadInst()
830 void Interpreter::visitStoreInst(StoreInst &I) { in visitStoreInst()
844 void Interpreter::visitCallSite(CallSite CS) { in visitCallSite()
905 void Interpreter::visitShl(BinaryOperator &I) { in visitShl()
918 void Interpreter::visitLShr(BinaryOperator &I) { in visitLShr()
931 void Interpreter::visitAShr(BinaryOperator &I) { in visitAShr()
944 GenericValue Interpreter::executeTruncInst(Value *SrcVal, Type *DstTy, in executeTruncInst()
953 GenericValue Interpreter::executeSExtInst(Value *SrcVal, Type *DstTy, in executeSExtInst()
962 GenericValue Interpreter::executeZExtInst(Value *SrcVal, Type *DstTy, in executeZExtInst()
971 GenericValue Interpreter::executeFPTruncInst(Value *SrcVal, Type *DstTy, in executeFPTruncInst()
980 GenericValue Interpreter::executeFPExtInst(Value *SrcVal, Type *DstTy, in executeFPExtInst()
989 GenericValue Interpreter::executeFPToUIInst(Value *SrcVal, Type *DstTy, in executeFPToUIInst()
1003 GenericValue Interpreter::executeFPToSIInst(Value *SrcVal, Type *DstTy, in executeFPToSIInst()
1017 GenericValue Interpreter::executeUIToFPInst(Value *SrcVal, Type *DstTy, in executeUIToFPInst()
1029 GenericValue Interpreter::executeSIToFPInst(Value *SrcVal, Type *DstTy, in executeSIToFPInst()
1042 GenericValue Interpreter::executePtrToIntInst(Value *SrcVal, Type *DstTy, in executePtrToIntInst()
1052 GenericValue Interpreter::executeIntToPtrInst(Value *SrcVal, Type *DstTy, in executeIntToPtrInst()
1065 GenericValue Interpreter::executeBitCastInst(Value *SrcVal, Type *DstTy, in executeBitCastInst()
1098 void Interpreter::visitTruncInst(TruncInst &I) { in visitTruncInst()
1103 void Interpreter::visitSExtInst(SExtInst &I) { in visitSExtInst()
1108 void Interpreter::visitZExtInst(ZExtInst &I) { in visitZExtInst()
1113 void Interpreter::visitFPTruncInst(FPTruncInst &I) { in visitFPTruncInst()
1118 void Interpreter::visitFPExtInst(FPExtInst &I) { in visitFPExtInst()
1123 void Interpreter::visitUIToFPInst(UIToFPInst &I) { in visitUIToFPInst()
1128 void Interpreter::visitSIToFPInst(SIToFPInst &I) { in visitSIToFPInst()
1133 void Interpreter::visitFPToUIInst(FPToUIInst &I) { in visitFPToUIInst()
1138 void Interpreter::visitFPToSIInst(FPToSIInst &I) { in visitFPToSIInst()
1143 void Interpreter::visitPtrToIntInst(PtrToIntInst &I) { in visitPtrToIntInst()
1148 void Interpreter::visitIntToPtrInst(IntToPtrInst &I) { in visitIntToPtrInst()
1153 void Interpreter::visitBitCastInst(BitCastInst &I) { in visitBitCastInst()
1161 void Interpreter::visitVAArgInst(VAArgInst &I) { in visitVAArgInst()
1190 GenericValue Interpreter::getConstantExprValue (ConstantExpr *CE, in getConstantExprValue()
1272 GenericValue Interpreter::getOperandValue(Value *V, ExecutionContext &SF) { in getOperandValue()
1291 void Interpreter::callFunction(Function *F, in callFunction()
1329 void Interpreter::run() { in run()