Searched refs:_opcode (Results 1 – 9 of 9) sorted by relevance
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | LocalVariableInstruction.java | 113 final short _opcode = super.getOpcode(); in toString() local 114 if (((_opcode >= Const.ILOAD_0) && (_opcode <= Const.ALOAD_3)) in toString() 115 || ((_opcode >= Const.ISTORE_0) && (_opcode <= Const.ASTORE_3))) { in toString() 134 final short _opcode = super.getOpcode(); in initFromFile() local 135 if (((_opcode >= Const.ILOAD) && (_opcode <= Const.ALOAD)) in initFromFile() 136 || ((_opcode >= Const.ISTORE) && (_opcode <= Const.ASTORE))) { in initFromFile() 139 } else if (_opcode <= Const.ALOAD_3) { // compact load instruction such as ILOAD_2 in initFromFile() 140 n = (_opcode - Const.ILOAD_0) % 4; in initFromFile() 143 n = (_opcode - Const.ISTORE_0) % 4; in initFromFile()
|
D | ReturnInstruction.java | 48 final short _opcode = super.getOpcode(); in getType() local 49 switch (_opcode) { in getType() 63 throw new ClassGenException("Unknown type " + _opcode); in getType()
|
D | ConversionInstruction.java | 50 final short _opcode = super.getOpcode(); in getType() local 51 switch (_opcode) { in getType() 75 throw new ClassGenException("Unknown type " + _opcode); in getType()
|
D | GOTO.java | 50 final short _opcode = getOpcode(); in dump() local 51 if (_opcode == org.apache.bcel.Const.GOTO) { in dump() 55 out.writeByte(_opcode); in dump()
|
D | ArithmeticInstruction.java | 50 final short _opcode = super.getOpcode(); in getType() local 51 switch (_opcode) { in getType() 93 throw new ClassGenException("Unknown type " + _opcode); in getType()
|
D | ArrayInstruction.java | 56 final short _opcode = super.getOpcode(); in getType() local 57 switch (_opcode) { in getType() 83 throw new ClassGenException("Oops: unknown case in switch" + _opcode); in getType()
|
/external/python/cpython3/Lib/test/ |
D | test__opcode.py | 5 _opcode = import_module("_opcode") variable 10 self.assertEqual(_opcode.stack_effect(dis.opmap['POP_TOP']), -1) 11 self.assertEqual(_opcode.stack_effect(dis.opmap['DUP_TOP_TWO']), 2) 12 self.assertEqual(_opcode.stack_effect(dis.opmap['BUILD_SLICE'], 0), -1) 13 self.assertEqual(_opcode.stack_effect(dis.opmap['BUILD_SLICE'], 1), -1) 14 self.assertEqual(_opcode.stack_effect(dis.opmap['BUILD_SLICE'], 3), -2) 15 self.assertRaises(ValueError, _opcode.stack_effect, 30000) 16 self.assertRaises(ValueError, _opcode.stack_effect, dis.opmap['BUILD_SLICE']) 17 self.assertRaises(ValueError, _opcode.stack_effect, dis.opmap['POP_TOP'], 0)
|
/external/python/cpython3/Lib/ |
D | opcode.py | 19 from _opcode import stack_effect
|
/external/perf_data_converter/src/quipper/testdata/ |
D | perf.data.group_desc-4.4.parse.remap.out.pb_text | 123584 filename: "/usr/lib/python3.4/lib-dynload/_opcode.cpython-34m-x86_64-linux-gnu.so" 134600 filename: "/usr/lib/python3.4/lib-dynload/_opcode.cpython-34m-x86_64-linux-gnu.so" 160247 filename: "/usr/lib/python3.4/lib-dynload/_opcode.cpython-34m-x86_64-linux-gnu.so" 170848 filename: "/usr/lib/python3.4/lib-dynload/_opcode.cpython-34m-x86_64-linux-gnu.so"
|