Lines Matching refs:CompileOnDemandLayer
38 *CompileOnDemandLayer*.
40 The CompileOnDemandLayer class conforms to the layer interface described in
44 first time it is called. To do this, the CompileOnDemandLayer creates two small
63 chapter of this tutorial, but for now we'll trust the CompileOnDemandLayer to
65 CompileOnDemandLayer to the top of our stack and we'll get the benefits of
72 #include "llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h"
90 CompileOnDemandLayer<decltype(OptimizeLayer)> CODLayer;
95 First we need to include the CompileOnDemandLayer.h header, then add two new
96 members: a std::unique_ptr<JITCompileCallbackManager> and a CompileOnDemandLayer,
97 to our class. The CompileCallbackManager member is used by the CompileOnDemandLayer
129 Now we can construct our CompileOnDemandLayer. Following the pattern from
132 when a not-yet-compiled function is called, the CompileOnDemandLayer will call
135 function), but we could also request that the CompileOnDemandLayer compile other
142 CompileOnDemandLayer will call the indirect stub manager builder once for each