All Downloads are FREE. Search and download functionalities are using the official Maven repository.

soot.coffi.Instruction_byteindex Maven / Gradle / Ivy

package soot.coffi;

/*-
 * #%L
 * Soot - a J*va Optimization Framework
 * %%
 * Copyright (C) 1997 Clark Verbrugge
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 2.1 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

/**
 * Instruction subclasses are used to represent parsed bytecode; each bytecode operation has a corresponding subclass of
 * Instruction.
 * 

* Each subclass is derived from one of *

    *
  • Instruction
  • *
  • Instruction_noargs (an Instruction with no embedded arguments)
  • *
  • Instruction_byte (an Instruction with a single byte data argument)
  • *
  • Instruction_bytevar (a byte argument specifying a local variable)
  • *
  • Instruction_byteindex (a byte argument specifying a constant pool index)
  • *
  • Instruction_int (an Instruction with a single short data argument)
  • *
  • Instruction_intvar (a short argument specifying a local variable)
  • *
  • Instruction_intindex (a short argument specifying a constant pool index)
  • *
  • Instruction_intbranch (a short argument specifying a code offset)
  • *
  • Instruction_longbranch (an int argument specifying a code offset)
  • *
* * @author Clark Verbrugge * @see Instruction * @see Instruction_noargs * @see Instruction_byte * @see Instruction_bytevar * @see Instruction_byteindex * @see Instruction_int * @see Instruction_intvar * @see Instruction_intindex * @see Instruction_intbranch * @see Instruction_longbranch * @see Instruction_Unknown */ class Instruction_byteindex extends Instruction { /** * arg_b needs to be short in order to contain all the possible values for an unsigned byte */ public short arg_b; public Instruction_byteindex(byte c) { super(c); } public String toString(cp_info constant_pool[]) { int i = (arg_b) & 0xff; return super.toString(constant_pool) + argsep + "[" + constant_pool[i].toString(constant_pool) + "]"; } public int nextOffset(int curr) { return curr + 2; } public void markCPRefs(boolean[] refs) { refs[(arg_b) & 0xff] = true; } public void redirectCPRefs(short redirect[]) { arg_b = (byte) (redirect[(arg_b) & 0xff]); } public int parse(byte bc[], int index) { arg_b = bc[index]; arg_b = (arg_b >= 0) ? arg_b : (short) (256 + arg_b); return index + 1; } public int compile(byte bc[], int index) { bc[index++] = code; bc[index++] = (byte) arg_b; return index; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy