Home | History | Annotate | Download | only in ssa

Lines Matching defs:ssa

17 package com.android.dx.ssa;
20 * <h1>An introduction to SSA Form</h1>
22 * This package contains classes associated with dx's {@code SSA}
37 * <li> {@link SsaConverter} converts a Rop-form method to SSA form.
38 * <li> {@link SsaToRop} converts an SSA-form method back to Rop form.
47 * <li> {@link PhiInsn} instances represent "phi" operators defined in SSA
56 * parameter is represented by at most one SSA register.
70 * <h2>SSA Lifetime</h2>
71 * The representation of a method in SSA form obeys slightly different
73 * into or out of SSA form.
75 * <h3>Conversion into SSA Form</h3>
87 * necessary for the ultimate SSA representation.
99 * exist in SSA). Move instructions are eliminated except where necessary