class JITSymbolNotFound

Declaration

class JITSymbolNotFound : public ErrorInfo { /* full declaration omitted */ };

Description

Base class for user error types. Users should declare their error types like: class MyError : public ErrorInfo <MyError > { .... }; This class provides an implementation of the ErrorInfoBase::kind method, which is used by the Error RTTI system.

Declared at: llvm/include/llvm/ExecutionEngine/Orc/Shared/OrcError.h:59

Inherits from: ErrorInfo

Member Variables

private std::string SymbolName
public static char ID

Method Overview

Methods

JITSymbolNotFound(std::string SymbolName)

Declared at: llvm/include/llvm/ExecutionEngine/Orc/Shared/OrcError.h:63

Parameters

std::string SymbolName

std::error_code convertToErrorCode() const

Description

Convert this error to a std::error_code. This is a temporary crutch to enable interaction with code still using std::error_code. It will be removed in the future.

Declared at: llvm/include/llvm/ExecutionEngine/Orc/Shared/OrcError.h:64

const std::string& getSymbolName() const

Declared at: llvm/include/llvm/ExecutionEngine/Orc/Shared/OrcError.h:66

void log(llvm::raw_ostream& OS) const

Description

Print an error message to an output stream.

Declared at: llvm/include/llvm/ExecutionEngine/Orc/Shared/OrcError.h:65

Parameters

llvm::raw_ostream& OS