Lines Matching refs:layer
28 In this layer we'll learn more about the ORC layer concept by using a new layer,
53 constructor for this layer takes a reference to the execution session and the
54 layer below (as all layers do) plus an *IR optimization function* that it will
86 the ExecutionSession and output layer (standard practice for layers), along with
141 to see how layers compose. It also provides a neat entry point to the *layer*
196 layer through the transform function object, and (2) implementing the ORC
203 succeeds, passes the transformed module to the base layer. If the transform
226 These two operations, ``add`` and ``emit``, together constitute the layer
227 concept: A layer is a way to wrap a part of a compiler pipeline (in this case
232 to the layer's emit method when any symbol defined by that module is requested.
233 Each layer can complete its own work by calling the ``emit`` method of its base
234 layer. For example, in this tutorial our IRTransformLayer calls through to