HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 476 - 500 of 1019) sorted by null

<<11121314151617181920>>

  /dalvik/vm/mterp/mips/
OP_IPUT_QUICK.S 14 GET_INST_OPCODE(t0) # extract opcode from rINST
OP_MONITOR_EXIT.S 22 GET_INST_OPCODE(t0) # extract opcode from rINST
binopLit8.S 29 GET_INST_OPCODE(t0) # extract opcode from rINST
  /dalvik/vm/mterp/x86/
OP_AGET.S 20 .L${opcode}_finish:
OP_APUT.S 20 .L${opcode}_finish:
OP_IGET.S 24 jne .L${opcode}_finish # no, already resolved
35 jne .L${opcode}_finish
38 .L${opcode}_finish:
OP_IGET_WIDE.S 22 jne .L${opcode}_finish # no, already resolved
33 jne .L${opcode}_finish
36 .L${opcode}_finish:
OP_IPUT.S 25 jne .L${opcode}_finish # no, already resolved
36 jne .L${opcode}_finish
39 .L${opcode}_finish:
OP_IPUT_OBJECT.S 24 jne .L${opcode}_finish # no, already resolved
35 jne .L${opcode}_finish
38 .L${opcode}_finish:
OP_IPUT_WIDE.S 22 jne .L${opcode}_finish # no, already resolved
33 jne .L${opcode}_finish
36 .L${opcode}_finish:
OP_NEW_ARRAY.S 26 jne .L${opcode}_finish # yes, fast path
45 # fall through to ${opcode}_finish
53 .L${opcode}_finish:
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
InsnFormat.java 40 * flag to enable/disable the new extended opcode formats; meant as a
477 * Helper method to combine an opcode and a second byte of data into
480 * @param insn {@code non-null;} the instruction containing the opcode
489 int opcode = insn.getOpcode().getOpcode(); local
491 if ((opcode & 0xff) != opcode) {
492 throw new IllegalArgumentException("opcode out of range 0..255");
495 return (short) (opcode | (arg << 8));
499 * Helper method to get an extended (16-bit) opcode out of an
500 * instruction, returning it as a code unit. The opcode
508 int opcode = insn.getOpcode().getOpcode(); local
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
InstructionSequenceReplacer.java 226 new SimpleInstruction(simpleInstruction.opcode,
234 new VariableInstruction(variableInstruction.opcode,
243 new ConstantInstruction(constantInstruction.opcode,
252 new BranchInstruction(branchInstruction.opcode,
260 new TableSwitchInstruction(tableSwitchInstruction.opcode,
272 new LookUpSwitchInstruction(lookUpSwitchInstruction.opcode,
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
AnalyzedInstruction.java 117 assert originalInstruction.opcode.odexOnly();
122 assert originalInstruction.opcode.odexOnly();
239 if (instruction == null || !instruction.opcode.canInitializeReference()) {
258 return instruction.opcode.setsRegister();
262 return instruction.opcode.setsWideRegister();
313 if (!this.instruction.opcode.setsRegister()) {
  /external/webkit/Source/WebCore/xml/
XPathPredicate.cpp 70 NumericOp::NumericOp(Opcode opcode, Expression* lhs, Expression* rhs)
71 : m_opcode(opcode)
101 EqTestOp::EqTestOp(Opcode opcode, Expression* lhs, Expression* rhs)
102 : m_opcode(opcode)
204 LogicalOp::LogicalOp(Opcode opcode, Expression* lhs, Expression* rhs)
205 : m_opcode(opcode)
  /prebuilts/tools/common/asm-tools/
asm-debug-all-4.0.jar 
  /external/bluetooth/bluedroid/stack/avrc/
avrc_bld_tg.c 730 UINT8 opcode = avrc_opcode_from_pdu(p_rsp->pdu); local
732 AVRC_TRACE_API3("avrc_bld_init_rsp_buffer: pdu=%x, opcode=%x/%x", p_rsp->pdu, opcode,
733 p_rsp->rsp.opcode);
734 if (opcode != p_rsp->rsp.opcode && p_rsp->rsp.status != AVRC_STS_NO_ERROR &&
735 avrc_is_valid_opcode(p_rsp->rsp.opcode))
737 opcode = p_rsp->rsp.opcode;
738 AVRC_TRACE_API1("opcode=%x", opcode)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
instruction_map_test.cc 38 int opcode);
56 // squared (because there are two instructions per opcode), makes
82 int opcode = 0; local
101 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++);
102 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode++);
103 AddExerciseOpcode(inst1, mode1, 255, inst2, mode2, 0, opcode++);
104 AddExerciseOpcode(inst1, mode1, 255, inst2, mode2, 255, opcode++);
109 CHECK_EQ(VCDiffCodeTableData::kCodeTableSize, opcode);
129 int opcode) {
130 g_exercise_code_table_->inst1[opcode] = inst1
560 int opcode = 0; local
    [all...]
  /external/open-vcdiff/src/
instruction_map_test.cc 38 int opcode);
56 // squared (because there are two instructions per opcode), makes
82 int opcode = 0; local
101 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++);
102 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode++);
103 AddExerciseOpcode(inst1, mode1, 255, inst2, mode2, 0, opcode++);
104 AddExerciseOpcode(inst1, mode1, 255, inst2, mode2, 255, opcode++);
109 CHECK_EQ(VCDiffCodeTableData::kCodeTableSize, opcode);
129 int opcode) {
130 g_exercise_code_table_->inst1[opcode] = inst1
560 int opcode = 0; local
    [all...]
  /external/llvm/lib/IR/
ConstantsContext.h 42 UnaryConstantExpr(unsigned Opcode, Constant *C, Type *Ty)
43 : ConstantExpr(Ty, Opcode, &Op<0>(), 1) {
59 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2,
61 : ConstantExpr(C1->getType(), Opcode, &Op<0>(), 2) {
322 : opcode(opc), subclassoptionaldata(optionalflags), subclassdata(flags),
324 uint8_t opcode; member in struct:llvm::ExprMapKeyType
330 return this->opcode == that.opcode &&
337 if (this->opcode != that.opcode) return this->opcode < that.opcode
    [all...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 185 BinaryOperatorKind opcode,
188 UnaryOperatorKind opcode,
237 BinaryOperatorKind opcode,
240 UnaryOperatorKind opcode,
276 BinaryOperatorKind opcode,
352 BinaryOperatorKind opcode,
354 assert(BinaryOperator::isAssignmentOp(opcode));
362 if (opcode == BO_Assign) {
365 opcode, capturedRHS->getType(),
374 BinaryOperator::getOpForCompoundAssignment(opcode);
    [all...]
  /dalvik/vm/compiler/codegen/arm/
ArchUtility.cpp 28 static char * decodeRegList(ArmOpcode opcode, int vector, char *buf)
36 if (opcode == kThumbPush && i == 8) {
38 } else if (opcode == kThumbPop && i == 8) {
219 decodeRegList(lir->opcode, operand, tbuf);
305 switch(lir->opcode) {
375 buildInsnString(EncodingMap[lir->opcode].name, lir, opName,
377 buildInsnString(EncodingMap[lir->opcode].fmt, lir, buf, baseAddr,
433 * de is an invalid opcode for arm.
  /dalvik/vm/compiler/codegen/mips/
CodegenDriver.cpp 131 switch (mir->dalvikInsn.opcode) {
188 switch (mir->dalvikInsn.opcode) {
242 Opcode opcode = mir->dalvikInsn.opcode; local
244 switch (opcode) {
272 static void selfVerificationBranchInsert(LIR *currentLIR, Mipsopcode opcode,
277 insn->opcode = opcode;
313 Templateopcode opcode = TEMPLATE_MEM_OP_DECODE local
944 Opcode opcode = mir->dalvikInsn.opcode; local
1722 Opcode opcode = mir->dalvikInsn.opcode; local
1786 Opcode opcode = mir->dalvikInsn.opcode; local
2031 Opcode opcode = mir->dalvikInsn.opcode; local
2733 Opcode opcode = mir->dalvikInsn.opcode; local
2758 Opcode opcode = mir->dalvikInsn.opcode; local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
Opcodes.java 20 * All the Dalvik opcode value constants. See the related spec
21 * document for the meaning and instruction format of each opcode.
25 * pseudo-opcode used for nonstandard format payload "instructions". TODO:
32 * pseudo-opcode used to indicate there is no next opcode; used
33 * in opcode chaining lists
37 /** minimum valid opcode value */
40 /** maximum valid opcode value */
43 // BEGIN(opcodes); GENERATED AUTOMATICALLY BY opcode-gen
303 // TODO: Generate these payload opcodes with opcode-gen
    [all...]
  /external/qemu/hw/
goldfish_mmc.c 166 struct mmc_opcode* opcode = mmc_opcodes;
168 while (opcode->cmd != command && opcode->cmd != -1) opcode++;
169 return opcode->name;
219 int opcode = cmd & 63; local
221 // fprintf(stderr, "goldfish_mmc_do_command opcode: %s (0x%04X), arg: %d\n", get_command_name(opcode), cmd, arg);
230 switch (opcode) {

Completed in 1198 milliseconds

<<11121314151617181920>>