|
LLVM
4.0.0
|
Base class for managing collections of named indirect stubs. More...
#include <IndirectionUtils.h>
Public Types | |
| typedef StringMap< std::pair < JITTargetAddress, JITSymbolFlags > > | StubInitsMap |
| Map type for initializing the manager. See init. More... | |
Public Member Functions | |
| virtual | ~IndirectStubsManager ()=default |
| virtual Error | createStub (StringRef StubName, JITTargetAddress StubAddr, JITSymbolFlags StubFlags)=0 |
| Create a single stub with the given name, target address and flags. More... | |
| virtual Error | createStubs (const StubInitsMap &StubInits)=0 |
| Create StubInits.size() stubs with the given names, target addresses, and flags. More... | |
| virtual JITSymbol | findStub (StringRef Name, bool ExportedStubsOnly)=0 |
| Find the stub with the given name. More... | |
| virtual JITSymbol | findPointer (StringRef Name)=0 |
| Find the implementation-pointer for the stub. More... | |
| virtual Error | updatePointer (StringRef Name, JITTargetAddress NewAddr)=0 |
| Change the value of the implementation pointer for the stub. More... | |
Base class for managing collections of named indirect stubs.
Definition at line 220 of file IndirectionUtils.h.
| typedef StringMap<std::pair<JITTargetAddress, JITSymbolFlags> > llvm::orc::IndirectStubsManager::StubInitsMap |
Map type for initializing the manager. See init.
Definition at line 223 of file IndirectionUtils.h.
|
virtualdefault |
|
pure virtual |
Create a single stub with the given name, target address and flags.
Implemented in llvm::orc::remote::OrcRemoteTargetClient< ChannelT >::RCIndirectStubsManager, and llvm::orc::LocalIndirectStubsManager< TargetT >.
|
pure virtual |
Create StubInits.size() stubs with the given names, target addresses, and flags.
Implemented in llvm::orc::remote::OrcRemoteTargetClient< ChannelT >::RCIndirectStubsManager, and llvm::orc::LocalIndirectStubsManager< TargetT >.
Find the implementation-pointer for the stub.
Implemented in llvm::orc::remote::OrcRemoteTargetClient< ChannelT >::RCIndirectStubsManager, and llvm::orc::LocalIndirectStubsManager< TargetT >.
|
pure virtual |
Find the stub with the given name.
If ExportedStubsOnly is true, this will only return a result if the stub's flags indicate that it is exported.
Implemented in llvm::orc::remote::OrcRemoteTargetClient< ChannelT >::RCIndirectStubsManager, and llvm::orc::LocalIndirectStubsManager< TargetT >.
|
pure virtual |
Change the value of the implementation pointer for the stub.
Implemented in llvm::orc::remote::OrcRemoteTargetClient< ChannelT >::RCIndirectStubsManager, and llvm::orc::LocalIndirectStubsManager< TargetT >.
1.8.6