Lines Matching refs:val
543 void addOpcode(String name, String val) throws DasmError { in addOpcode() argument
545 System.out.println("addOpcode(" + name + ", " + val + ")"); in addOpcode()
552 reg_num = getRegNumberFromString(val); in addOpcode()
555 + val + ")"); in addOpcode()
564 LabelTableEntry lte = labels_table.get(val); in addOpcode()
569 labels_table.put(val, lte); in addOpcode()
576 throwDasmError("Bad arguments for instruction " + name + "(" + val in addOpcode()
585 void addRelativeGoto(String name, int val) throws DasmError { in addRelativeGoto() argument
587 System.out.println("addRelativeGoto(" + name + ", " + val + ")"); in addRelativeGoto()
591 if (val == 0) in addRelativeGoto()
593 + val + ")"); in addRelativeGoto()
596 if (val < 0) { in addRelativeGoto()
597 output_finisher.insert(current_insn_number + val, code_address); in addRelativeGoto()
600 unprocessed_relative_goto_addr.put(current_insn_number + val, in addRelativeGoto()
609 throwDasmError("Bad arguments for instruction " + name + "(" + val in addRelativeGoto()
854 void addRelativeGoto(String name, String v1, int val) throws DasmError { in addRelativeGoto() argument
857 + val + ")"); in addRelativeGoto()
861 if (val == 0) in addRelativeGoto()
863 + val + ")"); in addRelativeGoto()
876 if (val < 0) { in addRelativeGoto()
877 output_finisher.insert(current_insn_number + val, code_address); in addRelativeGoto()
880 unprocessed_relative_goto_addr.put(current_insn_number + val, in addRelativeGoto()
888 throwDasmError("Bad arguments for instruction " + name + "(" + val in addRelativeGoto()
1174 void addRelativeGoto(String name, String v1, String v2, int val) in addRelativeGoto() argument
1178 + v2 + ", " + val + ")"); in addRelativeGoto()
1182 if (val == 0) in addRelativeGoto()
1184 + val + ")"); in addRelativeGoto()
1206 if (val < 0) { in addRelativeGoto()
1207 output_finisher.insert(current_insn_number + val, code_address); in addRelativeGoto()
1210 unprocessed_relative_goto_addr.put(current_insn_number + val, in addRelativeGoto()
1218 throwDasmError("Bad arguments for instruction " + name + "(" + val in addRelativeGoto()
1536 private int getRegNumberFromString(String val) in getRegNumberFromString() argument
1540 if (val.length() <= l in getRegNumberFromString()
1541 || val.substring(0, l).compareToIgnoreCase( in getRegNumberFromString()
1546 reg_num = Integer.parseInt(val.substring(l)); in getRegNumberFromString()