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

1 2

  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dop.java 85 public int getOpcode() {
DalvInsn.java 173 public final Dop getOpcode() {
198 * {@code getOpcode().hasResult()}.
  /dalvik/dx/src/com/android/dx/dex/code/
Dop.java 96 public int getOpcode() {
DalvInsn.java 175 public final Dop getOpcode() {
200 * {@code getOpcode().hasResult()}.
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h 76 Opcode getOpcode(OpcodeID id)
152 bool isCallBytecode(Opcode opcode) { return opcode == getOpcode(op_call) || opcode == getOpcode(op_construct) || opcode == getOpcode(op_call_eval); }
  /dalvik/dx/src/com/android/dx/ssa/
SsaInsn.java 174 abstract public Rop getOpcode();
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...]
PhiInsn.java 173 public Rop getOpcode() {
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 197 /// getOpcode - Returns the opcode of this MachineInstr.
199 int getOpcode() const { return MCID->Opcode; }
262 return getOpcode() == TargetOpcode::PROLOG_LABEL ||
263 getOpcode() == TargetOpcode::EH_LABEL ||
264 getOpcode() == TargetOpcode::GC_LABEL;
268 return getOpcode() == TargetOpcode::PROLOG_LABEL;
270 bool isEHLabel() const { return getOpcode() == TargetOpcode::EH_LABEL; }
271 bool isGCLabel() const { return getOpcode() == TargetOpcode::GC_LABEL; }
272 bool isDebugValue() const { return getOpcode() == TargetOpcode::DBG_VALUE; }
274 bool isPHI() const { return getOpcode() == TargetOpcode::PHI;
    [all...]
  /external/llvm/include/llvm/
Operator.h 40 /// getOpcode - Return the opcode for this Instruction or ConstantExpr.
42 unsigned getOpcode() const {
44 return I->getOpcode();
45 return cast<ConstantExpr>(this)->getOpcode();
48 /// getOpcode - If V is an Instruction or ConstantExpr, return its
51 static unsigned getOpcode(const Value *V) {
53 return I->getOpcode();
55 return CE->getOpcode();
107 return I->getOpcode() == Instruction::Add ||
108 I->getOpcode() == Instruction::Sub |
    [all...]
Constants.h     [all...]
Instruction.h 81 /// getOpcode() returns a member of one of the enums like Instruction::Add.
82 unsigned getOpcode() const { return getValueID() - InstructionVal; }
84 const char *getOpcodeName() const { return getOpcodeName(getOpcode()); }
85 bool isTerminator() const { return isTerminator(getOpcode()); }
86 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
87 bool isShift() { return isShift(getOpcode()); }
88 bool isCast() const { return isCast(getOpcode()); }
108 return getOpcode() == Shl || getOpcode() == LShr;
113 return getOpcode() == AShr
    [all...]
InstrTypes.h 118 return I->getOpcode() == Instruction::Alloca ||
119 I->getOpcode() == Instruction::Load ||
120 I->getOpcode() == Instruction::VAArg ||
121 I->getOpcode() == Instruction::ExtractValue ||
122 (I->getOpcode() >= CastOpsBegin && I->getOpcode() < CastOpsEnd);
328 BinaryOps getOpcode() const {
329 return static_cast<BinaryOps>(Instruction::getOpcode());
597 Instruction::CastOps getOpcode() const {
598 return Instruction::CastOps(Instruction::getOpcode());
    [all...]
Instructions.h 98 return (I->getOpcode() == Instruction::Alloca);
174 return I->getOpcode() == Instruction::Load;
252 return I->getOpcode() == Instruction::Store;
521 return (I->getOpcode() == Instruction::GetElementPtr);
719 return I->getOpcode() == Instruction::ICmp;
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateMethodAdapter2.java 235 mDelWriter.visitVarInsn(t.getOpcode(Opcodes.ILOAD), maxLocals);
254 mDelWriter.visitInsn(returnType.getOpcode(Opcodes.IRETURN));
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Insn.java 126 public final Rop getOpcode() {
159 if (opcode.getOpcode() == RegOps.MARK_LOCAL) {
189 * is just a convenient wrapper for {@code getOpcode().canThrow()}.
281 return opcode == b.getOpcode()
Rop.java 312 public int getOpcode() {
  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 124 public final int getOpcode() {
  /dalvik/dx/src/com/android/dx/rop/code/
Insn.java 124 public final Rop getOpcode() {
157 if (opcode.getOpcode() == RegOps.MARK_LOCAL) {
187 * is just a convenient wrapper for {@code getOpcode().canThrow()}.
279 return opcode == b.getOpcode()
Rop.java 312 public int getOpcode() {
  /external/llvm/include/llvm/MC/
MCInst.h 137 unsigned getOpcode() const { return Opcode; }
MCExpr.h 267 /// getOpcode - Get the kind of this unary expression.
268 Opcode getOpcode() const { return Op; }
399 /// getOpcode - Get the kind of this binary expression.
400 Opcode getOpcode() const { return Op; }
MCInstrDesc.h 157 /// getOpcode - Return the opcode number for this descriptor.
158 unsigned getOpcode() const {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 288 BinaryOperator::Opcode getOpcode() const { return Op; }
327 BinaryOperator::Opcode getOpcode() const { return Op; }
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 454 const SDNodeInfo &getOpcode() const { return Opcode; }
    [all...]

Completed in 334 milliseconds

1 2