LLVM 19.0.0git
Functions | Variables
ExternalFunctions.cpp File Reference
#include "Interpreter.h"
#include "llvm/ADT/APInt.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/Config/config.h"
#include "llvm/ExecutionEngine/GenericValue.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/Type.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/DynamicLibrary.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/Mutex.h"
#include "llvm/Support/raw_ostream.h"
#include <cassert>
#include <cmath>
#include <csignal>
#include <cstdint>
#include <cstdio>
#include <cstring>
#include <map>
#include <mutex>
#include <string>
#include <utility>
#include <vector>

Go to the source code of this file.

Functions

static char getTypeID (Type *Ty)
 
static ExFunc lookupFunction (const Function *F)
 
static GenericValue lle_X_atexit (FunctionType *FT, ArrayRef< GenericValue > Args)
 
static GenericValue lle_X_exit (FunctionType *FT, ArrayRef< GenericValue > Args)
 
static GenericValue lle_X_abort (FunctionType *FT, ArrayRef< GenericValue > Args)
 
static GenericValue lle_X_sprintf (FunctionType *FT, ArrayRef< GenericValue > Args)
 
static GenericValue lle_X_printf (FunctionType *FT, ArrayRef< GenericValue > Args)
 
static GenericValue lle_X_sscanf (FunctionType *FT, ArrayRef< GenericValue > args)
 
static GenericValue lle_X_scanf (FunctionType *FT, ArrayRef< GenericValue > args)
 
static GenericValue lle_X_fprintf (FunctionType *FT, ArrayRef< GenericValue > Args)
 
static GenericValue lle_X_memset (FunctionType *FT, ArrayRef< GenericValue > Args)
 
static GenericValue lle_X_memcpy (FunctionType *FT, ArrayRef< GenericValue > Args)
 

Variables

static InterpreterTheInterpreter
 

Function Documentation

◆ getTypeID()

static char getTypeID ( Type Ty)
static

◆ lle_X_abort()

static GenericValue lle_X_abort ( FunctionType FT,
ArrayRef< GenericValue Args 
)
static

Definition at line 340 of file ExternalFunctions.cpp.

◆ lle_X_atexit()

static GenericValue lle_X_atexit ( FunctionType FT,
ArrayRef< GenericValue Args 
)
static

◆ lle_X_exit()

static GenericValue lle_X_exit ( FunctionType FT,
ArrayRef< GenericValue Args 
)
static

Definition at line 334 of file ExternalFunctions.cpp.

References llvm::Interpreter::exitCalled(), and TheInterpreter.

◆ lle_X_fprintf()

static GenericValue lle_X_fprintf ( FunctionType FT,
ArrayRef< GenericValue Args 
)
static

Definition at line 482 of file ExternalFunctions.cpp.

References assert(), llvm::GVTOP(), lle_X_sprintf(), and llvm::PTOGV().

◆ lle_X_memcpy()

static GenericValue lle_X_memcpy ( FunctionType FT,
ArrayRef< GenericValue Args 
)
static

Definition at line 507 of file ExternalFunctions.cpp.

References llvm::GVTOP(), and llvm::GenericValue::IntVal.

◆ lle_X_memset()

static GenericValue lle_X_memset ( FunctionType FT,
ArrayRef< GenericValue Args 
)
static

Definition at line 495 of file ExternalFunctions.cpp.

References llvm::GVTOP(), and llvm::GenericValue::IntVal.

◆ lle_X_printf()

static GenericValue lle_X_printf ( FunctionType FT,
ArrayRef< GenericValue Args 
)
static

◆ lle_X_scanf()

static GenericValue lle_X_scanf ( FunctionType FT,
ArrayRef< GenericValue args 
)
static

Definition at line 467 of file ExternalFunctions.cpp.

References args, assert(), llvm::GVTOP(), and llvm::GenericValue::IntVal.

◆ lle_X_sprintf()

static GenericValue lle_X_sprintf ( FunctionType FT,
ArrayRef< GenericValue Args 
)
static

◆ lle_X_sscanf()

static GenericValue lle_X_sscanf ( FunctionType FT,
ArrayRef< GenericValue args 
)
static

Definition at line 452 of file ExternalFunctions.cpp.

References args, assert(), llvm::GVTOP(), and llvm::GenericValue::IntVal.

◆ lookupFunction()

static ExFunc lookupFunction ( const Function F)
static

Variable Documentation

◆ TheInterpreter

Interpreter* TheInterpreter
static