HomeSort by relevance Sort by last modified time
    Searched full:instruction (Results 251 - 275 of 6099) sorted by null

<<11121314151617181920>>

  /external/llvm/test/MC/Mips/mips1/
invalid-mips32.s 9 sync 0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
10 sync 1 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips3/
invalid-mips32.s 9 sync 0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
10 sync 1 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
invalid-mips4-wrong-error.s 9 bc1fl $fcc7,27 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
10 bc1tl $fcc7,27 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
  /external/llvm/test/MC/Mips/mips32/
invalid-mips64.s 8 dclo $s2,$a2 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
9 dclz $s0,$t9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips32r2/
invalid-mips64r2.s 8 dsbh $v1,$t6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
9 dshd $v0,$sp # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips32r3/
invalid-mips64r2.s 8 dsbh $v1,$t6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
9 dshd $v0,$sp # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips32r5/
invalid-mips64r2.s 8 dsbh $v1,$t6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
9 dshd $v0,$sp # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips32r6/
invalid-mips2-wrong-error.s 9 bc2tl 4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
10 bc2fl 4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
invalid-mips5.s 8 luxc1 $f19,$s6($s5) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
9 suxc1 $f12,$k1($13) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips4/
invalid-mips32.s 9 sync 0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
10 sync 1 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
invalid-mips5.s 8 luxc1 $f19,$s6($s5) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
9 suxc1 $f12,$k1($t1) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips5/
invalid-mips32.s 9 sync 0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
10 sync 1 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/
set-nodsp.s 8 # CHECK: error: instruction requires a CPU feature not currently enabled
12 # CHECK-NOT: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/X86/
x86_errors.s 14 // 32: test.s:8:2: error: invalid instruction mnemonic 'movi'
19 movl 0(%rax), 0(%edx) // error: invalid operand for instruction
21 // 32: error: instruction requires: 64-bit mode
47 // 32: error: invalid operand for instruction
54 // 32: error: invalid operand for instruction
55 // 64: error: invalid operand for instruction
58 // 32: error: invalid operand for instruction
59 // 64: error: invalid operand for instruction
  /external/llvm/test/Transforms/SCCP/
apint-basictest2.ll 1 ; This is a basic sanity check for constant propagation. The add instruction
2 ; and phi instruction should be eliminated.
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
UnresolvedOdexInstruction.java 35 import org.jf.dexlib2.iface.instruction.Instruction;
38 * This represents a "fixed" odexed instruction, where the object register is always null and so the correct type
39 * can't be determined. Typically, these are replaced by an equivalent instruction that would have the same
42 public class UnresolvedOdexInstruction implements Instruction {
43 public final Instruction originalInstruction;
44 //the register number that holds the (null) reference type that the instruction operates on
47 public UnresolvedOdexInstruction(Instruction originalInstruction, int objectRegisterNumber) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction11n.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction11n;
55 public static ImmutableInstruction11n of(Instruction11n instruction) {
56 if (instruction instanceof ImmutableInstruction11n) {
57 return (ImmutableInstruction11n)instruction;
60 instruction.getOpcode(),
61 instruction.getRegisterA(),
62 instruction.getNarrowLiteral());
ImmutableInstruction12x.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction12x;
55 public static ImmutableInstruction12x of(Instruction12x instruction) {
56 if (instruction instanceof ImmutableInstruction12x) {
57 return (ImmutableInstruction12x)instruction;
60 instruction.getOpcode(),
61 instruction.getRegisterA(),
62 instruction.getRegisterB());
ImmutableInstruction20bc.java 32 package org.jf.dexlib2.immutable.instruction;
37 import org.jf.dexlib2.iface.instruction.formats.Instruction20bc;
59 public static ImmutableInstruction20bc of(Instruction20bc instruction) {
60 if (instruction instanceof ImmutableInstruction20bc) {
61 return (ImmutableInstruction20bc)instruction;
64 instruction.getOpcode(),
65 instruction.getVerificationError(),
66 instruction.getReference());
ImmutableInstruction21c.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction21c;
58 public static ImmutableInstruction21c of(Instruction21c instruction) {
59 if (instruction instanceof ImmutableInstruction21c) {
60 return (ImmutableInstruction21c)instruction;
63 instruction.getOpcode(),
64 instruction.getRegisterA(),
65 instruction.getReference());
ImmutableInstruction21ih.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction21ih;
55 public static ImmutableInstruction21ih of(Instruction21ih instruction) {
56 if (instruction instanceof ImmutableInstruction21ih) {
57 return (ImmutableInstruction21ih)instruction;
60 instruction.getOpcode(),
61 instruction.getRegisterA(),
62 instruction.getNarrowLiteral());
ImmutableInstruction21lh.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction21lh;
55 public static ImmutableInstruction21lh of(Instruction21lh instruction) {
56 if (instruction instanceof ImmutableInstruction21lh) {
57 return (ImmutableInstruction21lh)instruction;
60 instruction.getOpcode(),
61 instruction.getRegisterA(),
62 instruction.getWideLiteral());
ImmutableInstruction21s.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction21s;
55 public static ImmutableInstruction21s of(Instruction21s instruction) {
56 if (instruction instanceof ImmutableInstruction21s) {
57 return (ImmutableInstruction21s)instruction;
60 instruction.getOpcode(),
61 instruction.getRegisterA(),
62 instruction.getNarrowLiteral());
ImmutableInstruction21t.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction21t;
55 public static ImmutableInstruction21t of(Instruction21t instruction) {
56 if (instruction instanceof ImmutableInstruction21t) {
57 return (ImmutableInstruction21t)instruction;
60 instruction.getOpcode(),
61 instruction.getRegisterA(),
62 instruction.getCodeOffset());
ImmutableInstruction22x.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction22x;
55 public static ImmutableInstruction22x of(Instruction22x instruction) {
56 if (instruction instanceof ImmutableInstruction22x) {
57 return (ImmutableInstruction22x)instruction;
60 instruction.getOpcode(),
61 instruction.getRegisterA(),
62 instruction.getRegisterB());

Completed in 84 milliseconds

<<11121314151617181920>>