Searched refs:Opcode (Results 1 - 25 of 579) sorted by relevance

1234567891011>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DOdexedFieldInstructionMapper.java34 import org.jf.dexlib2.Opcode;
39 private static Opcode[][][][] opcodeMap = new Opcode[][][][] {
41 new Opcode[][][] {
43 new Opcode[][] {
45 new Opcode[] {
46 /*Z*/ Opcode.IGET_QUICK,
47 /*B*/ Opcode.IGET_QUICK,
48 /*S*/ Opcode.IGET_QUICK,
49 /*C*/ Opcode
[all...]
H A DUnresolvedOdexInstruction.java34 import org.jf.dexlib2.Opcode;
52 @Override public Opcode getOpcode() {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DInstructionUtil.java34 import org.jf.dexlib2.Opcode;
37 public static boolean isInvokeStatic(Opcode opcode) {
38 return opcode == Opcode.INVOKE_STATIC || opcode == Opcode.INVOKE_STATIC_RANGE;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DOpcode.java34 public enum Opcode enum
36 NOP((short)0x00, "nop", ReferenceType.NONE, Format.Format10x, Opcode.CAN_CONTINUE),
37 MOVE((short)0x01, "move", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
38 MOVE_FROM16((short)0x02, "move/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
39 MOVE_16((short)0x03, "move/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
40 MOVE_WIDE((short)0x04, "move-wide", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode
331 Opcode(short opcodeValue, String opcodeName, int referenceType, Format format) { method in class:Opcode
335 Opcode(short opcodeValue, String opcodeName, int referenceType, Format format, int flags) { method in class:Opcode
339 Opcode(short opcodeValue, String opcodeName, int referenceType, Format format, int flags, short jumboOpcodeValue) { method in class:Opcode
343 Opcode(short opcodeValue, String opcodeName, int apiConstraints, int referenceType, Format format) { method in class:Opcode
347 Opcode(short opcodeValue, String opcodeName, int apiConstraints, int referenceType, Format format, int flags) { method in class:Opcode
351 Opcode(short opcodeValue, String opcodeName, int apiConstraints, int referenceType, Format format, int flags, method in class:Opcode
[all...]
H A DOpcodes.java40 private final Opcode[] opcodesByValue;
41 private final HashMap<String, Opcode> opcodesByName;
44 opcodesByValue = new Opcode[256];
47 for (Opcode opcode: Opcode.values()) {
58 public Opcode getOpcodeByName(String opcodeName) {
63 public Opcode getOpcodeByValue(int opcodeValue) {
66 return Opcode.PACKED_SWITCH_PAYLOAD;
68 return Opcode.SPARSE_SWITCH_PAYLOAD;
70 return Opcode
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/
H A DInstruction.java34 import org.jf.dexlib2.Opcode;
47 * @return The Opcode of this instruction.
49 Opcode getOpcode();
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_opcodes.c35 .Opcode = RC_OPCODE_NOP,
39 .Opcode = RC_OPCODE_ILLEGAL_OPCODE,
43 .Opcode = RC_OPCODE_ABS,
50 .Opcode = RC_OPCODE_ADD,
57 .Opcode = RC_OPCODE_ARL,
63 .Opcode = RC_OPCODE_CEIL,
70 .Opcode = RC_OPCODE_CLAMP,
77 .Opcode = RC_OPCODE_CMP,
84 .Opcode = RC_OPCODE_CND,
91 .Opcode
[all...]
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DLiveness.java248 if (op == Opcode.IINC) {
252 else if (op == Opcode.WIDE)
259 case Opcode.ILOAD :
260 case Opcode.LLOAD :
261 case Opcode.FLOAD :
262 case Opcode.DLOAD :
263 case Opcode.ALOAD :
266 case Opcode.ILOAD_0 :
267 case Opcode.ILOAD_1 :
268 case Opcode
[all...]
H A DTracer.java19 import javassist.bytecode.Opcode;
157 case Opcode.NOP :
159 case Opcode.ACONST_NULL :
162 case Opcode.ICONST_M1 :
163 case Opcode.ICONST_0 :
164 case Opcode.ICONST_1 :
165 case Opcode.ICONST_2 :
166 case Opcode.ICONST_3 :
167 case Opcode.ICONST_4 :
168 case Opcode
[all...]
/external/lldb/source/Core/
H A DOpcode.cpp1 //===-- Opcode.cpp ----------------------------------------------*- C++ -*-===//
10 #include "lldb/Core/Opcode.h"
29 Opcode::Dump (Stream *s, uint32_t min_byte_width)
34 case Opcode::eTypeInvalid:
37 case Opcode::eType8:
40 case Opcode::eType16:
43 case Opcode::eType16_2:
44 case Opcode::eType32:
48 case Opcode::eType64:
52 case Opcode
[all...]
/external/llvm/include/llvm/MC/
H A DMCInstrInfo.h48 const MCInstrDesc &get(unsigned Opcode) const {
49 assert(Opcode < NumOpcodes && "Invalid opcode!");
50 return Desc[Opcode];
54 const char *getName(unsigned Opcode) const {
55 assert(Opcode < NumOpcodes && "Invalid opcode!");
56 return &InstrNameData[InstrNameIndices[Opcode]];
/external/lldb/include/lldb/Core/
H A DOpcode.h1 //===-- Opcode.h ------------------------------------------------*- C++ -*-===//
28 class Opcode class in namespace:lldb_private
42 Opcode () : m_type (eTypeInvalid) function in class:lldb_private::Opcode
46 Opcode (uint8_t inst) : m_type (eType8) function in class:lldb_private::Opcode
51 Opcode (uint16_t inst) : m_type (eType16) function in class:lldb_private::Opcode
56 Opcode (uint32_t inst) : m_type (eType32) function in class:lldb_private::Opcode
61 Opcode (uint64_t inst) : m_type (eType64) function in class:lldb_private::Opcode
66 Opcode (uint8_t *bytes, size_t length) function in class:lldb_private::Opcode
74 m_type = Opcode::eTypeInvalid;
76 Opcode
[all...]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
H A DPayloadAlignmentTest.java35 import org.jf.dexlib2.Opcode;
53 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
63 Assert.assertEquals(instruction.getOpcode(), Opcode.ARRAY_PAYLOAD);
70 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0));
79 Assert.assertEquals(instruction.getOpcode(), Opcode.MOVE);
82 Assert.assertEquals(instruction.getOpcode(), Opcode.NOP);
85 Assert.assertEquals(instruction.getOpcode(), Opcode.ARRAY_PAYLOAD);
93 implBuilder.addInstruction(new BuilderInstruction31t(Opcode.FILL_ARRAY_DATA, 0, label));
94 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0));
95 implBuilder.addInstruction(new BuilderInstruction12x(Opcode
[all...]
H A DFixGotoTest.java5 import org.jf.dexlib2.Opcode;
22 builder.addInstruction(new BuilderInstruction10t(Opcode.GOTO, gotoTarget));
25 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
29 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID));
36 Assert.assertEquals(Opcode.GOTO_16, instructions.get(0).getOpcode());
45 builder.addInstruction(new BuilderInstruction10t(Opcode.GOTO, gotoTarget));
48 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
52 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID));
59 Assert.assertEquals(Opcode.GOTO_32, instructions.get(0).getOpcode());
68 builder.addInstruction(new BuilderInstruction20t(Opcode
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DInstructionFactory.java35 import org.jf.dexlib2.Opcode;
45 Instruction makeInstruction10t(@Nonnull Opcode opcode, int codeOffset);
46 Instruction makeInstruction10x(@Nonnull Opcode opcode);
47 Instruction makeInstruction11n(@Nonnull Opcode opcode, int registerA, int literal);
48 Instruction makeInstruction11x(@Nonnull Opcode opcode, int registerA);
49 Instruction makeInstruction12x(@Nonnull Opcode opcode, int registerA, int registerB);
50 Instruction makeInstruction20bc(@Nonnull Opcode opcode, int verificationError, @Nonnull Ref reference);
51 Instruction makeInstruction20t(@Nonnull Opcode opcode, int codeOffset);
52 Instruction makeInstruction21c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference);
53 Instruction makeInstruction21ih(@Nonnull Opcode opcod
[all...]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/util/
H A DInstructionOffsetMapTest.java36 import org.jf.dexlib2.Opcode;
48 /*00: 0x00*/ new ImmutableInstruction10t(Opcode.GOTO, 1),
49 /*01: 0x01*/ new ImmutableInstruction10x(Opcode.NOP),
50 /*02: 0x02*/ new ImmutableInstruction11n(Opcode.CONST_4, 2, 3),
51 /*03: 0x03*/ new ImmutableInstruction11x(Opcode.RETURN, 4),
52 /*04: 0x04*/ new ImmutableInstruction12x(Opcode.ARRAY_LENGTH, 5, 6),
53 /*05: 0x05*/ new ImmutableInstruction20t(Opcode.GOTO_16, 7),
54 /*06: 0x07*/ new ImmutableInstruction21c(Opcode.CONST_STRING, 8, new ImmutableStringReference("blah")),
55 /*07: 0x09*/ new ImmutableInstruction21ih(Opcode.CONST_HIGH16, 9, 0x10000),
56 /*08: 0x0b*/ new ImmutableInstruction21lh(Opcode
[all...]
/external/llvm/lib/Target/R600/
H A DSIInstrInfo.h51 MachineInstr *Inst, unsigned Opcode) const;
54 MachineInstr *Inst, unsigned Opcode) const;
135 bool isMov(unsigned Opcode) const override;
142 bool isSALU(uint16_t Opcode) const {
143 return get(Opcode).TSFlags & SIInstrFlags::SALU;
146 bool isVALU(uint16_t Opcode) const {
147 return get(Opcode).TSFlags & SIInstrFlags::VALU;
150 bool isSOP1(uint16_t Opcode) const {
151 return get(Opcode).TSFlags & SIInstrFlags::SOP1;
154 bool isSOP2(uint16_t Opcode) cons
254 getOpSize(uint16_t Opcode, unsigned OpNo) const argument
[all...]
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.h74 void EmitInt8(unsigned Opcode) { argument
75 Ops.push_back(Opcode & 0xff);
79 void EmitInt16(unsigned Opcode) { argument
80 Ops.push_back((Opcode >> 8) & 0xff);
81 Ops.push_back(Opcode & 0xff);
85 void EmitBytes(const uint8_t *Opcode, size_t Size) { argument
86 Ops.insert(Ops.end(), Opcode, Opcode + Size);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstructionFactory.java34 import org.jf.dexlib2.Opcode;
49 public ImmutableInstruction10t makeInstruction10t(@Nonnull Opcode opcode,
54 public ImmutableInstruction10x makeInstruction10x(@Nonnull Opcode opcode) {
58 public ImmutableInstruction11n makeInstruction11n(@Nonnull Opcode opcode,
64 public ImmutableInstruction11x makeInstruction11x(@Nonnull Opcode opcode,
69 public ImmutableInstruction12x makeInstruction12x(@Nonnull Opcode opcode,
75 public ImmutableInstruction20bc makeInstruction20bc(@Nonnull Opcode opcode,
81 public ImmutableInstruction20t makeInstruction20t(@Nonnull Opcode opcode,
86 public ImmutableInstruction21c makeInstruction21c(@Nonnull Opcode opcode,
92 public ImmutableInstruction21ih makeInstruction21ih(@Nonnull Opcode opcod
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DBuilderInstruction.java35 import org.jf.dexlib2.Opcode;
43 @Nonnull protected final Opcode opcode;
47 protected BuilderInstruction(@Nonnull Opcode opcode) {
52 @Nonnull public Opcode getOpcode() {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
H A DDexBackedInstruction10x.java34 import org.jf.dexlib2.Opcode;
42 @Nonnull Opcode opcode,
/external/javassist/src/main/javassist/expr/
H A DNewArray.java80 if (opcode == Opcode.NEWARRAY) {
84 else if (opcode == Opcode.ANEWARRAY
85 || opcode == Opcode.MULTIANEWARRAY) {
98 case Opcode.T_BOOLEAN :
100 case Opcode.T_CHAR :
102 case Opcode.T_FLOAT :
104 case Opcode.T_DOUBLE :
106 case Opcode.T_BYTE :
108 case Opcode.T_SHORT :
110 case Opcode
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp680 unsigned Opcode; local
686 Opcode = NVPTX::LD_i8_avar;
689 Opcode = NVPTX::LD_i16_avar;
692 Opcode = NVPTX::LD_i32_avar;
695 Opcode = NVPTX::LD_i64_avar;
698 Opcode = NVPTX::LD_f32_avar;
701 Opcode = NVPTX::LD_f64_avar;
709 NVPTXLD = CurDAG->getMachineNode(Opcode, dl, TargetVT, MVT::Other, Ops);
714 Opcode = NVPTX::LD_i8_asi;
717 Opcode
859 unsigned Opcode; local
1267 unsigned Opcode; local
2045 unsigned Opcode; local
2223 unsigned Opcode; local
2755 unsigned Opcode = 0; local
2885 unsigned Opcode = 0; local
[all...]
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp67 Instruction(uint8_t Opcode) argument
68 : Opcode(Opcode)
71 uint8_t Opcode; member in struct:llvm::FrameEntry::Instruction
79 void addInstruction(uint8_t Opcode) { argument
80 Instructions.push_back(Instruction(Opcode));
83 void addInstruction(uint8_t Opcode, uint64_t Operand1) { argument
84 Instructions.push_back(Instruction(Opcode));
88 void addInstruction(uint8_t Opcode, uint64_t Operand1, uint64_t Operand2) { argument
89 Instructions.push_back(Instruction(Opcode));
103 uint8_t Opcode = Data.getU8(Offset); local
339 printOperand(raw_ostream &OS, uint8_t Opcode, unsigned OperandIdx, uint64_t Operand, uint64_t CodeAlignmentFactor, int64_t DataAlignmentFactor) argument
[all...]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCPredicates.h60 Predicate InvertPredicate(Predicate Opcode);
64 Predicate getSwappedPredicate(Predicate Opcode);

Completed in 1722 milliseconds

1234567891011>>