public abstract class com.oracle.truffle.js.builtins.math.AbsNode extends com.oracle.truffle.js.builtins.math.MathOperation
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.truffle.js.builtins.math.AbsNode
  super_class: com.oracle.truffle.js.builtins.math.MathOperation
{
  public void <init>(com.oracle.truffle.js.runtime.JSContext, com.oracle.truffle.js.nodes.function.JSBuiltin);
    descriptor: (Lcom/oracle/truffle/js/runtime/JSContext;Lcom/oracle/truffle/js/nodes/function/JSBuiltin;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.builtins.math.AbsNode this
        start local 1 // com.oracle.truffle.js.runtime.JSContext context
        start local 2 // com.oracle.truffle.js.nodes.function.JSBuiltin builtin
         0: .line 52
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* builtin */
            invokespecial com.oracle.truffle.js.builtins.math.MathOperation.<init>:(Lcom/oracle/truffle/js/runtime/JSContext;Lcom/oracle/truffle/js/nodes/function/JSBuiltin;)V
         1: .line 53
            return
        end local 2 // com.oracle.truffle.js.nodes.function.JSBuiltin builtin
        end local 1 // com.oracle.truffle.js.runtime.JSContext context
        end local 0 // com.oracle.truffle.js.builtins.math.AbsNode this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/oracle/truffle/js/builtins/math/AbsNode;
            0    2     1  context  Lcom/oracle/truffle/js/runtime/JSContext;
            0    2     2  builtin  Lcom/oracle/truffle/js/nodes/function/JSBuiltin;
    MethodParameters:
         Name  Flags
      context  
      builtin  

  protected static int absInt(int, com.oracle.truffle.api.profiles.ConditionProfile);
    descriptor: (ILcom/oracle/truffle/api/profiles/ConditionProfile;)I
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // int a
        start local 1 // com.oracle.truffle.api.profiles.ConditionProfile negative
         0: .line 57
            aload 1 /* negative */
            iload 0 /* a */
            ifge 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: com.oracle.truffle.api.profiles.ConditionProfile
         1: iconst_0
      StackMap locals: int com.oracle.truffle.api.profiles.ConditionProfile
      StackMap stack: com.oracle.truffle.api.profiles.ConditionProfile int
         2: invokevirtual com.oracle.truffle.api.profiles.ConditionProfile.profile:(Z)Z
            ifeq 3
            iconst_0
            iload 0 /* a */
            invokestatic java.lang.Math.subtractExact:(II)I
            goto 4
      StackMap locals:
      StackMap stack:
         3: iload 0 /* a */
      StackMap locals:
      StackMap stack: int
         4: ireturn
        end local 1 // com.oracle.truffle.api.profiles.ConditionProfile negative
        end local 0 // int a
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0         a  I
            0    5     1  negative  Lcom/oracle/truffle/api/profiles/ConditionProfile;
    Exceptions:
      throws java.lang.ArithmeticException
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.dsl.Specialization(rewriteOn = {Ljava/lang/ArithmeticException;})
    RuntimeInvisibleParameterAnnotations: 
      0:
      1:
        com.oracle.truffle.api.dsl.Cached(value = "createBinaryProfile()")
    MethodParameters:
          Name  Flags
      a         
      negative  

  protected static double absIntSpecial(int);
    descriptor: (I)D
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int a
         0: .line 62
            iload 0 /* a */
            i2d
            invokestatic java.lang.Math.abs:(D)D
            dreturn
        end local 0 // int a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     a  I
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.dsl.Specialization()
    MethodParameters:
      Name  Flags
      a     

  protected static double absDouble(double);
    descriptor: (D)D
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // double a
         0: .line 67
            dload 0 /* a */
            invokestatic java.lang.Math.abs:(D)D
            dreturn
        end local 0 // double a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     a  D
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.dsl.Specialization()
    MethodParameters:
      Name  Flags
      a     

  protected double absGeneric(java.lang.Object);
    descriptor: (Ljava/lang/Object;)D
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.builtins.math.AbsNode this
        start local 1 // java.lang.Object a
         0: .line 72
            aload 0 /* this */
            aload 1 /* a */
            invokevirtual com.oracle.truffle.js.builtins.math.AbsNode.toDouble:(Ljava/lang/Object;)D
            invokestatic com.oracle.truffle.js.builtins.math.AbsNode.absDouble:(D)D
            dreturn
        end local 1 // java.lang.Object a
        end local 0 // com.oracle.truffle.js.builtins.math.AbsNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/js/builtins/math/AbsNode;
            0    1     1     a  Ljava/lang/Object;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.dsl.Specialization()
    MethodParameters:
      Name  Flags
      a     
}
SourceFile: "AbsNode.java"