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

1234567891011>>

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DOdexedFieldInstructionMapper.java31 import org.jf.dexlib.Code.Opcode;
34 private static Opcode[][][][] opcodeMap = new Opcode[][][][] {
36 new Opcode[][][] {
38 new Opcode[][] {
40 new Opcode[] {
41 /*Z*/ Opcode.IGET_QUICK,
42 /*B*/ Opcode.IGET_QUICK,
43 /*S*/ Opcode.IGET_QUICK,
44 /*C*/ Opcode
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DOpcode.java35 public enum Opcode enum
37 NOP((short)0x00, "nop", ReferenceType.none, Format.Format10x, Opcode.CAN_CONTINUE),
38 MOVE((short)0x01, "move", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
39 MOVE_FROM16((short)0x02, "move/from16", ReferenceType.none, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
40 MOVE_16((short)0x03, "move/16", ReferenceType.none, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
41 MOVE_WIDE((short)0x04, "move-wide", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode
472 Opcode(short opcodeValue, String opcodeName, ReferenceType referenceType, Format format) { method in class:Opcode
476 Opcode(short opcodeValue, String opcodeName, ReferenceType referenceType, Format format, int flags) { method in class:Opcode
480 Opcode(short opcodeValue, String opcodeName, ReferenceType referenceType, Format format, int flags, short jumboOpcodeValue) { method in class:Opcode
[all...]
H A DOffsetInstruction.java32 protected OffsetInstruction(Opcode opcode) {
H A DInstruction.java36 public final Opcode opcode;
47 protected Instruction(Opcode opcode) {
69 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex);
/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/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/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp221 unsigned Opcode; local
226 case MVT::i8: Opcode = NVPTX::LD_i8_avar; break;
227 case MVT::i16: Opcode = NVPTX::LD_i16_avar; break;
228 case MVT::i32: Opcode = NVPTX::LD_i32_avar; break;
229 case MVT::i64: Opcode = NVPTX::LD_i64_avar; break;
230 case MVT::f32: Opcode = NVPTX::LD_f32_avar; break;
231 case MVT::f64: Opcode = NVPTX::LD_f64_avar; break;
240 NVPTXLD = CurDAG->getMachineNode(Opcode, dl, TargetVT,
246 case MVT::i8: Opcode = NVPTX::LD_i8_asi; break;
247 case MVT::i16: Opcode
341 unsigned Opcode; local
592 unsigned Opcode; local
754 unsigned Opcode; local
877 unsigned Opcode; local
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DUnknownInstruction.java34 import org.jf.dexlib.Code.Opcode;
40 super(Opcode.NOP);
H A DInstruction10x.java32 import org.jf.dexlib.Code.Opcode;
39 public Instruction10x(Opcode opcode) {
43 public Instruction10x(Opcode opcode, byte[] buffer, int bufferIndex) {
60 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
H A DInstructionWithJumboReference.java35 import org.jf.dexlib.Code.Opcode;
42 protected InstructionWithJumboReference(Opcode opcode, Item referencedItem) {
46 protected InstructionWithJumboReference(Opcode opcode, Item referencedItem, ReferenceType referenceType) {
50 protected InstructionWithJumboReference(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
H A DInstruction21h.java33 import org.jf.dexlib.Code.Opcode;
44 public Instruction21h(Opcode opcode, short regA, short litB) {
55 private Instruction21h(Opcode opcode, byte[] buffer, int bufferIndex) {
81 if (opcode == Opcode.CONST_HIGH16) {
84 assert opcode == Opcode.CONST_WIDE_HIGH16;
90 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
H A DInstruction41c.java36 import org.jf.dexlib.Code.Opcode;
48 public Instruction41c(Opcode opcode, int regA, Item referencedItem) {
55 if (opcode == Opcode.NEW_INSTANCE_JUMBO) {
65 private Instruction41c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
68 if (opcode == Opcode.NEW_INSTANCE_JUMBO &&
93 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
H A DInstruction10t.java33 import org.jf.dexlib.Code.Opcode;
41 public Instruction10t(Opcode opcode, int offA) {
53 private Instruction10t(Opcode opcode, byte[] buffer, int bufferIndex) {
88 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
/external/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp89 virtual unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty) const;
92 virtual unsigned getCastInstrCost(unsigned Opcode, Type *Dst,
94 virtual unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
96 virtual unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
98 virtual unsigned getMemoryOpCost(unsigned Opcode, Type *Src,
170 unsigned PPCTTI::getArithmeticInstrCost(unsigned Opcode, Type *Ty) const { argument
171 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode");
174 return TargetTransformInfo::getArithmeticInstrCost(Opcode, Ty);
182 unsigned PPCTTI::getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) const { argument
183 assert(TLI->InstructionOpcodeToISD(Opcode)
188 getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) const argument
193 getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) const argument
218 getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, unsigned AddressSpace) const argument
[all...]
/external/llvm/lib/DebugInfo/
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
191 uint8_t Opcode = I->Opcode; local
[all...]
/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...]
H A DExprEditor.java184 if (c < Opcode.GETSTATIC) // c < 178
186 else if (c < Opcode.NEWARRAY) { // c < 188
187 if (c == Opcode.INVOKESTATIC
188 || c == Opcode.INVOKEINTERFACE
189 || c == Opcode.INVOKEVIRTUAL) {
193 else if (c == Opcode.GETFIELD || c == Opcode.GETSTATIC
194 || c == Opcode.PUTFIELD
195 || c == Opcode.PUTSTATIC) {
199 else if (c == Opcode
[all...]
/external/webkit/Source/WebCore/xml/
H A DXPathPredicate.h67 enum Opcode { enum in class:WebCore::XPath::NumericOp
70 NumericOp(Opcode, Expression* lhs, Expression* rhs);
75 Opcode m_opcode;
80 enum Opcode { OP_EQ, OP_NE, OP_GT, OP_LT, OP_GE, OP_LE }; enum in class:WebCore::XPath::EqTestOp
81 EqTestOp(Opcode, Expression* lhs, Expression* rhs);
87 Opcode m_opcode;
92 enum Opcode { OP_And, OP_Or }; enum in class:WebCore::XPath::LogicalOp
93 LogicalOp(Opcode, Expression* lhs, Expression* rhs);
99 Opcode m_opcode;
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCPredicates.cpp19 PPC::Predicate PPC::InvertPredicate(PPC::Predicate Opcode) { argument
20 switch (Opcode) {
H A DPPCPredicates.h40 Predicate InvertPredicate(Predicate Opcode);
/external/smack/src/org/xbill/DNS/
H A DOpcode.java11 public final class Opcode { class
30 private static Mnemonic opcodes = new Mnemonic("DNS Opcode",
46 Opcode() {} method in class:Opcode
48 /** Converts a numeric Opcode into a String */
54 /** Converts a String representation of an Opcode into its numeric value */
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DScannerTest.java13 import javassist.bytecode.Opcode;
118 /* 12 */ addJump(code, Opcode.GOTO, 125);
122 /* 20 */ addJump(code, Opcode.GOTO, 125);
124 /* 25 */ addJump(code, Opcode.JSR, 31);
126 /* 30 */ code.addOpcode(Opcode.ATHROW);
130 /* 33 */ code.addOpcode(Opcode.LOOKUPSWITCH);
139 /* 66 */ addJump(code, Opcode.GOTO, 111);
141 /* 71 */ addJump(code, Opcode.JSR, 77);
143 /* 76 */ code.add(Opcode.ATHROW);
148 /* 85 */ addJump(code, Opcode
[all...]
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsDirectObjLower.cpp54 int Opcode = InstIn.getOpcode(); local
56 if (Opcode == Mips::DEXT)
73 InstIn.setOpcode((Opcode == Mips::DEXT) ? Mips::DEXTU : Mips::DINSU);
79 InstIn.setOpcode((Opcode == Mips::DEXT) ? Mips::DEXTM : Mips::DINSM);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
H A DOffsetInstructionFormatMethodItem.java35 import org.jf.dexlib.Code.Opcode;
70 if (instruction.opcode == Opcode.FILL_ARRAY_DATA) {
73 if (instruction.opcode == Opcode.PACKED_SWITCH) {
76 assert instruction.opcode == Opcode.SPARSE_SWITCH;

Completed in 353 milliseconds

1234567891011>>