Searched refs:Opcode (Results 1 - 25 of 572) 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/chromium_org/third_party/mesa/src/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/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/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/chromium_org/third_party/sqlite/src/tool/
H A DopcodeDoc.awk9 / Opcode: /,/\*\// {
10 if( $2=="Opcode:" ){
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp251 unsigned Opcode; local
257 Opcode = NVPTX::LD_i8_avar;
260 Opcode = NVPTX::LD_i16_avar;
263 Opcode = NVPTX::LD_i32_avar;
266 Opcode = NVPTX::LD_i64_avar;
269 Opcode = NVPTX::LD_f32_avar;
272 Opcode = NVPTX::LD_f64_avar;
280 NVPTXLD = CurDAG->getMachineNode(Opcode, dl, TargetVT, MVT::Other, Ops);
286 Opcode = NVPTX::LD_i8_asi;
289 Opcode
432 unsigned Opcode; local
814 unsigned Opcode; local
1349 unsigned Opcode; local
1530 unsigned Opcode; local
2064 unsigned Opcode = 0; local
2194 unsigned Opcode = 0; local
[all...]
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.h70 void EmitInt8(unsigned Opcode) { argument
71 Ops.push_back(Opcode & 0xff);
75 void EmitInt16(unsigned Opcode) { argument
76 Ops.push_back((Opcode >> 8) & 0xff);
77 Ops.push_back(Opcode & 0xff);
81 void EmitBytes(const uint8_t *Opcode, size_t Size) { argument
82 Ops.insert(Ops.end(), Opcode, Opcode + Size);
/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) {
/external/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp89 virtual unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty,
94 virtual unsigned getCastInstrCost(unsigned Opcode, Type *Dst,
96 virtual unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy,
98 virtual unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
100 virtual unsigned getMemoryOpCost(unsigned Opcode, Type *Src,
171 unsigned PPCTTI::getArithmeticInstrCost(unsigned Opcode, Type *Ty, argument
174 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode");
177 return TargetTransformInfo::getArithmeticInstrCost(Opcode, Ty, Op1Info,
186 unsigned PPCTTI::getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) const { argument
187 assert(TLI->InstructionOpcodeToISD(Opcode)
192 getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) const argument
197 getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) const argument
222 getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, unsigned AddressSpace) const argument
[all...]
/external/llvm/lib/Target/R600/
H A DSIInstrInfo.h38 unsigned commuteOpcode(unsigned Opcode) const;
47 virtual bool isMov(unsigned Opcode) const;
80 int getVOPe64(uint16_t Opcode);
81 int getCommuteRev(uint16_t Opcode);
82 int getCommuteOrig(uint16_t Opcode);
83 int isMIMG(uint16_t Opcode);
/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...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathPredicate.h65 enum Opcode { enum in class:WebCore::XPath::NumericOp
68 NumericOp(Opcode, Expression* lhs, Expression* rhs);
73 Opcode m_opcode;
78 enum Opcode { OP_EQ, OP_NE, OP_GT, OP_LT, OP_GE, OP_LE }; enum in class:WebCore::XPath::EqTestOp
79 EqTestOp(Opcode, Expression* lhs, Expression* rhs);
85 Opcode m_opcode;
90 enum Opcode { OP_And, OP_Or }; enum in class:WebCore::XPath::LogicalOp
91 LogicalOp(Opcode, Expression* lhs, Expression* rhs);
97 Opcode m_opcode;
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCPredicates.h55 Predicate InvertPredicate(Predicate Opcode);
59 Predicate getSwappedPredicate(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...]

Completed in 332 milliseconds

1234567891011>>