public class org.graalvm.compiler.phases.common.FixReadsPhase$RawCEPhase extends org.graalvm.compiler.phases.BasePhase<org.graalvm.compiler.phases.tiers.LowTierContext>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.graalvm.compiler.phases.common.FixReadsPhase$RawCEPhase
  super_class: org.graalvm.compiler.phases.BasePhase
{
  private final boolean replaceInputsWithConstants;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.phases.common.FixReadsPhase$RawCEPhase this
        start local 1 // boolean replaceInputsWithConstants
         0: .line 642
            aload 0 /* this */
            invokespecial org.graalvm.compiler.phases.BasePhase.<init>:()V
         1: .line 643
            aload 0 /* this */
            iload 1 /* replaceInputsWithConstants */
            putfield org.graalvm.compiler.phases.common.FixReadsPhase$RawCEPhase.replaceInputsWithConstants:Z
         2: .line 644
            return
        end local 1 // boolean replaceInputsWithConstants
        end local 0 // org.graalvm.compiler.phases.common.FixReadsPhase$RawCEPhase this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    3     0                        this  Lorg/graalvm/compiler/phases/common/FixReadsPhase$RawCEPhase;
            0    3     1  replaceInputsWithConstants  Z
    MethodParameters:
                            Name  Flags
      replaceInputsWithConstants  

  protected java.lang.CharSequence getName();
    descriptor: ()Ljava/lang/CharSequence;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.phases.common.FixReadsPhase$RawCEPhase this
         0: .line 648
            ldc "RawCEPhase"
            areturn
        end local 0 // org.graalvm.compiler.phases.common.FixReadsPhase$RawCEPhase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/phases/common/FixReadsPhase$RawCEPhase;

  protected void run(org.graalvm.compiler.nodes.StructuredGraph, org.graalvm.compiler.phases.tiers.LowTierContext);
    descriptor: (Lorg/graalvm/compiler/nodes/StructuredGraph;Lorg/graalvm/compiler/phases/tiers/LowTierContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // org.graalvm.compiler.phases.common.FixReadsPhase$RawCEPhase this
        start local 1 // org.graalvm.compiler.nodes.StructuredGraph graph
        start local 2 // org.graalvm.compiler.phases.tiers.LowTierContext context
         0: .line 653
            getstatic org.graalvm.compiler.core.common.GraalOptions.RawConditionalElimination:Lorg/graalvm/compiler/options/OptionKey;
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getOptions:()Lorg/graalvm/compiler/options/OptionValues;
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 5
         1: .line 654
            new org.graalvm.compiler.phases.schedule.SchedulePhase
            dup
            getstatic org.graalvm.compiler.phases.schedule.SchedulePhase$SchedulingStrategy.LATEST:Lorg/graalvm/compiler/phases/schedule/SchedulePhase$SchedulingStrategy;
            iconst_1
            invokespecial org.graalvm.compiler.phases.schedule.SchedulePhase.<init>:(Lorg/graalvm/compiler/phases/schedule/SchedulePhase$SchedulingStrategy;Z)V
            astore 3 /* schedulePhase */
        start local 3 // org.graalvm.compiler.phases.schedule.SchedulePhase schedulePhase
         2: .line 655
            aload 3 /* schedulePhase */
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.phases.schedule.SchedulePhase.apply:(Lorg/graalvm/compiler/nodes/StructuredGraph;)V
         3: .line 656
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getLastSchedule:()Lorg/graalvm/compiler/nodes/StructuredGraph$ScheduleResult;
            astore 4 /* schedule */
        start local 4 // org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult schedule
         4: .line 657
            aload 4 /* schedule */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult.getCFG:()Lorg/graalvm/compiler/nodes/cfg/ControlFlowGraph;
            new org.graalvm.compiler.phases.common.FixReadsPhase$RawConditionalEliminationVisitor
            dup
            aload 1 /* graph */
            aload 4 /* schedule */
            aload 2 /* context */
            invokevirtual org.graalvm.compiler.phases.tiers.LowTierContext.getMetaAccess:()Ljdk/vm/ci/meta/MetaAccessProvider;
            aload 0 /* this */
            getfield org.graalvm.compiler.phases.common.FixReadsPhase$RawCEPhase.replaceInputsWithConstants:Z
            invokespecial org.graalvm.compiler.phases.common.FixReadsPhase$RawConditionalEliminationVisitor.<init>:(Lorg/graalvm/compiler/nodes/StructuredGraph;Lorg/graalvm/compiler/nodes/StructuredGraph$ScheduleResult;Ljdk/vm/ci/meta/MetaAccessProvider;Z)V
            iconst_0
            invokevirtual org.graalvm.compiler.nodes.cfg.ControlFlowGraph.visitDominatorTree:(Lorg/graalvm/compiler/nodes/cfg/ControlFlowGraph$RecursiveVisitor;Z)V
        end local 4 // org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult schedule
        end local 3 // org.graalvm.compiler.phases.schedule.SchedulePhase schedulePhase
         5: .line 659
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.graalvm.compiler.phases.tiers.LowTierContext context
        end local 1 // org.graalvm.compiler.nodes.StructuredGraph graph
        end local 0 // org.graalvm.compiler.phases.common.FixReadsPhase$RawCEPhase this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lorg/graalvm/compiler/phases/common/FixReadsPhase$RawCEPhase;
            0    6     1          graph  Lorg/graalvm/compiler/nodes/StructuredGraph;
            0    6     2        context  Lorg/graalvm/compiler/phases/tiers/LowTierContext;
            2    5     3  schedulePhase  Lorg/graalvm/compiler/phases/schedule/SchedulePhase;
            4    5     4       schedule  Lorg/graalvm/compiler/nodes/StructuredGraph$ScheduleResult;
    MethodParameters:
         Name  Flags
      graph    
      context  

  protected void run(org.graalvm.compiler.nodes.StructuredGraph, java.lang.Object);
    descriptor: (Lorg/graalvm/compiler/nodes/StructuredGraph;Ljava/lang/Object;)V
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast org.graalvm.compiler.phases.tiers.LowTierContext
            invokevirtual org.graalvm.compiler.phases.common.FixReadsPhase$RawCEPhase.run:(Lorg/graalvm/compiler/nodes/StructuredGraph;Lorg/graalvm/compiler/phases/tiers/LowTierContext;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lorg/graalvm/compiler/phases/BasePhase<Lorg/graalvm/compiler/phases/tiers/LowTierContext;>;
SourceFile: "FixReadsPhase.java"
NestHost: org.graalvm.compiler.phases.common.FixReadsPhase
InnerClasses:
  public ScheduleResult = org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult of org.graalvm.compiler.nodes.StructuredGraph
  public abstract RecursiveVisitor = org.graalvm.compiler.nodes.cfg.ControlFlowGraph$RecursiveVisitor of org.graalvm.compiler.nodes.cfg.ControlFlowGraph
  public RawCEPhase = org.graalvm.compiler.phases.common.FixReadsPhase$RawCEPhase of org.graalvm.compiler.phases.common.FixReadsPhase
  public RawConditionalEliminationVisitor = org.graalvm.compiler.phases.common.FixReadsPhase$RawConditionalEliminationVisitor of org.graalvm.compiler.phases.common.FixReadsPhase
  public final SchedulingStrategy = org.graalvm.compiler.phases.schedule.SchedulePhase$SchedulingStrategy of org.graalvm.compiler.phases.schedule.SchedulePhase