HomeSort by relevance Sort by last modified time
    Searched refs:instruction (Results 26 - 50 of 796) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/
SwitchElement.java 32 package org.jf.dexlib2.iface.instruction;
ThreeRegisterInstruction.java 32 package org.jf.dexlib2.iface.instruction;
TwoRegisterInstruction.java 32 package org.jf.dexlib2.iface.instruction;
VariableRegisterInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface VariableRegisterInstruction extends Instruction {
VerificationErrorInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface VerificationErrorInstruction extends Instruction {
VtableIndexInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface VtableIndexInstruction extends Instruction {
WideLiteralInstruction.java 32 package org.jf.dexlib2.iface.instruction;
34 public interface WideLiteralInstruction extends Instruction {
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItemFactory.java 33 import org.jf.dexlib2.iface.instruction.Instruction;
34 import org.jf.dexlib2.iface.instruction.OffsetInstruction;
35 import org.jf.dexlib2.iface.instruction.formats.ArrayPayload;
36 import org.jf.dexlib2.iface.instruction.formats.PackedSwitchPayload;
37 import org.jf.dexlib2.iface.instruction.formats.SparseSwitchPayload;
44 MethodDefinition methodDef, int codeAddress, Instruction instruction) {
46 if (instruction instanceof OffsetInstruction) {
48 (OffsetInstruction)instruction);
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java 41 import org.jf.dexlib2.builder.instruction.*;
46 import org.jf.dexlib2.iface.instruction.Instruction;
47 import org.jf.dexlib2.iface.instruction.SwitchElement;
48 import org.jf.dexlib2.iface.instruction.formats.*;
68 for (Instruction instruction: methodImplementation.getInstructions()) {
69 codeAddress += instruction.getCodeUnits();
84 for (final Instruction instruction: methodImplementation.getInstructions())
    [all...]
  /external/valgrind/main/none/tests/mips64/
macro_int.h 1 #define TEST1(instruction, RSval, RTval, RD, RS, RT) \
8 instruction "\n\t" \
15 instruction, out, (long long) RSval, \
19 #define TEST2(instruction, RSval, imm, RT, RS) \
25 instruction "\n\t" \
32 instruction, out, (long long) RSval, imm); \
35 #define TEST3(instruction, RSval, RD, RS) \
41 instruction "\n\t" \
48 instruction, out, (long long) RSval); \
51 #define TEST4(instruction, RSval, RTval, RS, RT)
    [all...]
  /external/llvm/test/MC/Mips/mips32r6/
invalid-mips2-wrong-error.s 9 beql $1,$2,4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
10 bgezall $3,8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
11 bgezl $3,8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
12 bgtzl $4,16 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
13 blezl $3,8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
14 bltzall $3,8 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
15 bltzl $4,16 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
16 bnel $1,$2,4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
17 bc1tl 4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
18 bc1fl 4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction10x.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction10x;
47 public static ImmutableInstruction10x of(Instruction10x instruction) {
48 if (instruction instanceof ImmutableInstruction10x) {
49 return (ImmutableInstruction10x)instruction;
51 return new ImmutableInstruction10x(instruction.getOpcode());
ImmutableUnknownInstruction.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.UnknownInstruction;
48 public static ImmutableUnknownInstruction of(UnknownInstruction instruction) {
49 if (instruction instanceof ImmutableUnknownInstruction) {
50 return (ImmutableUnknownInstruction)instruction;
52 return new ImmutableUnknownInstruction(instruction.getOriginalOpcode());
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());
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());
ImmutableInstruction31i.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction31i;
55 public static ImmutableInstruction31i of(Instruction31i instruction) {
56 if (instruction instanceof ImmutableInstruction31i) {
57 return (ImmutableInstruction31i)instruction;
60 instruction.getOpcode(),
61 instruction.getRegisterA(),
62 instruction.getNarrowLiteral());
ImmutableInstruction31t.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction31t;
55 public static ImmutableInstruction31t of(Instruction31t instruction) {
56 if (instruction instanceof ImmutableInstruction31t) {
57 return (ImmutableInstruction31t)instruction;
60 instruction.getOpcode(),
61 instruction.getRegisterA(),
62 instruction.getCodeOffset());
ImmutableInstruction32x.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction32x;
55 public static ImmutableInstruction32x of(Instruction32x instruction) {
56 if (instruction instanceof ImmutableInstruction32x) {
57 return (ImmutableInstruction32x)instruction;
60 instruction.getOpcode(),
61 instruction.getRegisterA(),
62 instruction.getRegisterB());
ImmutableInstruction51l.java 32 package org.jf.dexlib2.immutable.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction51l;
55 public static ImmutableInstruction51l of(Instruction51l instruction) {
56 if (instruction instanceof ImmutableInstruction51l) {
57 return (ImmutableInstruction51l)instruction;
60 instruction.getOpcode(),
61 instruction.getRegisterA(),
62 instruction.getWideLiteral());
  /external/llvm/test/MC/Mips/mips64r6/
invalid-mips3-wrong-error.s 8 ldl $s4,-4231($15) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
9 ldr $zero,-19147($gp) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
10 sdl $15,13694($s3) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
11 sdr $s1,-26590($14) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
12 ldle $s4,-4231($15) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
13 ldre $zero,-19147($gp) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
14 sdle $15,13694($s3) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
15 sdre $s1,-26590($14) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: Unknown instruction
16 lwl $s4,-4231($15) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
17 lwr $zero,-19147($gp) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/formats/
UnknownInstruction.java 32 package org.jf.dexlib2.iface.instruction.formats;

Completed in 620 milliseconds

12 3 4 5 6 7 8 91011>>