Searched defs:opcode (Results 26 - 50 of 488) sorted by relevance

1234567891011>>

/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
H A DDop.java23 * Representation of an opcode.
26 /** {@code Opcodes.isValid();} the opcode value itself */
27 private final int opcode; field in class:Dop
29 /** {@code Opcodes.isValid();} the opcode family */
33 * {@code Opcodes.isValid();} what opcode (by number) to try next
34 * when attempting to match an opcode to particular arguments;
36 * opcode to try in a particular chain
43 /** whether this opcode uses a result register */
49 * @param opcode {@code Opcodes.isValid();} the opcode valu
60 Dop(int opcode, int family, int nextOpcode, InsnFormat format, boolean hasResult) argument
[all...]
H A DTargetInsn.java34 * @param opcode the opcode; one of the constants from {@link Dops}
41 public TargetInsn(Dop opcode, SourcePosition position, argument
43 super(opcode, position, registers);
54 public DalvInsn withOpcode(Dop opcode) { argument
55 return new TargetInsn(opcode, getPosition(), getRegisters(), target);
66 * opcode has the opposite sense (as a test; e.g. a
75 Dop opcode = getOpcode().getOppositeTest();
77 return new TargetInsn(opcode, getPosition(), getRegisters(), target);
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DPackedSwitchPayloadDecodedInstruction.java38 int opcode, int firstKey, int[] targets) {
39 super(format, opcode, 0, null, 0, 0L);
37 PackedSwitchPayloadDecodedInstruction(InstructionCodec format, int opcode, int firstKey, int[] targets) argument
H A DSparseSwitchPayloadDecodedInstruction.java38 int opcode, int[] keys, int[] targets) {
39 super(format, opcode, 0, null, 0, 0L);
37 SparseSwitchPayloadDecodedInstruction(InstructionCodec format, int opcode, int[] keys, int[] targets) argument
H A DZeroRegisterDecodedInstruction.java28 public ZeroRegisterDecodedInstruction(InstructionCodec format, int opcode, argument
30 super(format, opcode, index, indexType, target, literal);
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DConservativeTranslationAdvice.java37 public boolean hasConstantOperation(Rop opcode, argument
43 public boolean requiresSourcesInOrder(Rop opcode, argument
H A DCstInsn.java32 * @param opcode {@code non-null;} the opcode
38 public CstInsn(Rop opcode, SourcePosition position, RegisterSpec result, argument
40 super(opcode, position, result, sources);
H A DTranslationAdvice.java28 * instruction with the given opcode operating on the given arguments,
33 * @param opcode {@code non-null;} the opcode
39 public boolean hasConstantOperation(Rop opcode, argument
44 * specified opcode to be in order and contiguous (eg, for an invoke-range)
46 * @param opcode {@code non-null;} opcode
51 public boolean requiresSourcesInOrder(Rop opcode, RegisterSpecList sources); argument
/external/javassist/src/main/javassist/bytecode/analysis/
H A DUtil.java27 int opcode = iter.byteAt(pos);
28 pos += (opcode == JSR_W || opcode == GOTO_W) ? iter.s32bitAt(pos + 1) : iter.s16bitAt(pos + 1);
32 public static boolean isJumpInstruction(int opcode) { argument
33 return (opcode >= IFEQ && opcode <= JSR) || opcode == IFNULL || opcode == IFNONNULL || opcode == JSR_W || opcode
36 isGoto(int opcode) argument
40 isJsr(int opcode) argument
44 isReturn(int opcode) argument
[all...]
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DScannerTest.java180 private static void addJump(Bytecode code, int opcode, int pos) { argument
182 code.addOpcode(opcode);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_inlines.h172 i915_translate_logic_op(unsigned opcode) argument
174 switch (opcode) {
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow_swizzles.c95 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
98 for(src = 0; src < opcode->NumSrcRegs; ++src) {
/external/open-vcdiff/src/
H A Dcodetable.cc56 { { R, // opcode 0
78 { N, // opcode 0
100 { 0, // opcode 0
122 { 0, // opcode 0
144 { 0, // opcode 0
166 { 0, // opcode 0
188 bool VCDiffCodeTableData::ValidateOpcode(int opcode, argument
198 VCD_ERROR << "VCDiff: Bad code table; opcode " << opcode << " has invalid "
204 VCD_ERROR << "VCDiff: Bad code table; opcode " << opcod
[all...]
H A Ddecodetable.cc59 unsigned char opcode = 0; local
66 // from the most recently processed opcode.
67 opcode = static_cast<unsigned char>(pending_second_instruction_);
69 instruction_type = code_table_data_->inst2[opcode];
70 instruction_size = code_table_data_->size2[opcode];
71 instruction_mode = code_table_data_->mode2[opcode];
78 opcode = **instructions_and_sizes_;
79 if (code_table_data_->inst2[opcode] != VCD_NOOP) {
80 // This opcode contains two instructions; process the first one now, and
86 instruction_type = code_table_data_->inst1[opcode];
[all...]
/external/proguard/src/proguard/classfile/instruction/
H A DSwitchInstruction.java44 public SwitchInstruction(byte opcode, argument
48 this.opcode = opcode;
61 this.opcode = switchInstruction.opcode;
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DOdexedFieldInstructionMapper.java306 private static int getOpcodeSubtype(Opcode opcode) { argument
307 if (opcode.isOdexedInstanceQuick()) {
309 } else if (opcode.isOdexedInstanceVolatile()) {
311 } else if (opcode.isOdexedStaticVolatile()) {
314 throw new RuntimeException(String.format("Not an odexed field access opcode: %s", opcode.name));
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DInstruction10x.java39 public Instruction10x(Opcode opcode) { argument
40 super(opcode);
43 public Instruction10x(Opcode opcode, byte[] buffer, int bufferIndex) { argument
44 super(opcode);
46 assert (buffer[bufferIndex] & 0xFF) == opcode.value;
51 out.writeByte(opcode.value);
60 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
61 return new Instruction10x(opcode, buffer, bufferIndex);
H A DInstructionWithJumboReference.java42 protected InstructionWithJumboReference(Opcode opcode, Item referencedItem) { argument
43 super(opcode, referencedItem);
46 protected InstructionWithJumboReference(Opcode opcode, Item referencedItem, ReferenceType referenceType) { argument
47 super(opcode, referencedItem, referenceType);
50 protected InstructionWithJumboReference(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
51 super(dexFile, opcode, buffer, bufferIndex);
/external/tcpdump/
H A Dprint-tftp.c80 register int opcode, i; local
90 opcode = EXTRACT_16BITS(&tp->th_opcode);
91 cp = tok2str(op2str, "tftp-#%d", opcode);
93 /* Bail if bogus opcode */
97 switch (opcode) {
113 if (opcode != OACK)
116 if (opcode != OACK)
154 printf("(unknown #%d)", opcode);
/external/bluetooth/bluedroid/hci/src/
H A Dbt_hw.c163 static uint8_t xmit_cb(uint16_t opcode, void *p_buf, tINT_CMD_CBACK p_cback) argument
165 return p_hci_if->send_int_cmd(opcode, (HC_BT_HDR *)p_buf, p_cback);
/external/chromium_org/remoting/host/
H A Dcurtain_mode_linux.cc51 int opcode, event, error; local
52 if (!XQueryExtension(display, "XInputExtension", &opcode, &event, &error)) {
/external/chromium_org/sandbox/win/src/
H A Dpolicy_engine_processor.cc18 // Decides if an opcode can be skipped (not evaluated) or not. The function
19 // takes as inputs the opcode and the current evaluation context and returns
20 // true if the opcode should be skipped or not and also can set keep_skipping
23 bool SkipOpcode(const PolicyOpcode& opcode, MatchContext* context, argument
25 if (opcode.IsAction()) {
55 // short circuit evaluation, we stop as soon as we find an 'action' opcode
60 // EVAL_TRUE. Skipping will stop at the next action opcode or at the opcode
64 PolicyOpcode& opcode = policy_->opcodes[ix]; local
67 if (SkipOpcode(opcode,
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketPerMessageDeflateTest.cpp49 WebSocketFrame::OpCode opcode = WebSocketFrame::OpCodeText; local
50 WebSocketFrame f1(opcode, "Hello", 5, WebSocketFrame::Final);
51 WebSocketFrame f2(opcode, "Hello", 5, WebSocketFrame::Final);
71 WebSocketFrame::OpCode opcode = WebSocketFrame::OpCodeText; local
72 WebSocketFrame f1(opcode, "Hello", 5, WebSocketFrame::Final);
73 WebSocketFrame f2(opcode, "Hello", 5, WebSocketFrame::Final);
92 WebSocketFrame::OpCode opcode = WebSocketFrame::OpCodeText; local
106 WebSocketFrame frame(opcode, &payload[0], payload.size(), WebSocketFrame::Final);
113 WebSocketFrame frame(opcode, &payload[i], 1);
125 WebSocketFrame frame(opcode,
141 WebSocketFrame::OpCode opcode = WebSocketFrame::OpCodeBinary; local
156 WebSocketFrame::OpCode opcode = WebSocketFrame::OpCodeText; local
177 WebSocketFrame::OpCode opcode = WebSocketFrame::OpCodeText; local
222 WebSocketFrame::OpCode opcode = WebSocketFrame::OpCodeClose; local
267 WebSocketFrame::OpCode opcode = WebSocketFrame::OpCodeText; local
299 WebSocketFrame::OpCode opcode = WebSocketFrame::OpCodeText; local
350 WebSocketFrame::OpCode opcode = WebSocketFrame::OpCodeClose; local
[all...]

Completed in 1245 milliseconds

1234567891011>>