Uploaded image for project: 'Commons BCEL'
  1. Commons BCEL
  2. BCEL-162

Invalid LocalVariableTable and LineNumberTable after modifying instruction list

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Resolution: Unresolved
    • 6.8.1
    • None
    • Main
    • None
    • Operating System: Linux
      Platform: PC

    Description

      LocalVariableGen objects point to the start and end InstructionHandles which indicate the variable range. However, when changing the instruction list with MethodGen.setInstructionList, the LocalVariableGen objects point to instruction handles that do not belong to the new list. When MethodGen.getMethod is called, LocalVariable objects will be created using the bytecode offsets of handles that do not belong to the current instruction list. Because bytecode instructions can have different lengths, the offsets may be invalid (i.e., do not point to an instruction, which is invalid according to the java bytecode spec).

      A similar problem occurs with LineNumberGens.

      One proposed solution is to check at getLocalVariables() (and getLineNumberTable) whether the target handle belongs to the current instruction list. If not, we first search for the "best candidate" in the current list, i.e., the instruction with the position of the original targeted instruction, or the next one if there is no perfect match. Then we use this instruction's offset in the LocalVariable.

      Sketch of the code:

      public LocalVariableGen[] getLocalVariables() {
      int size = variable_vec.size();
      LocalVariableGen[] lg = new LocalVariableGen[size];
      variable_vec.toArray(lg);
      for (int i = 0; i < size; i++) {
      if (lg[i].getStart() == null)

      { lg[i].setStart(il.getStart()); }

      else

      { lg[i].setStart(il.findHandle(lg[i].getStart().i_position)); }

      ...
      }

      The patch in attachment fixes this problem plus the last 2 bugs I reported ( https://issues.apache.org/bugzilla/show_bug.cgi?id=52441 and https://issues.apache.org/bugzilla/show_bug.cgi?id=52422 ).

      Attachments

        1. patch.diff
          7 kB
          Thiago

        Activity

          People

            issues@commons.apache.org Apache Commons Developers
            thiagobart@gmail.com Thiago
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: