Searched refs:opcode (Results 1 - 25 of 1148) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dbuiltins-arm-msvc-compat-error.c3 void emit_error(unsigned int opcode) { argument
4 __emit(opcode); // expected-error {{argument to '__emit' must be a constant integer}}
/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/annotation-tools/asmx/src/org/objectweb/asm/tree/
H A DIntInsnNode.java49 * @param opcode the opcode of the instruction to be constructed. This
50 * opcode must be BIPUSH, SIPUSH or NEWARRAY.
53 public IntInsnNode(final int opcode, final int operand) { argument
54 super(opcode);
59 * Sets the opcode of this instruction.
61 * @param opcode the new instruction opcode. This opcode must be BIPUSH,
64 public void setOpcode(final int opcode) { argument
[all...]
H A DTypeInsnNode.java51 * @param opcode the opcode of the type instruction to be constructed. This
52 * opcode must be NEW, ANEWARRAY, CHECKCAST or INSTANCEOF.
56 public TypeInsnNode(final int opcode, final String desc) { argument
57 super(opcode);
62 * Sets the opcode of this instruction.
64 * @param opcode the new instruction opcode. This opcode must be NEW,
67 public void setOpcode(final int opcode) { argument
[all...]
H A DVarInsnNode.java52 * @param opcode the opcode of the local variable instruction to be
53 * constructed. This opcode must be ILOAD, LLOAD, FLOAD, DLOAD,
58 public VarInsnNode(final int opcode, final int var) { argument
59 super(opcode);
64 * Sets the opcode of this instruction.
66 * @param opcode the new instruction opcode. This opcode must be ILOAD,
70 public void setOpcode(final int opcode) { argument
[all...]
H A DJumpInsnNode.java52 * @param opcode the opcode of the type instruction to be constructed. This
53 * opcode must be IFEQ, IFNE, IFLT, IFGE, IFGT, IFLE, IF_ICMPEQ,
60 public JumpInsnNode(final int opcode, final Label label) { argument
61 super(opcode);
66 * Sets the opcode of this instruction.
68 * @param opcode the new instruction opcode. This opcode must be IFEQ, IFNE,
73 public void setOpcode(final int opcode) { argument
[all...]
H A DInsnNode.java51 * Returns the {@link InsnNode} corresponding to the given opcode.
55 * @param opcode an instruction opcode.
56 * @return the {@link InsnNode} corresponding to the given opcode.
58 public final static InsnNode getByOpcode(final int opcode) { argument
59 return INSNS[opcode];
65 * @param opcode the opcode of the instruction to be constructed. This
66 * opcode must be NOP, ACONST_NULL, ICONST_M1, ICONST_0, ICONST_1,
80 public InsnNode(final int opcode) { argument
[all...]
H A DFieldInsnNode.java61 * @param opcode the opcode of the type instruction to be constructed. This
62 * opcode must be GETSTATIC, PUTSTATIC, GETFIELD or PUTFIELD.
69 final int opcode,
74 super(opcode);
81 * Sets the opcode of this instruction.
83 * @param opcode the new instruction opcode. This opcode must be GETSTATIC,
86 public void setOpcode(final int opcode) { argument
68 FieldInsnNode( final int opcode, final String owner, final String name, final String desc) argument
[all...]
H A DMethodInsnNode.java61 * @param opcode the opcode of the type instruction to be constructed. This
62 * opcode must be INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or
70 final int opcode,
75 super(opcode);
82 * Sets the opcode of this instruction.
84 * @param opcode the new instruction opcode. This opcode must be
87 public void setOpcode(final int opcode) { argument
69 MethodInsnNode( final int opcode, final String owner, final String name, final String desc) argument
[all...]
H A DAbstractInsnNode.java124 * The opcode of this instruction.
126 protected int opcode; field in class:AbstractInsnNode
153 * @param opcode the opcode of the instruction to be constructed.
155 protected AbstractInsnNode(final int opcode) { argument
156 this.opcode = opcode;
160 * Returns the opcode of this instruction.
162 * @return the opcode of this instruction.
165 return opcode;
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DInstructionUtil.java37 public static boolean isInvokeStatic(Opcode opcode) { argument
38 return opcode == Opcode.INVOKE_STATIC || opcode == Opcode.INVOKE_STATIC_RANGE;
41 public static boolean isInvokePolymorphic(Opcode opcode) { argument
42 return opcode == Opcode.INVOKE_POLYMORPHIC || opcode == Opcode.INVOKE_POLYMORPHIC_RANGE;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
H A DDexBackedInstruction.java45 @Nonnull public final Opcode opcode; field in class:DexBackedInstruction
49 @Nonnull Opcode opcode,
52 this.opcode = opcode;
56 @Nonnull public Opcode getOpcode() { return opcode; }
57 @Override public int getCodeUnits() { return opcode.format.size / 2; }
67 Opcode opcode = reader.dexBuf.getOpcodes().getOpcodeByValue(opcodeValue);
69 Instruction instruction = buildInstruction(reader.dexBuf, opcode, reader.getOffset());
74 private static DexBackedInstruction buildInstruction(@Nonnull DexBackedDexFile dexFile, @Nullable Opcode opcode, argument
76 if (opcode
48 DexBackedInstruction(@onnull DexBackedDexFile dexFile, @Nonnull Opcode opcode, int instructionStart) argument
[all...]
/external/python/cpython3/Tools/scripts/
H A Dgenerate_opcode_h.py1 # This script generates the opcode.h header file.
17 entering an except handler. It is not an opcode but we define it here
36 def main(opcode_py, outfile='Include/opcode.h'):
37 opcode = {}
38 exec(open(opcode_py).read(), opcode)
39 opmap = opcode['opmap']
42 for name in opcode['opname']:
47 ('HAVE_ARGUMENT', opcode['HAVE_ARGUMENT']))
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_opcode_test.cc39 auto opcode = static_cast<HloOpcode>(i); local
41 EXPECT_EQ(opcode, StringToHloOpcode(HloOpcodeString(opcode)).ValueOrDie());
44 switch (opcode) {
51 EXPECT_TRUE(HloOpcodeIsComparison(opcode));
54 EXPECT_FALSE(HloOpcodeIsComparison(opcode));
56 switch (opcode) {
62 EXPECT_TRUE(HloOpcodeIsVariadic(opcode));
65 EXPECT_FALSE(HloOpcodeIsVariadic(opcode));
/external/python/cpython3/Python/
H A Dwordcode_helpers.h6 # define PACKOPARG(opcode, oparg) ((_Py_CODEUNIT)(((opcode) << 8) | (oparg)))
8 # define PACKOPARG(opcode, oparg) ((_Py_CODEUNIT)(((oparg) << 8) | (opcode)))
25 write_op_arg(_Py_CODEUNIT *codestr, unsigned char opcode, argument
36 *codestr++ = PACKOPARG(opcode, oparg & 0xff);
/external/proguard/src/proguard/classfile/instruction/
H A DBranchInstruction.java44 public BranchInstruction(byte opcode, int branchOffset) argument
46 this.opcode = opcode;
58 this.opcode = branchInstruction.opcode;
70 switch (opcode)
76 default: return opcode;
86 if (opcode == InstructionConstants.OP_GOTO_W)
88 opcode = InstructionConstants.OP_GOTO;
90 else if (opcode
[all...]
H A DSwitchInstruction.java44 public SwitchInstruction(byte opcode, argument
48 this.opcode = opcode;
61 this.opcode = switchInstruction.opcode;
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Dinstruction_fusion.cc29 hlo.opcode() == HloOpcode::kBroadcast ||
30 hlo.opcode() == HloOpcode::kConcatenate ||
31 hlo.opcode() == HloOpcode::kDynamicSlice ||
32 hlo.opcode() == HloOpcode::kDynamicUpdateSlice ||
33 hlo.opcode() == HloOpcode::kFusion ||
34 hlo.opcode() == HloOpcode::kGetTupleElement ||
35 hlo.opcode() == HloOpcode::kPad ||
36 hlo.opcode() == HloOpcode::kReduce ||
37 hlo.opcode() == HloOpcode::kReduceWindow ||
38 hlo.opcode()
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstructionFactory.java49 public ImmutableInstruction10t makeInstruction10t(@Nonnull Opcode opcode, argument
51 return new ImmutableInstruction10t(opcode, codeOffset);
54 public ImmutableInstruction10x makeInstruction10x(@Nonnull Opcode opcode) { argument
55 return new ImmutableInstruction10x(opcode);
58 public ImmutableInstruction11n makeInstruction11n(@Nonnull Opcode opcode, argument
61 return new ImmutableInstruction11n(opcode, registerA, literal);
64 public ImmutableInstruction11x makeInstruction11x(@Nonnull Opcode opcode, argument
66 return new ImmutableInstruction11x(opcode, registerA);
69 public ImmutableInstruction12x makeInstruction12x(@Nonnull Opcode opcode, argument
72 return new ImmutableInstruction12x(opcode, register
75 makeInstruction20bc(@onnull Opcode opcode, int verificationError, @Nonnull Reference reference) argument
81 makeInstruction20t(@onnull Opcode opcode, int codeOffset) argument
86 makeInstruction21c(@onnull Opcode opcode, int registerA, @Nonnull Reference reference) argument
92 makeInstruction21ih(@onnull Opcode opcode, int registerA, int literal) argument
98 makeInstruction21lh(@onnull Opcode opcode, int registerA, long literal) argument
104 makeInstruction21s(@onnull Opcode opcode, int registerA, int literal) argument
110 makeInstruction21t(@onnull Opcode opcode, int registerA, int codeOffset) argument
116 makeInstruction22b(@onnull Opcode opcode, int registerA, int registerB, int literal) argument
123 makeInstruction22c(@onnull Opcode opcode, int registerA, int registerB, @Nonnull Reference reference) argument
130 makeInstruction22s(@onnull Opcode opcode, int registerA, int registerB, int literal) argument
137 makeInstruction22t(@onnull Opcode opcode, int registerA, int registerB, int codeOffset) argument
144 makeInstruction22x(@onnull Opcode opcode, int registerA, int registerB) argument
150 makeInstruction23x(@onnull Opcode opcode, int registerA, int registerB, int registerC) argument
157 makeInstruction30t(@onnull Opcode opcode, int codeOffset) argument
162 makeInstruction31c(@onnull Opcode opcode, int registerA, @Nonnull Reference reference) argument
168 makeInstruction31i(@onnull Opcode opcode, int registerA, int literal) argument
174 makeInstruction31t(@onnull Opcode opcode, int registerA, int codeOffset) argument
180 makeInstruction32x(@onnull Opcode opcode, int registerA, int registerB) argument
186 makeInstruction35c(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, @Nonnull Reference reference) argument
198 makeInstruction3rc(@onnull Opcode opcode, int startRegister, int registerCount, @Nonnull Reference reference) argument
205 makeInstruction51l(@onnull Opcode opcode, int registerA, long literal) argument
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DBadBytecode.java22 public BadBytecode(int opcode) { argument
23 super("bytecode " + opcode);
/external/v8/tools/turbolizer/
H A Dnode.js20 return this.opcode == 'Parameter' || this.opcode.endsWith('Constant');
26 return this.opcode.startsWith('JS');
30 return this.opcode.endsWith('Phi') ||
31 this.opcode.startsWith('Boolean') ||
32 this.opcode.startsWith('Number') ||
33 this.opcode.startsWith('String') ||
34 this.opcode.startsWith('Change') ||
35 this.opcode.startsWith('Object') ||
36 this.opcode
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DInstructionFactory.java45 Instruction makeInstruction10t(@Nonnull Opcode opcode, int codeOffset); argument
46 Instruction makeInstruction10x(@Nonnull Opcode opcode); argument
47 Instruction makeInstruction11n(@Nonnull Opcode opcode, int registerA, int literal); argument
48 Instruction makeInstruction11x(@Nonnull Opcode opcode, int registerA); argument
49 Instruction makeInstruction12x(@Nonnull Opcode opcode, int registerA, int registerB); argument
50 Instruction makeInstruction20bc(@Nonnull Opcode opcode, int verificationError, @Nonnull Ref reference); argument
51 Instruction makeInstruction20t(@Nonnull Opcode opcode, int codeOffset); argument
52 Instruction makeInstruction21c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference); argument
53 Instruction makeInstruction21ih(@Nonnull Opcode opcode, int registerA, int literal); argument
54 Instruction makeInstruction21lh(@Nonnull Opcode opcode, in argument
55 makeInstruction21s(@onnull Opcode opcode, int registerA, int literal) argument
56 makeInstruction21t(@onnull Opcode opcode, int registerA, int codeOffset) argument
57 makeInstruction22b(@onnull Opcode opcode, int registerA, int registerB, int literal) argument
58 makeInstruction22c(@onnull Opcode opcode, int registerA, int registerB, @Nonnull Ref reference) argument
59 makeInstruction22s(@onnull Opcode opcode, int registerA, int registerB, int literal) argument
60 makeInstruction22t(@onnull Opcode opcode, int registerA, int registerB, int codeOffset) argument
61 makeInstruction22x(@onnull Opcode opcode, int registerA, int registerB) argument
62 makeInstruction23x(@onnull Opcode opcode, int registerA, int registerB, int registerC) argument
63 makeInstruction30t(@onnull Opcode opcode, int codeOffset) argument
64 makeInstruction31c(@onnull Opcode opcode, int registerA, @Nonnull Ref reference) argument
65 makeInstruction31i(@onnull Opcode opcode, int registerA, int literal) argument
66 makeInstruction31t(@onnull Opcode opcode, int registerA, int codeOffset) argument
67 makeInstruction32x(@onnull Opcode opcode, int registerA, int registerB) argument
68 makeInstruction35c(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, @Nonnull Ref reference) argument
70 makeInstruction3rc(@onnull Opcode opcode, int startRegister, int registerCount, @Nonnull Ref reference) argument
72 makeInstruction51l(@onnull Opcode opcode, int registerA, long literal) argument
[all...]
/external/v8/src/compiler/
H A Dnode-matchers.cc12 return IrOpcode::IsComparisonOpcode(opcode());
18 if (branch->opcode() != IrOpcode::kBranch) return;
20 if (use->opcode() == IrOpcode::kIfTrue) {
23 } else if (use->opcode() == IrOpcode::kIfFalse) {
37 if (merge->opcode() != IrOpcode::kMerge) return;
44 if (branch->opcode() != IrOpcode::kBranch) return;
45 if (input0->opcode() == IrOpcode::kIfTrue &&
46 input1->opcode() == IrOpcode::kIfFalse) {
50 } else if (input0->opcode() == IrOpcode::kIfFalse &&
51 input1->opcode()
[all...]
H A Doperator-properties.cc17 IrOpcode::Value opcode = static_cast<IrOpcode::Value>(op->opcode()); local
18 return IrOpcode::IsJsOpcode(opcode);
24 switch (op->opcode()) {
127 Operator::Opcode const opcode = op->opcode(); member in class:v8::internal::compiler::Operator
128 return opcode == IrOpcode::kStart || opcode == IrOpcode::kEnd ||
129 opcode == IrOpcode::kDead || opcode
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Dcpu_instruction_fusion.cc33 hlo.opcode() == HloOpcode::kBitcast ||
34 hlo.opcode() == HloOpcode::kBroadcast ||
35 hlo.opcode() == HloOpcode::kConcatenate ||
36 hlo.opcode() == HloOpcode::kDynamicSlice ||
37 hlo.opcode() == HloOpcode::kDynamicUpdateSlice ||
38 hlo.opcode() == HloOpcode::kPad ||
39 hlo.opcode() == HloOpcode::kReshape ||
40 hlo.opcode() == HloOpcode::kReverse ||
41 hlo.opcode() == HloOpcode::kSlice ||
42 hlo.opcode()
[all...]

Completed in 504 milliseconds

1234567891011>>