HomeSort by relevance Sort by last modified time
    Searched refs:getOpcode (Results 1 - 25 of 534) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/MC/
MCInstrAnalysis.h 32 return Info->get(Inst.getOpcode()).isBranch();
36 return Info->get(Inst.getOpcode()).isConditionalBranch();
40 return Info->get(Inst.getOpcode()).isUnconditionalBranch();
44 return Info->get(Inst.getOpcode()).isIndirectBranch();
48 return Info->get(Inst.getOpcode()).isCall();
52 return Info->get(Inst.getOpcode()).isReturn();
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
FixedSizeInsn.java 52 return getOpcode().getFormat().codeSize();
58 getOpcode().getFormat().writeTo(out, this);
70 return getOpcode().getFormat().listingString(this, noteIndices);
  /dalvik/dx/src/com/android/dx/dex/code/
FixedSizeInsn.java 53 return getOpcode().getFormat().codeSize();
59 getOpcode().getFormat().writeTo(out, this);
71 return getOpcode().getFormat().listingString(this, noteIndices);
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
FixedSizeInsn.java 53 return getOpcode().getFormat().codeSize();
59 getOpcode().getFormat().writeTo(out, this);
71 return getOpcode().getFormat().listingString(this, noteIndices);
  /external/llvm/lib/Target/Hexagon/
HexagonNewValueJump.cpp 111 if (II->getOpcode() == TargetOpcode::KILL)
161 if (MII->getOpcode() == Hexagon::CALLv3)
175 if (MII->getOpcode() == TargetOpcode::KILL ||
176 MII->getOpcode() == TargetOpcode::PHI ||
177 MII->getOpcode() == TargetOpcode::COPY)
184 if (MII->getOpcode() == Hexagon::TFR_condset_rr ||
185 MII->getOpcode() == Hexagon::TFR_condset_ii ||
186 MII->getOpcode() == Hexagon::TFR_condset_ri ||
187 MII->getOpcode() == Hexagon::TFR_condset_ir ||
188 MII->getOpcode() == Hexagon::LDriw_pred |
    [all...]
HexagonRegisterInfo.cpp 145 TII.isValidOffset(MI.getOpcode(), (FrameSize+Offset)) &&
153 if (!TII.isValidOffset(MI.getOpcode(), Offset)) {
162 if ( (MI.getOpcode() == Hexagon::LDriw) ||
163 (MI.getOpcode() == Hexagon::LDrid) ||
164 (MI.getOpcode() == Hexagon::LDrih) ||
165 (MI.getOpcode() == Hexagon::LDriuh) ||
166 (MI.getOpcode() == Hexagon::LDrib) ||
167 (MI.getOpcode() == Hexagon::LDriub) ||
168 (MI.getOpcode() == Hexagon::LDriw_f) ||
169 (MI.getOpcode() == Hexagon::LDrid_f))
    [all...]
  /external/llvm/lib/MC/
MCInstrAnalysis.cpp 16 Info->get(Inst.getOpcode()).OpInfo[0].OperandType != MCOI::OPERAND_PCREL)
MCInst.cpp 43 OS << "<MCInst " << getOpcode();
54 OS << "<MCInst #" << getOpcode();
58 OS << ' ' << Printer->getOpcodeName(getOpcode());
  /dalvik/dx/src/com/android/dx/ssa/
NormalSsaInsn.java 128 public Rop getOpcode() {
129 return insn.getOpcode();
143 if (insn.getOpcode().getOpcode() == RegOps.MARK_LOCAL) {
180 return insn.getOpcode().getOpcode() == RegOps.MOVE;
186 return insn.getOpcode().getOpcode() == RegOps.MOVE_EXCEPTION;
218 Rop opcode = getOpcode();
227 switch (opcode.getOpcode()) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
NormalSsaInsn.java 128 public Rop getOpcode() {
129 return insn.getOpcode();
143 if (insn.getOpcode().getOpcode() == RegOps.MARK_LOCAL) {
180 return insn.getOpcode().getOpcode() == RegOps.MOVE;
186 return insn.getOpcode().getOpcode() == RegOps.MOVE_EXCEPTION;
218 Rop opcode = getOpcode();
227 switch (opcode.getOpcode()) {
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 80 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
81 Addr.getOpcode() == ISD::TargetGlobalAddress)
84 if (Addr.getOpcode() == ISD::ADD) {
98 if (Addr.getOperand(0).getOpcode() == SPISD::Lo) {
103 if (Addr.getOperand(1).getOpcode() == SPISD::Lo) {
115 if (Addr.getOpcode() == ISD::FrameIndex) return false;
116 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
117 Addr.getOpcode() == ISD::TargetGlobalAddress)
120 if (Addr.getOpcode() == ISD::ADD) {
124 if (Addr.getOperand(0).getOpcode() == SPISD::Lo |
    [all...]
  /external/llvm/include/llvm/IR/
Operator.h 49 /// getOpcode - Return the opcode for this Instruction or ConstantExpr.
51 unsigned getOpcode() const {
53 return I->getOpcode();
54 return cast<ConstantExpr>(this)->getOpcode();
57 /// getOpcode - If V is an Instruction or ConstantExpr, return its
60 static unsigned getOpcode(const Value *V) {
62 return I->getOpcode();
64 return CE->getOpcode();
112 return I->getOpcode() == Instruction::Add ||
113 I->getOpcode() == Instruction::Sub |
    [all...]
Instruction.h 82 /// getOpcode() returns a member of one of the enums like Instruction::Add.
83 unsigned getOpcode() const { return getValueID() - InstructionVal; }
85 const char *getOpcodeName() const { return getOpcodeName(getOpcode()); }
86 bool isTerminator() const { return isTerminator(getOpcode()); }
87 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
88 bool isShift() { return isShift(getOpcode()); }
89 bool isCast() const { return isCast(getOpcode()); }
109 return getOpcode() == Shl || getOpcode() == LShr;
114 return getOpcode() == AShr
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
PlainInsn.java 92 return new PlainInsn(getOpcode(), getPosition(),
115 Rop newRop = Rops.ropFor(getOpcode().getOpcode(), getResult(),
130 int opcode = getOpcode().getOpcode();
152 return new PlainInsn(getOpcode(), getPosition(),
ThrowingCstInsn.java 84 return new ThrowingCstInsn(getOpcode(), getPosition(),
92 return new ThrowingCstInsn(getOpcode(), getPosition(),
103 return new ThrowingCstInsn(getOpcode(), getPosition(),
ThrowingInsn.java 99 return new ThrowingInsn(getOpcode(), getPosition(),
106 return new ThrowingInsn(getOpcode(), getPosition(),
116 return new ThrowingInsn(getOpcode(), getPosition(),
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
PlainInsn.java 92 return new PlainInsn(getOpcode(), getPosition(),
115 Rop newRop = Rops.ropFor(getOpcode().getOpcode(), getResult(),
130 int opcode = getOpcode().getOpcode();
152 return new PlainInsn(getOpcode(), getPosition(),
ThrowingCstInsn.java 84 return new ThrowingCstInsn(getOpcode(), getPosition(),
92 return new ThrowingCstInsn(getOpcode(), getPosition(),
103 return new ThrowingCstInsn(getOpcode(), getPosition(),
ThrowingInsn.java 99 return new ThrowingInsn(getOpcode(), getPosition(),
106 return new ThrowingInsn(getOpcode(), getPosition(),
116 return new ThrowingInsn(getOpcode(), getPosition(),
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
PlainInsn.java 91 return new PlainInsn(getOpcode(), getPosition(),
118 newRop = Rops.ropFor(getOpcode().getOpcode(),
135 return new PlainInsn(getOpcode(), getPosition(),
ThrowingCstInsn.java 79 return new ThrowingCstInsn(getOpcode(), getPosition(),
87 return new ThrowingCstInsn(getOpcode(), getPosition(),
98 return new ThrowingCstInsn(getOpcode(), getPosition(),
ThrowingInsn.java 99 return new ThrowingInsn(getOpcode(), getPosition(),
106 return new ThrowingInsn(getOpcode(), getPosition(),
116 return new ThrowingInsn(getOpcode(), getPosition(),
  /dalvik/dx/src/com/android/dx/io/instructions/
ZeroRegisterDecodedInstruction.java 41 getFormat(), getOpcode(), newIndex, getIndexType(),
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
ZeroRegisterDecodedInstruction.java 41 getFormat(), getOpcode(), newIndex, getIndexType(),
  /external/llvm/unittests/Transforms/Utils/
IntegerDivision.cpp 41 EXPECT_TRUE(BB->front().getOpcode() == Instruction::SDiv);
46 EXPECT_TRUE(BB->front().getOpcode() == Instruction::AShr);
49 EXPECT_TRUE(Quotient && Quotient->getOpcode() == Instruction::Sub);
71 EXPECT_TRUE(BB->front().getOpcode() == Instruction::UDiv);
76 EXPECT_TRUE(BB->front().getOpcode() == Instruction::ICmp);
79 EXPECT_TRUE(Quotient && Quotient->getOpcode() == Instruction::PHI);
101 EXPECT_TRUE(BB->front().getOpcode() == Instruction::SRem);
106 EXPECT_TRUE(BB->front().getOpcode() == Instruction::AShr);
109 EXPECT_TRUE(Remainder && Remainder->getOpcode() == Instruction::Sub);
131 EXPECT_TRUE(BB->front().getOpcode() == Instruction::URem)
    [all...]

Completed in 973 milliseconds

1 2 3 4 5 6 7 8 91011>>