LLVM 19.0.0git
Public Member Functions | Static Public Member Functions | List of all members
llvm::Interpreter Class Reference

#include "ExecutionEngine/Interpreter/Interpreter.h"

Inheritance diagram for llvm::Interpreter:
Inheritance graph
[legend]

Public Member Functions

 Interpreter (std::unique_ptr< Module > M)
 
 ~Interpreter () override
 
void runAtExitHandlers ()
 runAtExitHandlers - Run any functions registered by the program's calls to atexit(3), which we intercept and store in AtExitHandlers.
 
GenericValue runFunction (Function *F, ArrayRef< GenericValue > ArgValues) override
 run - Start execution with the specified function and arguments.
 
void * getPointerToNamedFunction (StringRef Name, bool AbortOnFailure=true) override
 getPointerToNamedFunction - This method returns the address of the specified function by using the dlsym function call.
 
void callFunction (Function *F, ArrayRef< GenericValue > ArgVals)
 
void run ()
 
void visitReturnInst (ReturnInst &I)
 
void visitBranchInst (BranchInst &I)
 
void visitSwitchInst (SwitchInst &I)
 
void visitIndirectBrInst (IndirectBrInst &I)
 
void visitUnaryOperator (UnaryOperator &I)
 
void visitBinaryOperator (BinaryOperator &I)
 
void visitICmpInst (ICmpInst &I)
 
void visitFCmpInst (FCmpInst &I)
 
void visitAllocaInst (AllocaInst &I)
 
void visitLoadInst (LoadInst &I)
 
void visitStoreInst (StoreInst &I)
 
void visitGetElementPtrInst (GetElementPtrInst &I)
 
void visitPHINode (PHINode &PN)
 
void visitTruncInst (TruncInst &I)
 
void visitZExtInst (ZExtInst &I)
 
void visitSExtInst (SExtInst &I)
 
void visitFPTruncInst (FPTruncInst &I)
 
void visitFPExtInst (FPExtInst &I)
 
void visitUIToFPInst (UIToFPInst &I)
 
void visitSIToFPInst (SIToFPInst &I)
 
void visitFPToUIInst (FPToUIInst &I)
 
void visitFPToSIInst (FPToSIInst &I)
 
void visitPtrToIntInst (PtrToIntInst &I)
 
void visitIntToPtrInst (IntToPtrInst &I)
 
void visitBitCastInst (BitCastInst &I)
 
void visitSelectInst (SelectInst &I)
 
void visitVAStartInst (VAStartInst &I)
 
void visitVAEndInst (VAEndInst &I)
 
void visitVACopyInst (VACopyInst &I)
 
void visitIntrinsicInst (IntrinsicInst &I)
 
void visitCallBase (CallBase &I)
 
void visitUnreachableInst (UnreachableInst &I)
 
void visitShl (BinaryOperator &I)
 
void visitLShr (BinaryOperator &I)
 
void visitAShr (BinaryOperator &I)
 
void visitVAArgInst (VAArgInst &I)
 
void visitExtractElementInst (ExtractElementInst &I)
 
void visitInsertElementInst (InsertElementInst &I)
 
void visitShuffleVectorInst (ShuffleVectorInst &I)
 
void visitExtractValueInst (ExtractValueInst &I)
 
void visitInsertValueInst (InsertValueInst &I)
 
void visitInstruction (Instruction &I)
 
GenericValue callExternalFunction (Function *F, ArrayRef< GenericValue > ArgVals)
 
void exitCalled (GenericValue GV)
 
void addAtExitHandler (Function *F)
 
GenericValuegetFirstVarArg ()
 
- Public Member Functions inherited from llvm::ExecutionEngine
virtual ~ExecutionEngine ()
 
virtual void addModule (std::unique_ptr< Module > M)
 Add a Module to the list of modules that we can JIT from.
 
virtual void addObjectFile (std::unique_ptr< object::ObjectFile > O)
 addObjectFile - Add an ObjectFile to the execution engine.
 
virtual void addObjectFile (object::OwningBinary< object::ObjectFile > O)
 
virtual void addArchive (object::OwningBinary< object::Archive > A)
 addArchive - Add an Archive to the execution engine.
 
const DataLayoutgetDataLayout () const
 
virtual bool removeModule (Module *M)
 removeModule - Removes a Module from the list of modules, but does not free the module's memory.
 
virtual FunctionFindFunctionNamed (StringRef FnName)
 FindFunctionNamed - Search all of the active modules to find the function that defines FnName.
 
virtual GlobalVariableFindGlobalVariableNamed (StringRef Name, bool AllowInternal=false)
 FindGlobalVariableNamed - Search all of the active modules to find the global variable that defines Name.
 
virtual GenericValue runFunction (Function *F, ArrayRef< GenericValue > ArgValues)=0
 runFunction - Execute the specified function with the specified arguments, and return the result.
 
virtual void * getPointerToNamedFunction (StringRef Name, bool AbortOnFailure=true)=0
 getPointerToNamedFunction - This method returns the address of the specified function by using the dlsym function call.
 
virtual void mapSectionAddress (const void *LocalAddress, uint64_t TargetAddress)
 mapSectionAddress - map a section to its target address space value.
 
virtual void generateCodeForModule (Module *M)
 generateCodeForModule - Run code generation for the specified module and load it into memory.
 
virtual void finalizeObject ()
 finalizeObject - ensure the module is fully processed and is usable.
 
bool hasError () const
 Returns true if an error has been recorded.
 
void clearErrorMessage ()
 Clear the error message.
 
const std::string & getErrorMessage () const
 Returns the most recent error message.
 
virtual void runStaticConstructorsDestructors (bool isDtors)
 runStaticConstructorsDestructors - This method is used to execute all of the static constructors or destructors for a program.
 
void runStaticConstructorsDestructors (Module &module, bool isDtors)
 This method is used to execute all of the static constructors or destructors for a particular module.
 
int runFunctionAsMain (Function *Fn, const std::vector< std::string > &argv, const char *const *envp)
 runFunctionAsMain - This is a helper function which wraps runFunction to handle the common task of starting up main with the specified argc, argv, and envp parameters.
 
void addGlobalMapping (const GlobalValue *GV, void *Addr)
 addGlobalMapping - Tell the execution engine that the specified global is at the specified location.
 
void addGlobalMapping (StringRef Name, uint64_t Addr)
 
void clearAllGlobalMappings ()
 clearAllGlobalMappings - Clear all global mappings and start over again, for use in dynamic compilation scenarios to move globals.
 
void clearGlobalMappingsFromModule (Module *M)
 clearGlobalMappingsFromModule - Clear all global mappings that came from a particular module, because it has been removed from the JIT.
 
uint64_t updateGlobalMapping (const GlobalValue *GV, void *Addr)
 updateGlobalMapping - Replace an existing mapping for GV with a new address.
 
uint64_t updateGlobalMapping (StringRef Name, uint64_t Addr)
 
uint64_t getAddressToGlobalIfAvailable (StringRef S)
 getAddressToGlobalIfAvailable - This returns the address of the specified global symbol.
 
void * getPointerToGlobalIfAvailable (StringRef S)
 getPointerToGlobalIfAvailable - This returns the address of the specified global value if it is has already been codegen'd, otherwise it returns null.
 
void * getPointerToGlobalIfAvailable (const GlobalValue *GV)
 
void * getPointerToGlobal (const GlobalValue *GV)
 getPointerToGlobal - This returns the address of the specified global value.
 
virtual void * getPointerToFunction (Function *F)=0
 getPointerToFunction - The different EE's represent function bodies in different ways.
 
virtual void * getPointerToFunctionOrStub (Function *F)
 getPointerToFunctionOrStub - If the specified function has been code-gen'd, return a pointer to the function.
 
virtual uint64_t getGlobalValueAddress (const std::string &Name)
 getGlobalValueAddress - Return the address of the specified global value.
 
virtual uint64_t getFunctionAddress (const std::string &Name)
 getFunctionAddress - Return the address of the specified function.
 
const GlobalValuegetGlobalValueAtAddress (void *Addr)
 getGlobalValueAtAddress - Return the LLVM global value object that starts at the specified address.
 
void StoreValueToMemory (const GenericValue &Val, GenericValue *Ptr, Type *Ty)
 StoreValueToMemory - Stores the data in Val of type Ty at address Ptr.
 
void InitializeMemory (const Constant *Init, void *Addr)
 
virtual void * getOrEmitGlobalVariable (const GlobalVariable *GV)
 getOrEmitGlobalVariable - Return the address of the specified global variable, possibly emitting it to memory if needed.
 
virtual void RegisterJITEventListener (JITEventListener *)
 Registers a listener to be called back on various events within the JIT.
 
virtual void UnregisterJITEventListener (JITEventListener *)
 
virtual void setObjectCache (ObjectCache *)
 Sets the pre-compiled object cache.
 
virtual void setProcessAllSections (bool ProcessAllSections)
 setProcessAllSections (MCJIT Only): By default, only sections that are "required for execution" are passed to the RTDyldMemoryManager, and other sections are discarded.
 
virtual TargetMachinegetTargetMachine ()
 Return the target machine (if available).
 
void DisableLazyCompilation (bool Disabled=true)
 DisableLazyCompilation - When lazy compilation is off (the default), the JIT will eagerly compile every function reachable from the argument to getPointerToFunction.
 
bool isCompilingLazily () const
 
void DisableGVCompilation (bool Disabled=true)
 DisableGVCompilation - If called, the JIT will abort if it's asked to allocate space and populate a GlobalVariable that is not internal to the module.
 
bool isGVCompilationDisabled () const
 
void DisableSymbolSearching (bool Disabled=true)
 DisableSymbolSearching - If called, the JIT will not try to lookup unknown symbols with dlsym.
 
bool isSymbolSearchingDisabled () const
 
void setVerifyModules (bool Verify)
 Enable/Disable IR module verification.
 
bool getVerifyModules () const
 
void InstallLazyFunctionCreator (FunctionCreator C)
 InstallLazyFunctionCreator - If an unknown function is needed, the specified function pointer is invoked to create it.
 
- Public Member Functions inherited from llvm::InstVisitor< Interpreter >
void visit (Iterator Start, Iterator End)
 
void visit (Module &M)
 
void visit (Function &F)
 
void visit (BasicBlock &BB)
 
void visit (Module *M)
 
void visit (Function *F)
 
void visit (BasicBlock *BB)
 
void visit (Instruction *I)
 
void visit (Instruction &I)
 
void visitModule (Module &M)
 
void visitFunction (Function &F)
 
void visitBasicBlock (BasicBlock &BB)
 
void visitICmpInst (ICmpInst &I)
 
void visitFCmpInst (FCmpInst &I)
 
void visitAllocaInst (AllocaInst &I)
 
void visitLoadInst (LoadInst &I)
 
void visitStoreInst (StoreInst &I)
 
void visitAtomicCmpXchgInst (AtomicCmpXchgInst &I)
 
void visitAtomicRMWInst (AtomicRMWInst &I)
 
void visitFenceInst (FenceInst &I)
 
void visitGetElementPtrInst (GetElementPtrInst &I)
 
void visitPHINode (PHINode &I)
 
void visitTruncInst (TruncInst &I)
 
void visitZExtInst (ZExtInst &I)
 
void visitSExtInst (SExtInst &I)
 
void visitFPTruncInst (FPTruncInst &I)
 
void visitFPExtInst (FPExtInst &I)
 
void visitFPToUIInst (FPToUIInst &I)
 
void visitFPToSIInst (FPToSIInst &I)
 
void visitUIToFPInst (UIToFPInst &I)
 
void visitSIToFPInst (SIToFPInst &I)
 
void visitPtrToIntInst (PtrToIntInst &I)
 
void visitIntToPtrInst (IntToPtrInst &I)
 
void visitBitCastInst (BitCastInst &I)
 
void visitAddrSpaceCastInst (AddrSpaceCastInst &I)
 
void visitSelectInst (SelectInst &I)
 
void visitVAArgInst (VAArgInst &I)
 
void visitExtractElementInst (ExtractElementInst &I)
 
void visitInsertElementInst (InsertElementInst &I)
 
void visitShuffleVectorInst (ShuffleVectorInst &I)
 
void visitExtractValueInst (ExtractValueInst &I)
 
void visitInsertValueInst (InsertValueInst &I)
 
void visitLandingPadInst (LandingPadInst &I)
 
void visitFuncletPadInst (FuncletPadInst &I)
 
void visitCleanupPadInst (CleanupPadInst &I)
 
void visitCatchPadInst (CatchPadInst &I)
 
void visitFreezeInst (FreezeInst &I)
 
void visitDbgDeclareInst (DbgDeclareInst &I)
 
void visitDbgValueInst (DbgValueInst &I)
 
void visitDbgVariableIntrinsic (DbgVariableIntrinsic &I)
 
void visitDbgLabelInst (DbgLabelInst &I)
 
void visitDbgInfoIntrinsic (DbgInfoIntrinsic &I)
 
void visitMemSetInst (MemSetInst &I)
 
void visitMemSetInlineInst (MemSetInlineInst &I)
 
void visitMemCpyInst (MemCpyInst &I)
 
void visitMemCpyInlineInst (MemCpyInlineInst &I)
 
void visitMemMoveInst (MemMoveInst &I)
 
void visitMemTransferInst (MemTransferInst &I)
 
void visitMemIntrinsic (MemIntrinsic &I)
 
void visitVAStartInst (VAStartInst &I)
 
void visitVAEndInst (VAEndInst &I)
 
void visitVACopyInst (VACopyInst &I)
 
void visitIntrinsicInst (IntrinsicInst &I)
 
void visitCallInst (CallInst &I)
 
void visitInvokeInst (InvokeInst &I)
 
void visitCallBrInst (CallBrInst &I)
 
void visitReturnInst (ReturnInst &I)
 
void visitBranchInst (BranchInst &I)
 
void visitSwitchInst (SwitchInst &I)
 
void visitIndirectBrInst (IndirectBrInst &I)
 
void visitResumeInst (ResumeInst &I)
 
void visitUnreachableInst (UnreachableInst &I)
 
void visitCleanupReturnInst (CleanupReturnInst &I)
 
void visitCatchReturnInst (CatchReturnInst &I)
 
void visitCatchSwitchInst (CatchSwitchInst &I)
 
void visitTerminator (Instruction &I)
 
void visitCastInst (CastInst &I)
 
void visitUnaryOperator (UnaryOperator &I)
 
void visitBinaryOperator (BinaryOperator &I)
 
void visitCmpInst (CmpInst &I)
 
void visitUnaryInstruction (UnaryInstruction &I)
 
void visitCallBase (CallBase &I)
 
void visitInstruction (Instruction &I)
 

Static Public Member Functions

static void Register ()
 
static ExecutionEnginecreate (std::unique_ptr< Module > M, std::string *ErrorStr=nullptr)
 Create an interpreter ExecutionEngine.
 

Additional Inherited Members

- Public Attributes inherited from llvm::ExecutionEngine
sys::Mutex lock
 lock - This lock protects the ExecutionEngine and MCJIT classes.
 
- Protected Member Functions inherited from llvm::ExecutionEngine
virtual chargetMemoryForGV (const GlobalVariable *GV)
 getMemoryforGV - Allocate memory for a global variable.
 
std::string getMangledName (const GlobalValue *GV)
 getMangledName - Get mangled name.
 
 ExecutionEngine (DataLayout DL)
 
 ExecutionEngine (DataLayout DL, std::unique_ptr< Module > M)
 
 ExecutionEngine (std::unique_ptr< Module > M)
 
void emitGlobals ()
 EmitGlobals - Emit all of the global variables to memory, storing their addresses into GlobalAddress.
 
void emitGlobalVariable (const GlobalVariable *GV)
 
GenericValue getConstantValue (const Constant *C)
 Converts a Constant* into a GenericValue, including handling of ConstantExpr values.
 
void LoadValueFromMemory (GenericValue &Result, GenericValue *Ptr, Type *Ty)
 FIXME: document.
 
- Protected Attributes inherited from llvm::ExecutionEngine
SmallVector< std::unique_ptr< Module >, 1 > Modules
 The list of Modules that we are JIT'ing from.
 
FunctionCreator LazyFunctionCreator
 LazyFunctionCreator - If an unknown function is needed, this function pointer is invoked to create it.
 
std::string ErrMsg
 
- Static Protected Attributes inherited from llvm::ExecutionEngine
static ExecutionEngine *(* MCJITCtor )(std::unique_ptr< Module > M, std::string *ErrorStr, std::shared_ptr< MCJITMemoryManager > MM, std::shared_ptr< LegacyJITSymbolResolver > SR, std::unique_ptr< TargetMachine > TM) = nullptr
 
static ExecutionEngine *(* InterpCtor )(std::unique_ptr< Module > M, std::string *ErrorStr) =nullptr
 

Detailed Description

Definition at line 74 of file Interpreter.h.

Constructor & Destructor Documentation

◆ Interpreter()

Interpreter::Interpreter ( std::unique_ptr< Module M)
explicit

◆ ~Interpreter()

Interpreter::~Interpreter ( )
override

Definition at line 66 of file Interpreter.cpp.

Member Function Documentation

◆ addAtExitHandler()

void llvm::Interpreter::addAtExitHandler ( Function F)
inline

Definition at line 179 of file Interpreter.h.

References F.

Referenced by lle_X_atexit().

◆ callExternalFunction()

GenericValue Interpreter::callExternalFunction ( Function F,
ArrayRef< GenericValue ArgVals 
)

◆ callFunction()

void Interpreter::callFunction ( Function F,
ArrayRef< GenericValue ArgVals 
)

◆ create()

ExecutionEngine * Interpreter::create ( std::unique_ptr< Module M,
std::string *  ErrorStr = nullptr 
)
static

Create an interpreter ExecutionEngine.

Create a new interpreter object.

Definition at line 34 of file Interpreter.cpp.

References llvm::handleAllErrors(), and llvm::ErrorInfoBase::message().

Referenced by Register().

◆ exitCalled()

void Interpreter::exitCalled ( GenericValue  GV)

◆ getFirstVarArg()

GenericValue * llvm::Interpreter::getFirstVarArg ( )
inline

Definition at line 183 of file Interpreter.h.

◆ getPointerToNamedFunction()

void * llvm::Interpreter::getPointerToNamedFunction ( StringRef  Name,
bool  AbortOnFailure = true 
)
inlineoverridevirtual

getPointerToNamedFunction - This method returns the address of the specified function by using the dlsym function call.

As such it is only useful for resolving library symbols, not code generated symbols.

If AbortOnFailure is false and no function with the given name is found, this function silently returns a null pointer. Otherwise, it prints a message to stderr and aborts.

This function is deprecated for the MCJIT execution engine.

Implements llvm::ExecutionEngine.

Definition at line 109 of file Interpreter.h.

◆ Register()

static void llvm::Interpreter::Register ( )
inlinestatic

Definition at line 95 of file Interpreter.h.

References create(), and llvm::ExecutionEngine::InterpCtor.

◆ run()

void Interpreter::run ( )

◆ runAtExitHandlers()

void Interpreter::runAtExitHandlers ( )

runAtExitHandlers - Run any functions registered by the program's calls to atexit(3), which we intercept and store in AtExitHandlers.

Definition at line 70 of file Interpreter.cpp.

References callFunction(), and run().

Referenced by exitCalled().

◆ runFunction()

GenericValue Interpreter::runFunction ( Function F,
ArrayRef< GenericValue ArgValues 
)
overridevirtual

run - Start execution with the specified function and arguments.

Implements llvm::ExecutionEngine.

Definition at line 80 of file Interpreter.cpp.

References assert(), callFunction(), F, run(), llvm::ArrayRef< T >::size(), and llvm::ArrayRef< T >::slice().

◆ visitAllocaInst()

void Interpreter::visitAllocaInst ( AllocaInst I)

◆ visitAShr()

void Interpreter::visitAShr ( BinaryOperator I)

◆ visitBinaryOperator()

void Interpreter::visitBinaryOperator ( BinaryOperator I)

◆ visitBitCastInst()

void Interpreter::visitBitCastInst ( BitCastInst I)

Definition at line 1757 of file Execution.cpp.

References I, and SetValue().

◆ visitBranchInst()

void Interpreter::visitBranchInst ( BranchInst I)

Definition at line 936 of file Execution.cpp.

References Cond, and I.

◆ visitCallBase()

void Interpreter::visitCallBase ( CallBase I)

◆ visitExtractElementInst()

void Interpreter::visitExtractElementInst ( ExtractElementInst I)

◆ visitExtractValueInst()

void Interpreter::visitExtractValueInst ( ExtractValueInst I)

◆ visitFCmpInst()

void Interpreter::visitFCmpInst ( FCmpInst I)

◆ visitFPExtInst()

void Interpreter::visitFPExtInst ( FPExtInst I)

Definition at line 1722 of file Execution.cpp.

References I, and SetValue().

◆ visitFPToSIInst()

void Interpreter::visitFPToSIInst ( FPToSIInst I)

Definition at line 1742 of file Execution.cpp.

References I, and SetValue().

◆ visitFPToUIInst()

void Interpreter::visitFPToUIInst ( FPToUIInst I)

Definition at line 1737 of file Execution.cpp.

References I, and SetValue().

◆ visitFPTruncInst()

void Interpreter::visitFPTruncInst ( FPTruncInst I)

Definition at line 1717 of file Execution.cpp.

References I, and SetValue().

◆ visitGetElementPtrInst()

void Interpreter::visitGetElementPtrInst ( GetElementPtrInst I)

Definition at line 1087 of file Execution.cpp.

References llvm::gep_type_begin(), llvm::gep_type_end(), I, and SetValue().

◆ visitICmpInst()

void Interpreter::visitICmpInst ( ICmpInst I)

◆ visitIndirectBrInst()

void Interpreter::visitIndirectBrInst ( IndirectBrInst I)

Definition at line 968 of file Execution.cpp.

References llvm::GVTOP(), and I.

◆ visitInsertElementInst()

void Interpreter::visitInsertElementInst ( InsertElementInst I)

◆ visitInsertValueInst()

void Interpreter::visitInsertValueInst ( InsertValueInst I)

◆ visitInstruction()

void llvm::Interpreter::visitInstruction ( Instruction I)
inline

Definition at line 170 of file Interpreter.h.

References llvm::errs(), I, and llvm_unreachable.

◆ visitIntrinsicInst()

void Interpreter::visitIntrinsicInst ( IntrinsicInst I)

◆ visitIntToPtrInst()

void Interpreter::visitIntToPtrInst ( IntToPtrInst I)

Definition at line 1752 of file Execution.cpp.

References I, and SetValue().

◆ visitLoadInst()

void Interpreter::visitLoadInst ( LoadInst I)

◆ visitLShr()

void Interpreter::visitLShr ( BinaryOperator I)

◆ visitPHINode()

void llvm::Interpreter::visitPHINode ( PHINode PN)
inline

Definition at line 134 of file Interpreter.h.

References llvm_unreachable.

◆ visitPtrToIntInst()

void Interpreter::visitPtrToIntInst ( PtrToIntInst I)

Definition at line 1747 of file Execution.cpp.

References I, and SetValue().

◆ visitReturnInst()

void Interpreter::visitReturnInst ( ReturnInst I)

Definition at line 918 of file Execution.cpp.

References llvm::Type::getVoidTy(), I, and RetTy.

◆ visitSelectInst()

void Interpreter::visitSelectInst ( SelectInst I)

Definition at line 861 of file Execution.cpp.

References executeSelectInst(), I, and SetValue().

◆ visitSExtInst()

void Interpreter::visitSExtInst ( SExtInst I)

Definition at line 1707 of file Execution.cpp.

References I, and SetValue().

◆ visitShl()

void Interpreter::visitShl ( BinaryOperator I)

◆ visitShuffleVectorInst()

void Interpreter::visitShuffleVectorInst ( ShuffleVectorInst I)

◆ visitSIToFPInst()

void Interpreter::visitSIToFPInst ( SIToFPInst I)

Definition at line 1732 of file Execution.cpp.

References I, and SetValue().

◆ visitStoreInst()

void Interpreter::visitStoreInst ( StoreInst I)

◆ visitSwitchInst()

void Interpreter::visitSwitchInst ( SwitchInst I)

Definition at line 949 of file Execution.cpp.

References Cond, executeICMP_EQ(), and I.

◆ visitTruncInst()

void Interpreter::visitTruncInst ( TruncInst I)

Definition at line 1702 of file Execution.cpp.

References I, and SetValue().

◆ visitUIToFPInst()

void Interpreter::visitUIToFPInst ( UIToFPInst I)

Definition at line 1727 of file Execution.cpp.

References I, and SetValue().

◆ visitUnaryOperator()

void Interpreter::visitUnaryOperator ( UnaryOperator I)

Definition at line 62 of file Execution.cpp.

References executeFNegInst(), I, llvm::Type::isVectorTy(), llvm_unreachable, and SetValue().

◆ visitUnreachableInst()

void Interpreter::visitUnreachableInst ( UnreachableInst I)

Definition at line 932 of file Execution.cpp.

References llvm::report_fatal_error().

◆ visitVAArgInst()

void Interpreter::visitVAArgInst ( VAArgInst I)

◆ visitVACopyInst()

void Interpreter::visitVACopyInst ( VACopyInst I)

Definition at line 1130 of file Execution.cpp.

References I, and SetValue().

◆ visitVAEndInst()

void Interpreter::visitVAEndInst ( VAEndInst I)

Definition at line 1126 of file Execution.cpp.

◆ visitVAStartInst()

void Interpreter::visitVAStartInst ( VAStartInst I)

◆ visitZExtInst()

void Interpreter::visitZExtInst ( ZExtInst I)

Definition at line 1712 of file Execution.cpp.

References I, and SetValue().


The documentation for this class was generated from the following files: