HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 276 - 300 of 1460) sorted by null

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/rop/code/
FillArrayDataInsn.java 44 * @param opcode {@code non-null;} the opcode
50 public FillArrayDataInsn(Rop opcode, SourcePosition position,
54 super(opcode, position, null, sources);
56 if (opcode.getBranchingness() != Rop.BRANCH_NONE) {
PlainCstInsn.java 33 * @param opcode {@code non-null;} the opcode
39 public PlainCstInsn(Rop opcode, SourcePosition position,
42 super(opcode, position, result, sources, cst);
44 if (opcode.getBranchingness() != Rop.BRANCH_NONE) {
SwitchInsn.java 35 * @param opcode {@code non-null;} the opcode
41 public SwitchInsn(Rop opcode, SourcePosition position, RegisterSpec result,
43 super(opcode, position, result, sources);
45 if (opcode.getBranchingness() != Rop.BRANCH_SWITCH) {
ThrowingCstInsn.java 36 * @param opcode {@code non-null;} the opcode
42 public ThrowingCstInsn(Rop opcode, SourcePosition position,
45 super(opcode, position, null, sources, cst);
47 if (opcode.getBranchingness() != Rop.BRANCH_THROW) {
ThrowingInsn.java 57 * @param opcode {@code non-null;} the opcode
62 public ThrowingInsn(Rop opcode, SourcePosition position,
65 super(opcode, position, null, sources);
67 if (opcode.getBranchingness() != Rop.BRANCH_THROW) {
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
FillArrayDataInsn.java 45 * @param opcode {@code non-null;} the opcode
51 public FillArrayDataInsn(Rop opcode, SourcePosition position,
55 super(opcode, position, null, sources);
57 if (opcode.getBranchingness() != Rop.BRANCH_NONE) {
PlainCstInsn.java 33 * @param opcode {@code non-null;} the opcode
39 public PlainCstInsn(Rop opcode, SourcePosition position,
42 super(opcode, position, result, sources, cst);
44 if (opcode.getBranchingness() != Rop.BRANCH_NONE) {
SwitchInsn.java 35 * @param opcode {@code non-null;} the opcode
41 public SwitchInsn(Rop opcode, SourcePosition position, RegisterSpec result,
43 super(opcode, position, result, sources);
45 if (opcode.getBranchingness() != Rop.BRANCH_SWITCH) {
ThrowingCstInsn.java 36 * @param opcode {@code non-null;} the opcode
42 public ThrowingCstInsn(Rop opcode, SourcePosition position,
45 super(opcode, position, null, sources, cst);
47 if (opcode.getBranchingness() != Rop.BRANCH_THROW) {
ThrowingInsn.java 57 * @param opcode {@code non-null;} the opcode
62 public ThrowingInsn(Rop opcode, SourcePosition position,
65 super(opcode, position, null, sources);
67 if (opcode.getBranchingness() != Rop.BRANCH_THROW) {
  /external/javassist/src/main/javassist/bytecode/
CodeAnalyzer.java 21 class CodeAnalyzer implements Opcode {
98 private boolean processBranch(int opcode, CodeIterator ci, int index,
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) {
    [all...]
  /external/llvm/test/MC/ARM/
eh-directive-unwind_raw-diagnostics.s 50 @ CHECK: error: expected opcode expression
60 @ CHECK: error: opcode value must be a constant
70 @ CHECK: error: invalid opcode
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
AddInitTransformer.java 51 public void visitInsn(int opcode) {
52 if (opcode == Constants.RETURN) {
56 super.visitInsn(opcode);
  /external/proguard/src/proguard/optimize/info/
SideEffectInstructionChecker.java 103 byte opcode = simpleInstruction.opcode;
106 switch (opcode)
160 byte opcode = variableInstruction.opcode;
163 switch (opcode)
175 byte opcode = constantInstruction.opcode;
178 switch (opcode)
257 byte opcode = branchInstruction.opcode
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderInstruction22c.java 35 import org.jf.dexlib2.Opcode;
50 public BuilderInstruction22c(@Nonnull Opcode opcode,
54 super(opcode);
63 @Override public int getReferenceType() { return opcode.referenceType; }
BuilderInstruction3rc.java 35 import org.jf.dexlib2.Opcode;
51 public BuilderInstruction3rc(@Nonnull Opcode opcode,
55 super(opcode);
64 @Override public int getReferenceType() { return opcode.referenceType; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction20bc.java 35 import org.jf.dexlib2.Opcode;
51 public ImmutableInstruction20bc(@Nonnull Opcode opcode,
54 super(opcode);
56 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference);
  /external/v8/src/compiler/
operator.h 30 typedef uint8_t Opcode;
50 Operator(Opcode opcode, Properties properties, const char* mnemonic)
51 : opcode_(opcode), properties_(properties), mnemonic_(mnemonic) {}
56 // the opcode is stored directly in the operator object.
57 Opcode opcode() const { return opcode_; } function in class:v8::internal::compiler::Operator
94 Opcode opcode_;
106 // have just a name, an opcode, and a fixed number of inputs and outputs.
110 SimpleOperator(Opcode opcode, Properties properties, int input_count
    [all...]
  /hardware/qcom/bt/msm8960/libbt-vendor/src/
bt_vendor_qcom.c 96 static int op(bt_vendor_opcode_t opcode, void *param)
102 ALOGV("bt-vendor : op for %d", opcode);
104 switch(opcode)
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ActionServiceImpl.java 133 * Allocate an intent with a specific opcode.
135 private static Intent makeIntent(final int opcode) {
138 intent.putExtra(EXTRA_OP_CODE, opcode);
149 * Allocate an intent with a specific opcode and alarm action.
151 public static Intent makeIntent(final int opcode) {
155 intent.putExtra(EXTRA_OP_CODE, opcode);
227 final int opcode = intent.getIntExtra(EXTRA_OP_CODE, 0); local
230 LogUtil.v(TAG, "acquiring wakelock for opcode " + opcode);
232 sWakeLock.acquire(context, intent, opcode);
257 final int opcode = intent.getIntExtra(EXTRA_OP_CODE, 0); local
    [all...]
  /external/v8/src/compiler/arm/
instruction-selector-arm.cc 19 InstructionOperand* UseOperand(Node* node, InstructionCode opcode) {
20 if (CanBeImmediate(node, opcode)) {
26 bool CanBeImmediate(Node* node, InstructionCode opcode) {
30 switch (ArchOpcodeField::decode(opcode)) {
112 static void VisitRRRFloat64(InstructionSelector* selector, ArchOpcode opcode,
115 selector->Emit(opcode, g.DefineAsRegister(node),
126 if (node->opcode() != IrOpcode::kWord32Ror) return false;
145 if (node->opcode() != IrOpcode::kWord32Sar) return false;
164 if (node->opcode() != IrOpcode::kWord32Shl) return false;
183 if (node->opcode() != IrOpcode::kWord32Shr) return false
291 ArchOpcode opcode; local
346 ArchOpcode opcode; local
383 InstructionCode opcode = kArmBic; local
456 InstructionCode opcode = kArmMvn; local
477 InstructionCode opcode = kArmMov; local
805 InstructionCode opcode; local
914 InstructionCode opcode = local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_context.c 477 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_LIST)
485 ret->header.opcode = header->opcode;
499 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_INFO)
510 ret->header.opcode = header->opcode;
526 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_DRAW_BLOCK)
537 ret->header.opcode = header->opcode;
554 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_DRAW_STEP
    [all...]
  /external/v8/src/compiler/arm64/
instruction-selector-arm64.cc 41 if (node->opcode() == IrOpcode::kInt32Constant)
43 else if (node->opcode() == IrOpcode::kInt64Constant)
86 static void VisitRRR(InstructionSelector* selector, ArchOpcode opcode,
89 selector->Emit(opcode, g.DefineAsRegister(node),
95 static void VisitRRRFloat64(InstructionSelector* selector, ArchOpcode opcode,
98 selector->Emit(opcode, g.DefineAsRegister(node),
104 static void VisitRRO(InstructionSelector* selector, ArchOpcode opcode,
107 selector->Emit(opcode, g.DefineAsRegister(node),
116 InstructionCode opcode, ImmediateMode operand_mode,
143 Instruction* instr = selector->Emit(cont->Encode(opcode), output_count
164 ArchOpcode opcode; local
227 ArchOpcode opcode; local
668 InstructionCode opcode; local
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
StubMethodAdapter.java 250 public void visitInsn(int opcode) {
252 switch (opcode) {
265 mParentVisitor.visitInsn(opcode);
285 public void visitMethodInsn(int opcode, String owner, String name, String desc) {
287 mParentVisitor.visitMethodInsn(opcode, owner, name, desc);
292 public void visitFieldInsn(int opcode, String owner, String name, String desc) {
294 mParentVisitor.visitFieldInsn(opcode, owner, name, desc);
313 public void visitIntInsn(int opcode, int operand) {
315 mParentVisitor.visitIntInsn(opcode, operand);
320 public void visitJumpInsn(int opcode, Label label)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocketConnectionRFC6455.java 51 * |F|R|R|R| opcode|M| Payload len | Extended payload length |
107 static boolean isControlFrame(byte opcode)
109 return (opcode&OP_CONTROL)!=0;
453 public void sendFrame(byte flags,byte opcode, byte[] content, int offset, int length) throws IOException
457 _outbound.addFrame(flags,opcode,content,offset,length);
566 public boolean isControl(byte opcode)
568 return isControlFrame(opcode);
572 public boolean isText(byte opcode)
574 return opcode==OP_TEXT;
578 public boolean isBinary(byte opcode)
    [all...]

Completed in 946 milliseconds

<<11121314151617181920>>