class TestCase::Constant {
  use Complex_2d;
  
  static method load_constant_long_middle : long () {
    return 4611686018427387904L;
  }
  static method multiply_long_overflow : long () {
    return 4611686018427387904L;
  }
  
  static method load_constant_char : int () {
    {
      my $ch = 'a';
      unless ($ch == 97) {
        return 0;
      }
    }
    
    return 1;
  }

  # constant int
  static method load_constant_int_min : int () {
   # LOAD_CONSTANT
    return -2147483648;
  }
  static method load_constant_int_m32769 : int () {
    # LOAD_CONSTANT
    return -32769;
  }
  static method load_constant_int_m32768 : int () {
    # PUSH_SHORT_TO_INT
    return -32768;
  }
  static method load_constant_int_m129 : int () {
    # PUSH_SHORT_TO_INT
    return -129;
  }
  static method load_constant_int_m128 : int () {
    # PUSH_BYTE_TO_INT
    return -128;
  }
  static method load_constant_int_m2 : int () {
    # PUSH_BYTE_TO_INT
    return -2;
  }
  static method load_constant_int_m1 : int () {
    # CONSTANT_INT_M1
    return -1;
  }
  static method load_constant_int_0 : int () {
    # CONSTANT_INT_0
    return 0;
  }
  static method load_constant_int_1 : int () {
    # CONSTANT_INT_1
    return 1;
  }
  static method load_constant_int_2 : int () {
    # CONSTANT_INT_2
    return 2;
  }
  static method load_constant_int_3 : int () {
    # CONSTANT_INT_3
    return 3;
  }
  static method load_constant_int_4 : int () {
    # CONSTANT_INT_4
    return 4;
  }
  static method load_constant_int_5 : int () {
    # CONSTANT_INT_5
    return 5;
  }
  static method load_constant_int_6 : int () {
    # PUSH_BYTE_TO_INT
    return 6;
  }
  static method load_constant_int_127 : int () {
    # PUSH_BYTE_TO_INT
    return 127;
  }
  static method load_constant_int_128 : int () {
    # PUSH_SHORT_TO_INT
    return 128;
  }
  static method load_constant_int_32767 : int () {
    # PUSH_SHORT_TO_INT
    return 32767;
  }
  static method load_constant_int_32768 : int () {
    # LOAD_CONSTANT
    return 32768;
  }
  static method load_constant_int_max : int () {
    # LOAD_CONSTANT
    return 2147483647;
  }

  # constant long
  static method load_constant_long_min : long () {
   # LOAD_CONSTANT
    return -9223372036854775808L;
  }
  static method load_constant_long_m32769 : long () {
    # LOAD_CONSTANT
    return -32769L;
  }
  static method load_constant_long_m32768 : long () {
    # PUSH_SHORT_TO_LONG
    return -32768L;
  }
  static method load_constant_long_m129 : long () {
    # PUSH_SHORT_TO_LONG
    return -129L;
  }
  static method load_constant_long_m128 : long () {
    # PUSH_BYTE_TO_LONG
    return -128L;
  }
  static method load_constant_long_m2 : long () {
    # PUSH_BYTE_TO_LONG
    return -2L;
  }
  static method load_constant_long_m1 : long () {
    # CONSTANT_LONG_M1
    return -1L;
  }
  static method load_constant_long_0 : long () {
    # CONSTANT_LONG_0
    return 0L;
  }
  static method load_constant_long_1 : long () {
    # CONSTANT_LONG_1
    return 1L;
  }
  static method load_constant_long_2 : long () {
    # CONSTANT_LONG_2
    return 2L;
  }
  static method load_constant_long_3 : long () {
    # CONSTANT_LONG_3
    return 3L;
  }
  static method load_constant_long_4 : long () {
    # CONSTANT_LONG_4
    return 4L;
  }
  static method load_constant_long_5 : long () {
    # CONSTANT_LONG_5
    return 5L;
  }
  static method load_constant_long_6 : long () {
    # PUSH_BYTE_TO_LONG
    return 6L;
  }
  static method load_constant_long_127 : long () {
    # PUSH_BYTE_TO_LONG
    return 127L;
  }
  static method load_constant_long_128 : long () {
    # PUSH_SHORT_TO_LONG
    return 128L;
  }
  static method load_constant_long_32767 : long () {
    # PUSH_SHORT_TO_LONG
    return 32767L;
  }
  static method load_constant_long_32768 : long () {
    # LOAD_CONSTANT2
    return 32768L;
  }
  static method load_constant_long_max : long () {
    # LOAD_CONSTANT2
    return 9223372036854775807L;
  }
  
  # constant float
  static method load_constant_float_0 : float () {
    # CONSTANT_FLOAT_0
    return 0.0f;
  }
  static method load_constant_float_1 : float () {
    # CONSTANT_FLOAT_1
    return 1.0f;
  }
  static method load_constant_float_0_5 : float () {
    # LOAD_CONSTANT
    return 0.5f;
  }
  static method load_constant_float_exponent_E_plus : float () {
    return 0.5E+3f;
  }
  static method load_constant_float_exponent_e_plus : float () {
    return 0.5e3f;
  }
  static method load_constant_float_exponent_E_minus : float () {
    return 62.5E-3f;
  }
  static method load_constant_float_exponent_e_minus : float () {
    return 62.5e-3f;
  }

  static method load_constant_double_exponent_E_plus : double () {
    return 0.5E+3;
  }
  static method load_constant_double_exponent_e_plus : double () {
    return 0.5e3;
  }
  static method load_constant_double_exponent_E_minus : double () {
    return 62.5E-3;
  }
  static method load_constant_double_exponent_e_minus : double () {
    return 62.5e-3;
  }
  
  # constant double
  static method load_constant_double_0 : double () {
    # CONSTANT_DOUBLE_0
    return 0.0;
  }
  static method load_constant_double_1 : double () {
    # CONSTANT_DOUBLE_1
    return 1.0;
  }
  static method load_constant_double_0_5 : double () {
    # LOAD_CONSTANT2
    return 0.5;
  }
}