HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 1 - 25 of 2827) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
builtins-arm-msvc-compat-error.c 3 void emit_error(unsigned int opcode) {
4 __emit(opcode); // expected-error {{argument to '__emit' must be a constant integer}}
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
reflect.h 39 inline bool IsDebugInst(SpvOp opcode) {
40 return (opcode >= SpvOpSourceContinued && opcode <= SpvOpLine) ||
41 opcode == SpvOpNoLine || opcode == SpvOpModuleProcessed;
43 inline bool IsDebugLineInst(SpvOp opcode) {
44 return opcode == SpvOpLine || opcode == SpvOpNoLine;
46 inline bool IsAnnotationInst(SpvOp opcode) {
47 return opcode >= SpvOpDecorate && opcode <= SpvOpGroupMemberDecorate
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Util.java 18 import javassist.bytecode.Opcode;
25 public class Util implements Opcode {
27 int opcode = iter.byteAt(pos); local
28 pos += (opcode == JSR_W || opcode == GOTO_W) ? iter.s32bitAt(pos + 1) : iter.s16bitAt(pos + 1);
32 public static boolean isJumpInstruction(int opcode) {
33 return (opcode >= IFEQ && opcode <= JSR) || opcode == IFNULL || opcode == IFNONNULL || opcode == JSR_W || opcode == GOTO_W
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
prefetch.s 1 .macro try opcode:vararg
2 .byte \opcode, 0x00
3 .byte \opcode, 0x08
4 .byte \opcode, 0x10
5 .byte \opcode, 0x18
6 .byte \opcode, 0x20
7 .byte \opcode, 0x28
8 .byte \opcode, 0x30
9 .byte \opcode, 0x38
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mn10300/
movpc.l 2 .*:6: Error: Invalid opcode/operands
3 .*:7: Error: Unrecognized opcode: .*
4 .*:7: Error: Invalid opcode/operands
5 .*:8: Error: Unrecognized opcode: .*
6 .*:8: Error: Invalid opcode/operands
7 .*:9: Error: Unrecognized opcode: .*
8 .*:9: Error: Invalid opcode/operands
9 .*:10: Error: Unrecognized opcode: .*
10 .*:10: Error: Invalid opcode/operands
11 .*:11: Error: Unrecognized opcode: .
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
InstructionUtil.java 34 import org.jf.dexlib2.Opcode;
37 public static boolean isInvokeStatic(Opcode opcode) {
38 return opcode == Opcode.INVOKE_STATIC || opcode == Opcode.INVOKE_STATIC_RANGE;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
ase-errors-4.l 2 .*:5: Error: unrecognized opcode `ldx \$4,\$5\(\$6\)'
3 .*:6: Error: opcode not supported.* `absq_s\.qb \$3,\$4'
4 .*:9: Error: opcode not supported.* `lbux \$4,\$5\(\$6\)'
5 .*:10: Error: opcode not supported.* `absq_s\.qb \$3,\$4'
7 .*:18: Error: opcode not supported.* `lbux \$4,\$5\(\$6\)'
8 .*:19: Error: opcode not supported.* `absq_s\.qb \$3,\$4'
10 .*:26: Error: opcode not supported.* `aclr 4,100\(\$4\)'
13 .*:30: Error: unrecognized opcode `add.ob \$f4,\$f6,\$f8'
16 .*:35: Error: unrecognized opcode `addr.ps \$f4,\$f6,\$f8'
19 .*:40: Error: unrecognized opcode `dmt *
    [all...]
ase-errors-3.l 2 .*:5: Error: unrecognized opcode `ldx \$4,\$5\(\$6\)'
3 .*:6: Error: opcode not supported.* `absq_s\.qb \$3,\$4'
4 .*:9: Error: opcode not supported.* `lbux \$4,\$5\(\$6\)'
5 .*:10: Error: opcode not supported.* `absq_s\.qb \$3,\$4'
7 .*:18: Error: opcode not supported.* `lbux \$4,\$5\(\$6\)'
8 .*:19: Error: opcode not supported.* `absq_s\.qb \$3,\$4'
10 .*:26: Error: opcode not supported.* `aclr 4,100\(\$4\)'
14 .*:30: Error: unrecognized opcode `add.ob \$f4,\$f6,\$f8'
18 .*:35: Error: unrecognized opcode `addr.ps \$f4,\$f6,\$f8'
21 .*:40: Error: unrecognized opcode `dmt *
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction.java 34 import org.jf.dexlib2.Opcode;
45 @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); local
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
opcode.h 43 // Combines word_count and opcode enumerant in single word.
44 uint32_t spvOpcodeMake(uint16_t word_count, SpvOp opcode);
46 // Splits word into into two constituent parts: word_count and opcode.
48 uint16_t* opcode);
50 // Finds the named opcode in the given opcode table. On success, returns
55 // Finds the opcode by enumerant in the given opcode table. On success, returns
58 const SpvOp opcode,
61 // Determines if the opcode has capability requirements. Returns zero if false
    [all...]
  /art/runtime/interpreter/mterp/x86/
fpcmp.S 24 jp .L${opcode}_nan_is_${nanval}
25 je .L${opcode}_finish
26 jb .L${opcode}_less
27 .L${opcode}_nan_is_pos:
29 jmp .L${opcode}_finish
30 .L${opcode}_nan_is_neg:
31 .L${opcode}_less:
33 .L${opcode}_finish:
op_cmp_long.S 10 jl .L${opcode}_smaller
11 jg .L${opcode}_bigger
15 ja .L${opcode}_bigger
16 jb .L${opcode}_smaller
17 .L${opcode}_finish:
21 .L${opcode}_bigger:
23 jmp .L${opcode}_finish
25 .L${opcode}_smaller:
27 jmp .L${opcode}_finish
  /art/runtime/interpreter/mterp/x86_64/
fpcmp.S 24 jp .L${opcode}_nan_is_${nanval}
25 je .L${opcode}_finish
26 jb .L${opcode}_less
27 .L${opcode}_nan_is_pos:
29 jmp .L${opcode}_finish
30 .L${opcode}_nan_is_neg:
31 .L${opcode}_less:
33 .L${opcode}_finish:
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
OpcodeInfo.java 27 public final Opcode opcode; field in class:OpcodeInfo
35 public OpcodeInfo(Opcode opcode, String name, int opcodeValue, AbstractFormat fmt) {
36 this.opcode = opcode;
  /dalvik/dx/src/com/android/dx/io/instructions/
FillArrayDataPayloadDecodedInstruction.java 39 int opcode, Object data, int size, int elementWidth) {
40 super(format, opcode, 0, null, 0, 0L);
51 int opcode, byte[] data) {
52 this(format, opcode, data, data.length, 1);
59 int opcode, short[] data) {
60 this(format, opcode, data, data.length, 2);
67 int opcode, int[] data) {
68 this(format, opcode, data, data.length, 4);
75 int opcode, long[] data) {
76 this(format, opcode, data, data.length, 8)
    [all...]
  /toolchain/binutils/binutils-2.25/include/opcode/
tic4x.h 227 unsigned long opcode; member in struct:tic4x_inst
235 /* Opcode infix
309 #define A_CLASS_INSN(name, opcode, level) \
310 { name, opcode|0x00000000, 0xffe00000, "Q;R", level }, \
311 { name, opcode|0x00200000, 0xffe00000, "@,R", level }, \
312 { name, opcode|0x00400000, 0xffe00000, "*,R", level }, \
313 { name, opcode|0x00600000, 0xffe00000, "S,R", level }
322 #define AB_CLASS_INSN(name, opcode, level) \
323 { name, opcode|0x40000000, 0xf0600000, "Q;R", level }, \
324 { name, opcode|0x40200000, 0xf0600000, "@,R", level },
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
BranchInstruction.java 44 public BranchInstruction(byte opcode, int branchOffset)
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 == InstructionConstants.OP_JSR_W
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstructionFactory.java 34 import org.jf.dexlib2.Opcode;
49 public ImmutableInstruction10t makeInstruction10t(@Nonnull Opcode opcode,
51 return new ImmutableInstruction10t(opcode, codeOffset);
54 public ImmutableInstruction10x makeInstruction10x(@Nonnull Opcode opcode) {
55 return new ImmutableInstruction10x(opcode);
58 public ImmutableInstruction11n makeInstruction11n(@Nonnull Opcode opcode,
61 return new ImmutableInstruction11n(opcode, registerA, literal)
    [all...]
  /external/v8/src/wasm/
wasm-opcodes.cc 15 const char* WasmOpcodes::OpcodeName(WasmOpcode opcode) {
16 switch (opcode) {
17 #define DECLARE_NAME_CASE(name, opcode, sig) \
28 const char* WasmOpcodes::ShortOpcodeName(WasmOpcode opcode) {
29 switch (opcode) {
30 #define DECLARE_NAME_CASE(name, opcode, sig) \
41 bool WasmOpcodes::IsPrefixOpcode(WasmOpcode opcode) {
42 switch (opcode) {
43 #define CHECK_PREFIX(name, opcode) \
95 #define SET_SIG_TABLE(name, opcode, sig)
    [all...]
  /art/runtime/interpreter/mterp/arm64/
op_return.S 12 b.ne .L${opcode}_check
13 .L${opcode}_return:
17 .L${opcode}_check:
19 b .L${opcode}_return
op_return_void.S 6 b.ne .L${opcode}_check
7 .L${opcode}_return:
10 .L${opcode}_check:
12 b .L${opcode}_return
op_return_void_no_barrier.S 4 b.ne .L${opcode}_check
5 .L${opcode}_return:
8 .L${opcode}_check:
10 b .L${opcode}_return
op_return_wide.S 11 b.ne .L${opcode}_check
12 .L${opcode}_return:
16 .L${opcode}_check:
18 b .L${opcode}_return
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
TranslationAdvice.java 28 * instruction with the given opcode operating on the given arguments,
33 * @param opcode {@code non-null;} the opcode
39 public boolean hasConstantOperation(Rop opcode,
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);
  /dalvik/dx/src/com/android/dx/rop/code/
TranslationAdvice.java 28 * instruction with the given opcode operating on the given arguments,
33 * @param opcode {@code non-null;} the opcode
39 public boolean hasConstantOperation(Rop opcode,
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);

Completed in 364 milliseconds

1 2 3 4 5 6 7 8 91011>>