1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

[docs][JITLink] Try explicit literal blocks for monospace list elements.

This commit is contained in:
Lang Hames 2021-02-24 21:47:20 +11:00
parent eeb1165ed0
commit bceb5d6608

View File

@ -57,11 +57,9 @@ ObjectLinkingLayer Plugins
The ``ObjectLinkingLayer::Plugin`` class provides the following methods: The ``ObjectLinkingLayer::Plugin`` class provides the following methods:
* :: * :literal:`virtual void modifyPassConfig(MaterializationResponsibility &MR,
const Triple &TT,
virtual void modifyPassConfig(MaterializationResponsibility &MR, jitlink::PassConfiguration &Config)`
const Triple &TT,
jitlink::PassConfiguration &Config)``
Called each time a LinkGraph is about to be linked. Override to install Called each time a LinkGraph is about to be linked. Override to install
custom JITLink *Passes* to run during the link process for this graph. custom JITLink *Passes* to run during the link process for this graph.
@ -87,10 +85,8 @@ The ``ObjectLinkingLayer::Plugin`` class provides the following methods:
``notifyTransferringResources`` should be implemented, or neither should be. ``notifyTransferringResources`` should be implemented, or neither should be.
Implementing one but not the other will lead to resource management bugs. Implementing one but not the other will lead to resource management bugs.
* :: * :literal:`virtual void notifyTransferringResources(ResourceKey DstKey,
ResourceKey SrcKey)`
virtual void notifyTransferringResources(ResourceKey DstKey,
ResourceKey SrcKey)
Called if/when a request is made to reassociate resources from *SrcKey* to Called if/when a request is made to reassociate resources from *SrcKey* to
*DstKey*. Override to update the plugin's resource tracking maps (if any). *DstKey*. Override to update the plugin's resource tracking maps (if any).