Searched refs:opcode (Results 101 - 125 of 375) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DPlainCstInsn.java33 * @param opcode {@code non-null;} the opcode
39 public PlainCstInsn(Rop opcode, SourcePosition position, argument
42 super(opcode, position, result, sources, cst);
44 if (opcode.getBranchingness() != Rop.BRANCH_NONE) {
H A DSwitchInsn.java35 * @param opcode {@code non-null;} the opcode
41 public SwitchInsn(Rop opcode, SourcePosition position, RegisterSpec result, argument
43 super(opcode, position, result, sources);
45 if (opcode.getBranchingness() != Rop.BRANCH_SWITCH) {
H A DThrowingCstInsn.java36 * @param opcode {@code non-null;} the opcode
42 public ThrowingCstInsn(Rop opcode, SourcePosition position, argument
45 super(opcode, position, null, sources, cst);
47 if (opcode.getBranchingness() != Rop.BRANCH_THROW) {
H A DThrowingInsn.java57 * @param opcode {@code non-null;} the opcode
62 public ThrowingInsn(Rop opcode, SourcePosition position, argument
65 super(opcode, position, null, sources);
67 if (opcode.getBranchingness() != Rop.BRANCH_THROW) {
/external/javassist/src/main/javassist/bytecode/
H A DCodeAnalyzer.java98 private boolean processBranch(int opcode, CodeIterator ci, int index, argument
102 if ((IFEQ <= opcode && opcode <= IF_ACMPNE)
103 || opcode == IFNULL || opcode == IFNONNULL) {
109 switch (opcode) {
120 if (opcode == JSR)
159 if (opcode == LOOKUPSWITCH) {
204 private static boolean isEnd(int opcode) { argument
205 return (IRETURN <= opcode
[all...]
H A DInstructionPrinter.java60 int opcode = iter.byteAt(pos);
62 if (opcode > opcodes.length || opcode < 0)
63 throw new IllegalArgumentException("Invalid opcode, opcode: " + opcode + " pos: "+ pos);
65 String opstring = opcodes[opcode];
66 switch (opcode) {
127 throw new RuntimeException("Bad opcode 186");
149 int opcode
[all...]
/external/llvm/bindings/python/llvm/
H A Dcore.py59 opcode = OpCode(name, value)
60 OpCode._value_map[value] = opcode
61 setattr(OpCode, name, opcode)
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
H A DOffsetInstructionFormatMethodItem.java72 if (instruction.opcode == Opcode.FILL_ARRAY_DATA) {
75 if (instruction.opcode == Opcode.PACKED_SWITCH) {
78 assert instruction.opcode == Opcode.SPARSE_SWITCH;
/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DLabel.h58 int bind(int opcode, int offset) const argument
61 m_unresolvedJumps.append(std::make_pair(opcode, offset));
64 return m_location - opcode;
/external/javassist/src/main/javassist/convert/
H A DTransformAccessArrayField.java126 int opcode, String signature) throws BadBytecode {
128 String methodName = getMethodName(opcode);
131 if (opcode == AALOAD) {
165 private String getMethodName(int opcode) { argument
167 switch (opcode) {
224 private String getLoadReplacementSignature(int opcode) throws BadBytecode { argument
225 switch (opcode) {
244 throw new BadBytecode(opcode);
247 private String getStoreReplacementSignature(int opcode) throws BadBytecode { argument
248 switch (opcode) {
125 replace(ConstPool cp, CodeIterator iterator, int pos, int opcode, String signature) argument
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DMethodInvocationFixer.java93 // Do we need to update the opcode?
94 byte opcode = constantInstruction.opcode;
100 if (opcode != InstructionConstants.OP_INVOKESTATIC)
121 if (opcode != InstructionConstants.OP_INVOKESPECIAL)
145 if (opcode != InstructionConstants.OP_INVOKEINTERFACE ||
169 if (opcode != InstructionConstants.OP_INVOKEVIRTUAL &&
170 (opcode != InstructionConstants.OP_INVOKESPECIAL ||
H A DInstructionWriter.java85 new ConstantInstruction(constantInstruction.opcode,
110 new VariableInstruction(variableInstruction.opcode,
139 switch (branchInstruction.opcode)
145 new BranchInstruction(branchInstruction.opcode,
169 new BranchInstruction((byte)(((branchInstruction.opcode+1) ^ 1) - 1),
183 new BranchInstruction((byte)(branchInstruction.opcode ^ 1),
/external/proguard/src/proguard/classfile/instruction/
H A DInstruction.java660 public byte opcode; field in class:Instruction
664 * Returns the canonical opcode of this instruction, i.e. typically the
665 * opcode whose extension has been removed.
669 return opcode;
695 // Write the wide opcode, if necessary.
701 // Write the opcode.
702 code[offset++] = opcode;
710 * Returns whether the instruction is wide, i.e. preceded by a wide opcode.
720 * Reads the data following the instruction opcode.
726 * Writes data following the instruction opcode
[all...]
/external/v8/src/x64/
H A Ddisasm-x64.cc424 const char* TwoByteMnemonic(byte opcode);
1016 byte opcode = *(data + 1); local
1019 const char* mnemonic = TwoByteMnemonic(opcode);
1023 if (opcode == 0x3A) {
1044 if (opcode == 0x1f) {
1055 } else if (opcode == 0x28) {
1058 } else if (opcode == 0x29) {
1062 } else if (opcode == 0x6E) {
1067 } else if (opcode == 0x6F) {
1071 } else if (opcode
1276 TwoByteMnemonic(byte opcode) argument
1591 byte opcode = *data; local
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dmux_client_for_testing.py72 def __init__(self, opcode):
73 self.opcode = opcode
159 opcode = (first_byte >> 5) & 0x7
160 block = _ControlBlock(opcode)
162 # TODO(bashi): Support more opcode
163 if opcode == _MUX_OPCODE_ADD_CHANNEL_RESPONSE:
177 elif opcode == _MUX_OPCODE_DROP_CHANNEL:
190 elif opcode == _MUX_OPCODE_FLOW_CONTROL:
198 elif opcode
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLiteralOpUpgrader.java97 Rop opcode = originalRopInsn.getOpcode();
108 if (opcode.getBranchingness() == Rop.BRANCH_IF) {
114 RegOps.flippedIfOpcode(opcode.getOpcode()), null);
117 opcode.getOpcode(), null);
120 opcode, sources.get(0), sources.get(1))) {
122 } else if (opcode.isCommutative()
124 opcode, sources.get(1), sources.get(0))) {
148 Rop opcode = originalRopInsn.getOpcode();
152 opcode.getOpcode() != RegOps.CONST) {
160 if (opcode
[all...]
/external/regex-re2/re2/
H A Dprog.cc15 // Constructors per Inst opcode
60 switch (opcode()) {
62 return StringPrintf("opcode %d", static_cast<int>(opcode()));
142 if (ip->opcode() == kInstAlt || ip->opcode() == kInstAltMatch)
187 while (j != 0 && (jp=inst(j))->opcode() == kInstNop) {
193 if (ip->opcode() == kInstAlt) {
195 while (j != 0 && (jp=inst(j))->opcode() == kInstNop) {
216 if (ip->opcode()
[all...]
/external/bluetooth/bluedroid/stack/include/
H A Duipc_msg.h60 UINT8 opcode; /* UIPC_OPEN_REQ */ member in struct:__anon1345
67 UINT8 opcode; /* UIPC_OPEN_RESP */ member in struct:__anon1346
78 UINT8 opcode; /* UIPC_CLOSE_REQ */ member in struct:t_uipc_close_req
85 UINT8 opcode; /* UIPC_CLOSE_RSP */ member in struct:t_uipc_close_rsp
92 UINT8 opcode; member in union:__anon1347
247 UINT8 opcode; /* AVDT_SYNC_TO_BTC_LITE_REQ */ member in struct:__anon1350
254 UINT8 opcode; /* AVDT_SYNC_TO_BTC_LITE_RESP */ member in struct:__anon1351
335 UINT8 opcode; /* A2DP_START_REQ */ member in struct:__anon1352
342 UINT8 opcode; /* A2DP_STOP_REQ */ member in struct:__anon1353
348 UINT8 opcode; /* A2DP_SUSPEND_RE member in struct:__anon1354
354 UINT8 opcode; /* A2DP_CLEANUP_REQ */ member in struct:__anon1355
361 UINT8 opcode; /* A2DP_START_RESP, A2DP_STOP_RESP, A2DP_CLEANUP_RESP, A2DP_SUSPEND_RESP */ member in struct:__anon1356
599 UINT8 opcode; /* AUDIO_CODEC_CONFIG_REQ */ member in struct:__anon1363
613 UINT8 opcode; /* AUDIO_CODEC_CONFIG_RESP */ member in struct:__anon1364
619 UINT8 opcode; /* AUDIO_CODEC_SET_BITRATE_REQ */ member in struct:__anon1365
699 UINT8 opcode; /* AUDIO_ROUTE_CONFIG_REQ */ member in struct:__anon1367
710 UINT8 opcode; /* AUDIO_ROUTE_CONFIG_RESP */ member in struct:__anon1368
749 UINT8 opcode; /* AUDIO_MIX_CONFIG_REQ */ member in struct:__anon1372
758 UINT8 opcode; /* AUDIO_MIX_CONFIG_RESP */ member in struct:__anon1373
765 UINT8 opcode; /* AUDIO_BURST_FRAMES_IND */ member in struct:__anon1374
771 UINT8 opcode; /* AUDIO_BURST_END_IND */ member in struct:__anon1375
776 UINT8 opcode; /* AUDIO_CODEC_FLUSH_REQ */ member in struct:__anon1376
781 UINT8 opcode; /* AUDIO_EQ_MODE_CONFIG_REQ */ member in struct:__anon1377
788 UINT8 opcode; /* AUDIO_SCALE_CONFIG_REQ */ member in struct:__anon1378
869 UINT8 opcode; member in union:__anon1385
[all...]
H A Davrc_defs.h57 by the opcode and operand,
61 opcode but cannot respond because the current state
98 #define AVRC_OP_PASS_THRU 0x7C /* panel subunit opcode */
764 UINT8 opcode; /* Op Code (passthrough, vendor, etc) */ member in struct:__anon1087
970 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1105
979 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1106
988 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1107
998 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1108
1008 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1109
1018 UINT8 opcode; /* O member in struct:__anon1110
1029 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1111
1039 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1112
1048 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1113
1058 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1114
1068 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1115
1077 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1116
1086 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1117
1095 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1118
1108 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1119
1119 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1120
1132 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1121
1141 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1122
1152 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1123
1162 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1124
1170 UINT8 opcode; /* Op Code (assigned by AVRC_BldCommand according to pdu) */ member in struct:__anon1125
1209 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1127
1220 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1128
1230 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1129
1240 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1130
1250 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1131
1260 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1132
1270 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1133
1313 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1137
1323 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1138
1332 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1139
1345 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1140
1356 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1141
1365 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1142
1375 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1143
1385 UINT8 opcode; /* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) */ member in struct:__anon1144
[all...]
/external/libnfc-nci/src/nfc/tags/
H A Dtags_int.c42 /* opcode cmd_len, uid_offset, rsp_len */
68 /* opcode cmd_len, rsp_len, nack_rsp_len */
116 ** Description This function maps the given opcode to tT1T_CMD_RSP_INFO.
121 const tT1T_CMD_RSP_INFO * t1t_cmd_to_rsp_info (UINT8 opcode) argument
128 if (opcode == p->opcode)
144 ** Description This function maps the given opcode to tT1T_INIT_TAG.
202 ** Description This function maps the given opcode to tT2T_CMD_RSP_INFO.
207 const tT2T_CMD_RSP_INFO * t2t_cmd_to_rsp_info (UINT8 opcode) argument
214 if (opcode
[all...]
/external/webkit/Source/JavaScriptCore/bytecode/
H A DOpcode.cpp45 #define OPCODE_NAME_ENTRY(opcode, size) #opcode,
121 printf("\nExecuted opcode statistics\n");
133 printf("2-opcode sequences by frequency: %lld\n\n", totalInstructions);
174 void OpcodeStats::recordInstruction(int opcode) argument
176 opcodeCounts[opcode]++;
179 opcodePairCounts[lastOpcode][opcode]++;
181 lastOpcode = opcode;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DVariableSizeInsn.java40 public final DalvInsn withOpcode(Dop opcode) { argument
H A DZeroSizeInsn.java53 public final DalvInsn withOpcode(Dop opcode) { argument
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DDecodedInstruction.java28 * numeric opcode, an optional index type, and any additional
43 /** opcode number */
44 private final int opcode; field in class:DecodedInstruction
71 int opcode = Opcodes.extractOpcodeFromUnit(opcodeUnit);
72 InstructionCodec format = OpcodeInfo.getFormat(opcode);
101 public DecodedInstruction(InstructionCodec format, int opcode, argument
107 if (!Opcodes.isValidShape(opcode)) {
108 throw new IllegalArgumentException("invalid opcode");
112 this.opcode = opcode;
[all...]
/external/grub/netboot/
H A Dfsys_tftp.c104 if (tr->opcode == ntohs (TFTP_ERROR))
112 if (tr->opcode == ntohs (TFTP_OACK))
162 tp.opcode = htons (TFTP_ERROR);
167 + sizeof (tp.opcode) + sizeof (tp.u.err.errcode)
189 else if (tr->opcode == ntohs (TFTP_DATA))
216 tp.opcode = abort ? htons (TFTP_ERROR) : htons (TFTP_ACK);
338 grub_printf ("opcode = 0x%x, rrq = ", (unsigned long) tp.opcode);
429 tp.opcode = htons (TFTP_RRQ);
436 + sizeof (tp.ip) + sizeof (tp.udp) + sizeof (tp.opcode)
[all...]

Completed in 938 milliseconds

1234567891011>>