The simplest approach to instruction selection is known as
macro expansion or
interpretative code generation. A macro-expanding instruction selector operates by matching
templates over the middle-level IR. Upon a match the corresponding
macro is executed, using the matched portion of the IR as input, which emits the appropriate target instructions. Macro expansion can be done either directly on the textual representation of the middle-level IR, or the IR can first be transformed into a graphical representation which is then traversed depth-first. In the latter, a template matches one or more adjacent nodes in the graph. Unless the target machine is very simple, macro expansion in isolation typically generates inefficient code. To mitigate this limitation, compilers that apply this approach typically combine it with
peephole optimization to replace combinations of simple instructions with more complex equivalents that increase performance and reduce code size. This is known as the
Davidson-Fraser approach and is currently applied in
GCC. == Graph covering ==