Using and Porting GNU CC - Insn Canonicalizations

Node: Insn Canonicalizations Next: Peephole Definitions Prev: Jump Patterns Up: Machine Desc

Canonicalization of Instructions

There are often cases where multiple RTL expressions could represent an operation performed by a single machine instruction. This situation is most commonly encountered with logical, branch, and multiply-accumulate instructions. In such cases, the compiler attempts to convert these multiple RTL expressions into a single canonical form to reduce the number of insn patterns required.

In addition to algebraic simplifications, following canonicalizations are performed:


Next: Peephole Definitions Up: Machine Desc