Searched defs:getOpcode (Results 1 - 25 of 26) sorted by relevance

12

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDop.java96 public int getOpcode() { method in class:Dop
H A DDalvInsn.java175 public final Dop getOpcode() { method in class:DalvInsn
200 * {@code getOpcode().hasResult()}.
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRop.java312 public int getOpcode() { method in class:Rop
H A DInsn.java124 public final Rop getOpcode() { method in class:Insn
157 if (opcode.getOpcode() == RegOps.MARK_LOCAL) {
187 * is just a convenient wrapper for {@code getOpcode().canThrow()}.
279 return opcode == b.getOpcode()
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DNormalSsaInsn.java128 public Rop getOpcode() { method in class:NormalSsaInsn
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...]
H A DSsaInsn.java174 abstract public Rop getOpcode(); method in class:SsaInsn
H A DPhiInsn.java173 public Rop getOpcode() { method in class:PhiInsn
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.h76 Opcode getOpcode(OpcodeID id) function in class:JSC::Interpreter
152 bool isCallBytecode(Opcode opcode) { return opcode == getOpcode(op_call) || opcode == getOpcode(op_construct) || opcode == getOpcode(op_call_eval); }
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DDecodedInstruction.java123 public final int getOpcode() { method in class:DecodedInstruction
/external/llvm/include/llvm/CodeGen/
H A DMachineInstr.h256 /// getOpcode - Returns the opcode of this MachineInstr.
258 int getOpcode() const { return MCID->Opcode; } function in class:llvm::MachineInstr
597 return getOpcode() == TargetOpcode::PROLOG_LABEL ||
598 getOpcode() == TargetOpcode::EH_LABEL ||
599 getOpcode() == TargetOpcode::GC_LABEL;
603 return getOpcode() == TargetOpcode::PROLOG_LABEL;
605 bool isEHLabel() const { return getOpcode() == TargetOpcode::EH_LABEL; }
606 bool isGCLabel() const { return getOpcode() == TargetOpcode::GC_LABEL; }
607 bool isDebugValue() const { return getOpcode() == TargetOpcode::DBG_VALUE; }
609 bool isPHI() const { return getOpcode()
[all...]
H A DSelectionDAGNodes.h140 inline unsigned getOpcode() const;
359 /// getOpcode - Return the SelectionDAG opcode value for this node. For
363 unsigned getOpcode() const { return (unsigned short)NodeType; } function in class:llvm::SDNode
774 inline unsigned SDValue::getOpcode() const {
775 return Node->getOpcode();
970 return getOperand(getOpcode() == ISD::STORE ? 2 : 1);
978 return N->getOpcode() == ISD::LOAD ||
979 N->getOpcode() == ISD::STORE ||
980 N->getOpcode() == ISD::PREFETCH ||
981 N->getOpcode()
[all...]
/external/llvm/include/llvm/
H A DOperator.h41 /// getOpcode - Return the opcode for this Instruction or ConstantExpr.
43 unsigned getOpcode() const { function in class:llvm::Operator
45 return I->getOpcode();
46 return cast<ConstantExpr>(this)->getOpcode();
49 /// getOpcode - If V is an Instruction or ConstantExpr, return its
52 static unsigned getOpcode(const Value *V) { function in class:llvm::Operator
54 return I->getOpcode();
56 return CE->getOpcode();
108 return I->getOpcode() == Instruction::Add ||
109 I->getOpcode()
[all...]
H A DInstruction.h81 /// getOpcode() returns a member of one of the enums like Instruction::Add.
82 unsigned getOpcode() const { return getValueID() - InstructionVal; } function in class:llvm::Instruction
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()
[all...]
H A DConstants.h1062 /// getOpcode - Return the opcode at the root of this constant expression
1063 unsigned getOpcode() const { return getSubclassDataFromValue(); } function in class:llvm::ConstantExpr
H A DInstrTypes.h118 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 { function in class:llvm::BinaryOperator
329 return static_cast<BinaryOps>(Instruction::getOpcode());
598 Instruction::CastOps getOpcode() const { function in class:llvm::CastInst
599 return Instruction::CastOps(Instruction::getOpcode());
705 OtherOps getOpcode() const { function in class:llvm::CmpInst
[all...]
H A DInstructions.h117 return (I->getOpcode() == Instruction::Alloca);
237 return I->getOpcode() == Instruction::Load;
359 return I->getOpcode() == Instruction::Store;
431 return I->getOpcode() == Instruction::Fence;
531 return I->getOpcode() == Instruction::AtomicCmpXchg;
675 return I->getOpcode() == Instruction::AtomicRMW;
854 return (I->getOpcode() == Instruction::GetElementPtr);
1036 return I->getOpcode() == Instruction::ICmp;
1146 return I->getOpcode() == Instruction::FCmp;
1368 return I->getOpcode()
1467 OtherOps getOpcode() const { function in class:llvm::SelectInst
[all...]
/external/llvm/include/llvm/MC/
H A DMCInst.h158 unsigned getOpcode() const { return Opcode; } function in class:llvm::MCInst
H A DMCInstrDesc.h159 /// getOpcode - Return the opcode number for this descriptor.
160 unsigned getOpcode() const { function in class:llvm::MCInstrDesc
H A DMCExpr.h294 /// getOpcode - Get the kind of this unary expression.
295 Opcode getOpcode() const { return Op; } function in class:llvm::MCUnaryExpr
426 /// getOpcode - Get the kind of this binary expression.
427 Opcode getOpcode() const { return Op; } function in class:llvm::MCBinaryExpr
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h363 BinaryOperator::Opcode getOpcode() const { return Op; } function in class:clang::ento::SymIntExpr
404 BinaryOperator::Opcode getOpcode() const { return Op; } function in class:clang::ento::IntSymExpr
443 BinaryOperator::Opcode getOpcode() const { return Op; } function in class:clang::ento::SymSymExpr
/external/llvm/include/llvm/TableGen/
H A DRecord.h849 return UnOpInit::get(getOpcode(), *Operands.begin(), getType());
858 UnaryOp getOpcode() const { return Opc; } function in class:llvm::UnOpInit
893 return BinOpInit::get(getOpcode(), Operands[0], Operands[1], getType());
906 BinaryOp getOpcode() const { return Opc; } function in class:llvm::BinOpInit
944 return TernOpInit::get(getOpcode(), Operands[0], Operands[1], Operands[2],
961 TernaryOp getOpcode() const { return Opc; } function in class:llvm::TernOpInit
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.h455 const SDNodeInfo &getOpcode() const { return Opcode; } function in class:llvm::CheckOpcodeMatcher
/external/dexmaker/src/dx/java/com/android/dx/io/
H A DOpcodeInfo.java1423 int idx = opcode.getOpcode() - Opcodes.MIN_VALUE;
1444 public int getOpcode() { method in class:OpcodeInfo.Info
/external/clang/include/clang/AST/
H A DExpr.h1564 Opcode getOpcode() const { return static_cast<Opcode>(Opc); } function in class:clang::StringLiteral::UnaryOperator
1584 bool isPrefix() const { return isPrefix(getOpcode()); }
1585 bool isPostfix() const { return isPostfix(getOpcode()); }
1591 return isIncrementOp(getOpcode());
1598 return isDecrementOp(getOpcode());
1603 return isIncrementDecrementOp(getOpcode());
1609 bool isArithmeticOp() const { return isArithmeticOp(getOpcode()); }
2816 Opcode getOpcode() const { return static_cast<Opcode>(Opc); } function in class:clang::StringLiteral::OffsetOfExpr::BinaryOperator
2832 const char *getOpcodeStr() const { return getOpcodeStr(getOpcode()); }
2846 bool isAdditiveOp() const { return isAdditiveOp(getOpcode()); }
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 334 milliseconds

12