/external/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
D | Opcode.java | 34 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_… 38 …rt)0x02, "move/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_RE… 39 …(short)0x03, "move/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_RE… 40 …"move-wide", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Op… 41 …ide/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Op… 42 …ve-wide/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Op… 43 …rt)0x07, "move-object", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_RE… 44 …, "move-object/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_RE… [all …]
|
D | Opcodes.java | 40 private final Opcode[] opcodesByValue; 41 private final HashMap<String, Opcode> opcodesByName; 44 opcodesByValue = new Opcode[256]; in Opcodes() 47 for (Opcode opcode: Opcode.values()) { in Opcodes() 58 public Opcode getOpcodeByName(String opcodeName) { in getOpcodeByName() 63 public Opcode getOpcodeByValue(int opcodeValue) { in getOpcodeByValue() 66 return Opcode.PACKED_SWITCH_PAYLOAD; in getOpcodeByValue() 68 return Opcode.SPARSE_SWITCH_PAYLOAD; in getOpcodeByValue() 70 return Opcode.ARRAY_PAYLOAD; in getOpcodeByValue()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
D | OdexedFieldInstructionMapper.java | 34 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.IGET_QUICK, 50 /*I,F*/ Opcode.IGET_QUICK, [all …]
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | Tracer.java | 19 import javassist.bytecode.Opcode; 157 case Opcode.NOP : in doOpcode0_53() 159 case Opcode.ACONST_NULL : in doOpcode0_53() 162 case Opcode.ICONST_M1 : in doOpcode0_53() 163 case Opcode.ICONST_0 : in doOpcode0_53() 164 case Opcode.ICONST_1 : in doOpcode0_53() 165 case Opcode.ICONST_2 : in doOpcode0_53() 166 case Opcode.ICONST_3 : in doOpcode0_53() 167 case Opcode.ICONST_4 : in doOpcode0_53() 168 case Opcode.ICONST_5 : in doOpcode0_53() [all …]
|
D | Liveness.java | 248 if (op == Opcode.IINC) { in analyze() 252 else if (op == Opcode.WIDE) in analyze() 259 case Opcode.ILOAD : in doOpcode0_53() 260 case Opcode.LLOAD : in doOpcode0_53() 261 case Opcode.FLOAD : in doOpcode0_53() 262 case Opcode.DLOAD : in doOpcode0_53() 263 case Opcode.ALOAD : in doOpcode0_53() 266 case Opcode.ILOAD_0 : in doOpcode0_53() 267 case Opcode.ILOAD_1 : in doOpcode0_53() 268 case Opcode.ILOAD_2 : in doOpcode0_53() [all …]
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_opcodes.c | 35 .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 = RC_OPCODE_COS, [all …]
|
/external/lldb/include/lldb/Core/ |
D | Opcode.h | 28 class Opcode 42 Opcode () : m_type (eTypeInvalid) in Opcode() function 46 Opcode (uint8_t inst) : m_type (eType8) in Opcode() function 51 Opcode (uint16_t inst) : m_type (eType16) in Opcode() function 56 Opcode (uint32_t inst) : m_type (eType32) in Opcode() function 61 Opcode (uint64_t inst) : m_type (eType64) in Opcode() function 66 Opcode (uint8_t *bytes, size_t length) in Opcode() function 74 m_type = Opcode::eTypeInvalid; in Clear() 76 Opcode::Type 87 case Opcode::eTypeInvalid: break; [all …]
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/ |
D | PayloadAlignmentTest.java | 35 import org.jf.dexlib2.Opcode; 53 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testPayloadAlignmentRemoveNop() 63 Assert.assertEquals(instruction.getOpcode(), Opcode.ARRAY_PAYLOAD); in testPayloadAlignmentRemoveNop() 70 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0)); in testPayloadAlignmentAddNop() 79 Assert.assertEquals(instruction.getOpcode(), Opcode.MOVE); in testPayloadAlignmentAddNop() 82 Assert.assertEquals(instruction.getOpcode(), Opcode.NOP); in testPayloadAlignmentAddNop() 85 Assert.assertEquals(instruction.getOpcode(), Opcode.ARRAY_PAYLOAD); in testPayloadAlignmentAddNop() 93 implBuilder.addInstruction(new BuilderInstruction31t(Opcode.FILL_ARRAY_DATA, 0, label)); in testPayloadAlignmentRemoveNopWithReferent() 94 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0)); in testPayloadAlignmentRemoveNopWithReferent() 95 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0)); in testPayloadAlignmentRemoveNopWithReferent() [all …]
|
D | FixGotoTest.java | 5 import org.jf.dexlib2.Opcode; 22 builder.addInstruction(new BuilderInstruction10t(Opcode.GOTO, gotoTarget)); in testFixGotoToGoto16() 25 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testFixGotoToGoto16() 29 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID)); in testFixGotoToGoto16() 36 Assert.assertEquals(Opcode.GOTO_16, instructions.get(0).getOpcode()); in testFixGotoToGoto16() 45 builder.addInstruction(new BuilderInstruction10t(Opcode.GOTO, gotoTarget)); in testFixGotoToGoto32() 48 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP)); in testFixGotoToGoto32() 52 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID)); in testFixGotoToGoto32() 59 Assert.assertEquals(Opcode.GOTO_32, instructions.get(0).getOpcode()); in testFixGotoToGoto32() 68 builder.addInstruction(new BuilderInstruction20t(Opcode.GOTO_16, gotoTarget)); in testFixGoto16ToGoto32() [all …]
|
/external/llvm/lib/Target/R600/ |
D | SIInstrInfo.h | 51 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 { in isSALU() argument 143 return get(Opcode).TSFlags & SIInstrFlags::SALU; in isSALU() 146 bool isVALU(uint16_t Opcode) const { in isVALU() argument 147 return get(Opcode).TSFlags & SIInstrFlags::VALU; in isVALU() 150 bool isSOP1(uint16_t Opcode) const { in isSOP1() argument 151 return get(Opcode).TSFlags & SIInstrFlags::SOP1; in isSOP1() 154 bool isSOP2(uint16_t Opcode) const { in isSOP2() argument [all …]
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/util/ |
D | InstructionOffsetMapTest.java | 36 import org.jf.dexlib2.Opcode; 48 /*00: 0x00*/ new ImmutableInstruction10t(Opcode.GOTO, 1), in testInstructionOffsetMap() 49 /*01: 0x01*/ new ImmutableInstruction10x(Opcode.NOP), in testInstructionOffsetMap() 50 /*02: 0x02*/ new ImmutableInstruction11n(Opcode.CONST_4, 2, 3), in testInstructionOffsetMap() 51 /*03: 0x03*/ new ImmutableInstruction11x(Opcode.RETURN, 4), in testInstructionOffsetMap() 52 /*04: 0x04*/ new ImmutableInstruction12x(Opcode.ARRAY_LENGTH, 5, 6), in testInstructionOffsetMap() 53 /*05: 0x05*/ new ImmutableInstruction20t(Opcode.GOTO_16, 7), in testInstructionOffsetMap() 54 …/*06: 0x07*/ new ImmutableInstruction21c(Opcode.CONST_STRING, 8, new ImmutableStringReference("bla… in testInstructionOffsetMap() 55 /*07: 0x09*/ new ImmutableInstruction21ih(Opcode.CONST_HIGH16, 9, 0x10000), in testInstructionOffsetMap() 56 … /*08: 0x0b*/ new ImmutableInstruction21lh(Opcode.CONST_WIDE_HIGH16, 10, 0x1000000000000L), in testInstructionOffsetMap() [all …]
|
/external/lldb/source/Core/ |
D | Opcode.cpp | 29 Opcode::Dump (Stream *s, uint32_t min_byte_width) in Dump() 34 case Opcode::eTypeInvalid: in Dump() 37 case Opcode::eType8: in Dump() 40 case Opcode::eType16: in Dump() 43 case Opcode::eType16_2: in Dump() 44 case Opcode::eType32: in Dump() 48 case Opcode::eType64: in Dump() 52 case Opcode::eTypeBytes: in Dump() 72 Opcode::GetDataByteOrder () const in GetDataByteOrder() 76 case Opcode::eTypeInvalid: break; in GetDataByteOrder() [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | InstructionFactory.java | 35 import org.jf.dexlib2.Opcode; 45 Instruction makeInstruction10t(@Nonnull Opcode opcode, int codeOffset); in makeInstruction10t() 46 Instruction makeInstruction10x(@Nonnull Opcode opcode); in makeInstruction10x() 47 Instruction makeInstruction11n(@Nonnull Opcode opcode, int registerA, int literal); in makeInstruction11n() 48 Instruction makeInstruction11x(@Nonnull Opcode opcode, int registerA); in makeInstruction11x() 49 Instruction makeInstruction12x(@Nonnull Opcode opcode, int registerA, int registerB); in makeInstruction12x() 50 …Instruction makeInstruction20bc(@Nonnull Opcode opcode, int verificationError, @Nonnull Ref refere… in makeInstruction20bc() 51 Instruction makeInstruction20t(@Nonnull Opcode opcode, int codeOffset); in makeInstruction20t() 52 Instruction makeInstruction21c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference); in makeInstruction21c() 53 Instruction makeInstruction21ih(@Nonnull Opcode opcode, int registerA, int literal); in makeInstruction21ih() [all …]
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXISelDAGToDAG.cpp | 680 unsigned Opcode; in SelectLoad() local 686 Opcode = NVPTX::LD_i8_avar; in SelectLoad() 689 Opcode = NVPTX::LD_i16_avar; in SelectLoad() 692 Opcode = NVPTX::LD_i32_avar; in SelectLoad() 695 Opcode = NVPTX::LD_i64_avar; in SelectLoad() 698 Opcode = NVPTX::LD_f32_avar; in SelectLoad() 701 Opcode = NVPTX::LD_f64_avar; in SelectLoad() 709 NVPTXLD = CurDAG->getMachineNode(Opcode, dl, TargetVT, MVT::Other, Ops); in SelectLoad() 714 Opcode = NVPTX::LD_i8_asi; in SelectLoad() 717 Opcode = NVPTX::LD_i16_asi; in SelectLoad() [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/ |
D | ImmutableInstructionFactory.java | 34 import org.jf.dexlib2.Opcode; 49 public ImmutableInstruction10t makeInstruction10t(@Nonnull Opcode opcode, in makeInstruction10t() 54 public ImmutableInstruction10x makeInstruction10x(@Nonnull Opcode opcode) { in makeInstruction10x() 58 public ImmutableInstruction11n makeInstruction11n(@Nonnull Opcode opcode, in makeInstruction11n() 64 public ImmutableInstruction11x makeInstruction11x(@Nonnull Opcode opcode, in makeInstruction11x() 69 public ImmutableInstruction12x makeInstruction12x(@Nonnull Opcode opcode, in makeInstruction12x() 75 public ImmutableInstruction20bc makeInstruction20bc(@Nonnull Opcode opcode, in makeInstruction20bc() 81 public ImmutableInstruction20t makeInstruction20t(@Nonnull Opcode opcode, in makeInstruction20t() 86 public ImmutableInstruction21c makeInstruction21c(@Nonnull Opcode opcode, in makeInstruction21c() 92 public ImmutableInstruction21ih makeInstruction21ih(@Nonnull Opcode opcode, in makeInstruction21ih() [all …]
|
/external/javassist/src/main/javassist/expr/ |
D | NewArray.java | 80 if (opcode == Opcode.NEWARRAY) { in getComponentType() 84 else if (opcode == Opcode.ANEWARRAY in getComponentType() 85 || opcode == Opcode.MULTIANEWARRAY) { in getComponentType() 98 case Opcode.T_BOOLEAN : in getPrimitiveType() 100 case Opcode.T_CHAR : in getPrimitiveType() 102 case Opcode.T_FLOAT : in getPrimitiveType() 104 case Opcode.T_DOUBLE : in getPrimitiveType() 106 case Opcode.T_BYTE : in getPrimitiveType() 108 case Opcode.T_SHORT : in getPrimitiveType() 110 case Opcode.T_INT : in getPrimitiveType() [all …]
|
D | ExprEditor.java | 184 if (c < Opcode.GETSTATIC) // c < 178 in loopBody() 186 else if (c < Opcode.NEWARRAY) { // c < 188 in loopBody() 187 if (c == Opcode.INVOKESTATIC in loopBody() 188 || c == Opcode.INVOKEINTERFACE in loopBody() 189 || c == Opcode.INVOKEVIRTUAL) { in loopBody() 193 else if (c == Opcode.GETFIELD || c == Opcode.GETSTATIC in loopBody() 194 || c == Opcode.PUTFIELD in loopBody() 195 || c == Opcode.PUTSTATIC) { in loopBody() 199 else if (c == Opcode.NEW) { in loopBody() 204 else if (c == Opcode.INVOKESPECIAL) { in loopBody() [all …]
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugFrame.cpp | 67 Instruction(uint8_t Opcode) in Instruction() 68 : Opcode(Opcode) in Instruction() 71 uint8_t Opcode; member 79 void addInstruction(uint8_t Opcode) { in addInstruction() argument 80 Instructions.push_back(Instruction(Opcode)); in addInstruction() 83 void addInstruction(uint8_t Opcode, uint64_t Operand1) { in addInstruction() argument 84 Instructions.push_back(Instruction(Opcode)); in addInstruction() 88 void addInstruction(uint8_t Opcode, uint64_t Operand1, uint64_t Operand2) { in addInstruction() argument 89 Instructions.push_back(Instruction(Opcode)); in addInstruction() 103 uint8_t Opcode = Data.getU8(Offset); in parseInstructions() local [all …]
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCTargetTransformInfo.cpp | 101 unsigned PPCTTIImpl::getIntImmCost(unsigned Opcode, unsigned Idx, in getIntImmCost() argument 104 return BaseT::getIntImmCost(Opcode, Idx, Imm, Ty); in getIntImmCost() 115 switch (Opcode) { in getIntImmCost() 246 unsigned Opcode, Type *Ty, TTI::OperandValueKind Op1Info, in getArithmeticInstrCost() argument 249 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode"); in getArithmeticInstrCost() 252 return BaseT::getArithmeticInstrCost(Opcode, Ty, Op1Info, Op2Info, in getArithmeticInstrCost() 261 unsigned PPCTTIImpl::getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) { in getCastInstrCost() argument 262 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode"); in getCastInstrCost() 264 return BaseT::getCastInstrCost(Opcode, Dst, Src); in getCastInstrCost() 267 unsigned PPCTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, in getCmpSelInstrCost() argument [all …]
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonExpandPredSpillCode.cpp | 87 unsigned Opcode; in runOnMachineFunction() local 89 Opcode = Hexagon::S2_storerd_pci; in runOnMachineFunction() 91 Opcode = Hexagon::S2_storeri_pci; in runOnMachineFunction() 93 Opcode = Hexagon::S2_storerh_pci; in runOnMachineFunction() 95 Opcode = Hexagon::S2_storerf_pci; in runOnMachineFunction() 97 Opcode = Hexagon::S2_storerb_pci; in runOnMachineFunction() 110 TII->get(Opcode)); in runOnMachineFunction() 127 unsigned Opcode; in runOnMachineFunction() local 129 Opcode = Hexagon::L2_loadrd_pci; in runOnMachineFunction() 131 Opcode = Hexagon::L2_loadri_pci; in runOnMachineFunction() [all …]
|
/external/llvm/tools/llvm-readobj/ |
D | ARMEHABIPrinter.h | 96 uint8_t Opcode = Opcodes[OI++ ^ 3]; in Decode_00xxxxxx() local 97 SW.startLine() << format("0x%02X ; vsp = vsp + %u\n", Opcode, in Decode_00xxxxxx() 98 ((Opcode & 0x3f) << 2) + 4); in Decode_00xxxxxx() 101 uint8_t Opcode = Opcodes[OI++ ^ 3]; in Decode_01xxxxxx() local 102 SW.startLine() << format("0x%02X ; vsp = vsp - %u\n", Opcode, in Decode_01xxxxxx() 103 ((Opcode & 0x3f) << 2) + 4); in Decode_01xxxxxx() 119 uint8_t Opcode = Opcodes[OI++ ^ 3]; in Decode_10011101() local 120 SW.startLine() << format("0x%02X ; reserved (ARM MOVrr)\n", Opcode); in Decode_10011101() 123 uint8_t Opcode = Opcodes[OI++ ^ 3]; in Decode_10011111() local 124 SW.startLine() << format("0x%02X ; reserved (WiMMX MOVrr)\n", Opcode); in Decode_10011111() [all …]
|
/external/javassist/src/test/test/javassist/bytecode/analysis/ |
D | ScannerTest.java | 13 import javassist.bytecode.Opcode; 118 /* 12 */ addJump(code, Opcode.GOTO, 125); in generate() 122 /* 20 */ addJump(code, Opcode.GOTO, 125); in generate() 124 /* 25 */ addJump(code, Opcode.JSR, 31); in generate() 126 /* 30 */ code.addOpcode(Opcode.ATHROW); in generate() 130 /* 33 */ code.addOpcode(Opcode.LOOKUPSWITCH); in generate() 139 /* 66 */ addJump(code, Opcode.GOTO, 111); in generate() 141 /* 71 */ addJump(code, Opcode.JSR, 77); in generate() 143 /* 76 */ code.add(Opcode.ATHROW); in generate() 148 /* 85 */ addJump(code, Opcode.GOTO, 106); in generate() [all …]
|
/external/lldb/utils/test/ |
D | README-disasm | 147 Opcode=2305 Name=tPUSH Format=ARM_FORMAT_THUMBFRM(25) 154 Opcode=2305 Name=tPUSH Format=ARM_FORMAT_THUMBFRM(25) 161 Opcode=2228 Name=tADDrSPi Format=ARM_FORMAT_THUMBFRM(25) 168 Opcode=2328 Name=tSUBspi Format=ARM_FORMAT_THUMBFRM(25) 175 Opcode=2228 Name=tADDrSPi Format=ARM_FORMAT_THUMBFRM(25) 182 Opcode=1963 Name=t2LDR_POST Format=ARM_FORMAT_THUMBFRM(25) 189 Opcode=2324 Name=tSTRspi Format=ARM_FORMAT_THUMBFRM(25) 196 Opcode=2275 Name=tLDRpci Format=ARM_FORMAT_THUMBFRM(25) 203 Opcode=2223 Name=tADDhirr Format=ARM_FORMAT_THUMBFRM(25) 210 Opcode=2274 Name=tLDRi Format=ARM_FORMAT_THUMBFRM(25) [all …]
|
/external/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 49 unsigned TargetTransformInfo::getOperationCost(unsigned Opcode, Type *Ty, in getOperationCost() argument 51 return TTIImpl->getOperationCost(Opcode, Ty, OpTy); in getOperationCost() 171 unsigned TargetTransformInfo::getIntImmCost(unsigned Opcode, unsigned Idx, in getIntImmCost() argument 173 return TTIImpl->getIntImmCost(Opcode, Idx, Imm, Ty); in getIntImmCost() 194 unsigned Opcode, Type *Ty, OperandValueKind Opd1Info, in getArithmeticInstrCost() argument 197 return TTIImpl->getArithmeticInstrCost(Opcode, Ty, Opd1Info, Opd2Info, in getArithmeticInstrCost() 206 unsigned TargetTransformInfo::getCastInstrCost(unsigned Opcode, Type *Dst, in getCastInstrCost() argument 208 return TTIImpl->getCastInstrCost(Opcode, Dst, Src); in getCastInstrCost() 211 unsigned TargetTransformInfo::getCFInstrCost(unsigned Opcode) const { in getCFInstrCost() 212 return TTIImpl->getCFInstrCost(Opcode); in getCFInstrCost() [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 131 unsigned getOperationCost(unsigned Opcode, Type *Ty, 410 getArithmeticInstrCost(unsigned Opcode, Type *Ty, 424 unsigned getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) const; 428 unsigned getCFInstrCost(unsigned Opcode) const; 431 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, 436 unsigned getVectorInstrCost(unsigned Opcode, Type *Val, 440 unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, 444 unsigned getMaskedMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, 460 unsigned getReductionCost(unsigned Opcode, Type *Ty, 522 virtual unsigned getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) = 0; [all …]
|