Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6317284

call to RegMask::can_represent() in Compile::can_generate_C2I() off by 1

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: P3 P3
    • 1.4.2_14
    • 1.4.2
    • hotspot
    • generic
    • generic

      In the following function:

      bool Compile::can_generate_C2I(ciMethod* method, int compiled_arg_size) {
        int slots = in_preserve_stack_slots();
        slots = round_to(slots, 1UL << (Matcher::stack_alignment() - LogBitsPerInt));
        // slots == reg2stack(_old_SP of adapter)
        slots += out_preserve_stack_slots();
        slots += round_to(compiled_arg_size, RegMask::SlotsPerLong);
        // slots == reg2stack(_new_SP of adapter)
        slots += out_preserve_stack_slots();
        slots += method->arg_size() * (wordSize/jintSize);
        // All of the preceding stack slots must be bind-able in a regmask.
        return RegMask::can_represent(SharedInfo::stack2reg(slots));
      }

      The last line should use "slot - 1" instead of "slot", because the slots are 0 based.

            kevinw Kevin Walls
            ksoshals Kirill Soshalskiy (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: