HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 26 - 50 of 1508) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/websockets/
websocket_frame.h 24 typedef int OpCode;
39 // Return true if |opcode| is one of the data opcodes known to this
41 static bool IsKnownDataOpCode(OpCode opcode) {
42 return opcode == kOpCodeContinuation || opcode == kOpCodeText ||
43 opcode == kOpCodeBinary;
46 // Return true if |opcode| is one of the control opcodes known to this
48 static bool IsKnownControlOpCode(OpCode opcode) {
80 OpCode opcode; member in struct:net::WebSocketFrameHeader
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/
decodetable.cc 59 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/open-vcdiff/src/
decodetable.cc 59 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...]
  /dalvik/libdex/
InstrUtils.h 29 * See the file opcode-gen/README.txt for information about updating
33 kFmt00x = 0, // unknown format (also used for "breakpoint" opcode)
84 * Instruction width implied by an opcode's format; a value in the
92 * Opcode control flow flags, used by the verifier and JIT.
105 * Struct that includes a pointer to each of the opcode information
135 Opcode opcode; member in struct:DecodedInstruction
140 * Return the instruction width of the specified opcode, or 0 if not defined.
142 DEX_INLINE size_t dexGetWidthFromOpcode(Opcode opcode)
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
VariableInstruction.java 52 public VariableInstruction(byte opcode)
54 this(opcode, embeddedVariable(opcode), 0);
58 public VariableInstruction(byte opcode,
61 this(opcode, variableIndex, 0);
65 public VariableInstruction(byte opcode,
69 this.opcode = opcode;
84 this.opcode = variableInstruction.opcode;
    [all...]
SimpleInstruction.java 45 * Creates a new SimpleInstruction with the given opcode.
47 public SimpleInstruction(byte opcode)
49 this(opcode, embeddedConstant(opcode));
54 * Creates a new SimpleInstruction with the given opcode and constant.
56 public SimpleInstruction(byte opcode, int constant)
58 this.opcode = opcode;
70 this.opcode = simpleInstruction.opcode;
    [all...]
  /art/compiler/dex/quick/x86/
utility_x86.cc 26 int opcode; local
30 opcode = kX86MovsdRR;
34 opcode = kX86MovssRR;
36 opcode = kX86MovdxrRR;
40 opcode = kX86MovdrxRR;
43 DCHECK_NE((EncodingMap[opcode].flags & IS_BINARY_OP), 0ULL);
44 LIR* res = RawLIR(current_dalvik_offset_, opcode, r_dest, r_src);
116 X86OpCode opcode = kX86Bkpt; local
118 case kOpNeg: opcode = kX86Neg32R; break;
119 case kOpNot: opcode = kX86Not32R; break
128 X86OpCode opcode = kX86Bkpt; local
154 X86OpCode opcode = kX86Nop; local
200 X86OpCode opcode = kX86Nop; local
272 X86OpCode opcode = IS_SIMM8(value) ? kX86Imul32RRI8 : kX86Imul32RRI; local
296 X86OpCode opcode = kX86Bkpt; local
307 X86OpCode opcode = kX86Bkpt; local
352 X86OpCode opcode = kX86Nop; local
470 X86OpCode opcode = kX86Nop; local
    [all...]
  /dalvik/vm/mterp/x86/
OP_DIV_LONG.S 11 je .L${opcode}_check_zero
13 je .L${opcode}_check_neg1
14 .L${opcode}_notSpecial:
17 .L${opcode}_notSpecial1:
22 .L${opcode}_finish:
30 .L${opcode}_check_zero:
32 jne .L${opcode}_notSpecial
34 .L${opcode}_check_neg1:
36 jne .L${opcode}_notSpecial
40 jne .L${opcode}_notSpecial
    [all...]
OP_DIV_LONG_2ADDR.S 12 je .L${opcode}_check_zero
14 je .L${opcode}_check_neg1
15 .L${opcode}_notSpecial:
18 .L${opcode}_notSpecial1:
23 .L${opcode}_finish:
31 .L${opcode}_check_zero:
33 jne .L${opcode}_notSpecial
35 .L${opcode}_check_neg1:
37 jne .L${opcode}_notSpecial
41 jne .L${opcode}_notSpecial
    [all...]
OP_CMPG_DOUBLE.S 21 jp .L${opcode}_isNaN
22 je .L${opcode}_finish
24 jb .L${opcode}_finish
26 .L${opcode}_finish:
31 .L${opcode}_isNaN:
33 jmp .L${opcode}_finish
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
InstructionWithJumboReference.java 35 import org.jf.dexlib.Code.Opcode;
42 protected InstructionWithJumboReference(Opcode opcode, Item referencedItem) {
43 super(opcode, referencedItem);
46 protected InstructionWithJumboReference(Opcode opcode, Item referencedItem, ReferenceType referenceType) {
47 super(opcode, referencedItem, referenceType);
50 protected InstructionWithJumboReference(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
51 super(dexFile, opcode, buffer, bufferIndex)
    [all...]
Instruction22c.java 33 import org.jf.dexlib.Code.Opcode;
46 public Instruction22c(Opcode opcode, byte regA, byte regB, Item referencedItem) {
47 super(opcode, referencedItem);
58 private Instruction22c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
59 super(dexFile, opcode, buffer, bufferIndex);
67 if (opcode.hasJumboOpcode()) {
69 opcode.referenceType.name(), opcode.getJumboOpcode().name))
    [all...]
Instruction21h.java 33 import org.jf.dexlib.Code.Opcode;
44 public Instruction21h(Opcode opcode, short regA, short litB) {
45 super(opcode);
55 private Instruction21h(Opcode opcode, byte[] buffer, int bufferIndex) {
56 super(opcode);
63 out.writeByte(opcode.value);
81 if (opcode == Opcode.CONST_HIGH16)
    [all...]
Instruction5rc.java 36 import org.jf.dexlib.Code.Opcode;
45 import static org.jf.dexlib.Code.Opcode.*;
52 public Instruction5rc(Opcode opcode, int regCount, int startReg, Item referencedItem) {
53 super(opcode, referencedItem);
72 checkItem(opcode, referencedItem, regCount);
75 private Instruction5rc(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
76 super(dexFile, opcode, buffer, bufferIndex);
81 checkItem(opcode, getReferencedItem(), getRegCount())
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
SimpleInsn.java 31 * @param opcode the opcode; one of the constants from {@link Dops}
37 public SimpleInsn(Dop opcode, SourcePosition position,
39 super(opcode, position, registers);
44 public DalvInsn withOpcode(Dop opcode) {
45 return new SimpleInsn(opcode, getPosition(), getRegisters());
Dop.java 20 * Representation of an opcode.
23 /** DalvOps.MIN_VALUE..DalvOps.MAX_VALUE; the opcode value itself */
24 private final int opcode; field in class:Dop
26 /** DalvOps.MIN_VALUE..DalvOps.MAX_VALUE; the opcode family */
32 /** whether this opcode uses a result register */
41 * @param opcode {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode
43 * @param family {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family
45 * @param hasResult whether the opcode has a result register; if so it
49 public Dop(int opcode, int family, InsnFormat format
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
SimpleInsn.java 31 * @param opcode the opcode; one of the constants from {@link Dops}
37 public SimpleInsn(Dop opcode, SourcePosition position,
39 super(opcode, position, registers);
44 public DalvInsn withOpcode(Dop opcode) {
45 return new SimpleInsn(opcode, getPosition(), getRegisters());
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
SimpleInsn.java 31 * @param opcode the opcode; one of the constants from {@link Dops}
37 public SimpleInsn(Dop opcode, SourcePosition position,
39 super(opcode, position, registers);
44 public DalvInsn withOpcode(Dop opcode) {
45 return new SimpleInsn(opcode, getPosition(), getRegisters());
  /external/elfutils/libdw/
dwarf_macro_opcode.c 1 /* Return macro opcode.
64 *opcodep = macro->opcode;
  /external/emma/core/java12/com/vladium/jcd/opcodes/
IOpcodeVisitor.java 20 void visit (int opcode, boolean wide, int offset, Object ctx);
  /art/runtime/
disassembler_x86.cc 146 std::ostringstream opcode; local
152 bool reg_in_opcode = false; // low 3-bits of opcode encode register parameter
161 case rm8_r8: opcode << #opname; store = true; has_modrm = true; byte_operand = true; break; \
162 case rm32_r32: opcode << #opname; store = true; has_modrm = true; break; \
163 case r8_rm8: opcode << #opname; load = true; has_modrm = true; byte_operand = true; break; \
164 case r32_rm32: opcode << #opname; load = true; has_modrm = true; break; \
165 case ax8_i8: opcode << #opname; ax = true; immediate_bytes = 1; byte_operand = true; break; \
166 case ax32_i32: opcode << #opname; ax = true; immediate_bytes = 4; break;
171 0x04 /* Rax8/imm8 opcode */, 0x05 /* Rax32/imm32 */)
175 0x0C /* Rax8/imm8 opcode */, 0x0D /* Rax32/imm32 */
    [all...]
  /dalvik/vm/compiler/codegen/mips/
GlobalOptimizations.cpp 34 if (!thisLIR->flags.isNop && thisLIR->opcode == kMipsB) {
54 if (!isPseudoOpCode(nextLIR->opcode) ||
74 if (thisLIR->flags.isNop || thisLIR->opcode != kMipsMove)
88 if (nextLIR->flags.isNop || nextLIR->opcode == kMips32BitData)
91 if (isPseudoOpCode(nextLIR->opcode)) {
92 if (nextLIR->opcode == kMipsPseudoDalvikByteCodeBoundary ||
93 nextLIR->opcode == kMipsPseudoBarrier ||
94 nextLIR->opcode == kMipsPseudoExtended ||
95 nextLIR->opcode == kMipsPseudoSSARep)
97 else if (nextLIR->opcode == kMipsPseudoTargetLabel |
    [all...]
  /art/compiler/dex/quick/mips/
utility_mips.cc 25 int opcode; local
29 opcode = kMipsFmovd;
33 opcode = kMipsFmovs;
39 opcode = kMipsMtc1;
43 opcode = kMipsMfc1;
46 LIR* res = RawLIR(current_dalvik_offset_, opcode, r_src, r_dest);
116 MipsOpCode opcode = kMipsNop; local
119 opcode = kMipsJalr;
127 return NewLIR2(opcode, r_RA, r_dest_src);
136 MipsOpCode opcode = kMipsNop local
162 MipsOpCode opcode = kMipsNop; local
204 MipsOpCode opcode = kMipsNop; local
286 MipsOpCode opcode = kMipsNop; local
340 MipsOpCode opcode = kMipsNop; local
391 MipsOpCode opcode = kMipsNop; local
447 MipsOpCode opcode = kMipsNop; local
548 MipsOpCode opcode = kMipsNop; local
    [all...]
  /art/compiler/dex/quick/arm/
utility_arm.cc 221 ArmOpcode opcode = kThumbBkpt; local
224 opcode = kThumbBlxR;
227 LOG(FATAL) << "Bad opcode " << op;
229 return NewLIR1(opcode, r_dest_src);
235 ArmOpcode opcode = kThumbBkpt; local
238 opcode = (thumb_form) ? kThumbAdcRR : kThumb2AdcRRR;
241 opcode = (thumb_form) ? kThumbAndRR : kThumb2AndRRR;
244 opcode = (thumb_form) ? kThumbBicRR : kThumb2BicRRR;
248 opcode = (thumb_form) ? kThumbCmnRR : kThumb2CmnRR;
252 opcode = kThumbCmpRR
354 ArmOpcode opcode = kThumbBkpt; local
426 ArmOpcode opcode = kThumbBkpt; local
550 ArmOpcode opcode = kThumbBkpt; local
643 ArmOpcode opcode = kThumbBkpt; local
707 ArmOpcode opcode = kThumbBkpt; local
771 ArmOpcode opcode = kThumbBkpt; local
902 ArmOpcode opcode = kThumbBkpt; local
1013 int opcode; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
ConservativeTranslationAdvice.java 37 public boolean hasConstantOperation(Rop opcode,
43 public boolean requiresSourcesInOrder(Rop opcode,

Completed in 447 milliseconds

12 3 4 5 6 7 8 91011>>