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.h255 /// getOpcode - Returns the opcode of this MachineInstr.
257 int getOpcode() const { return MCID->Opcode; } function in class:llvm::MachineInstr
590 return getOpcode() == TargetOpcode::PROLOG_LABEL ||
591 getOpcode() == TargetOpcode::EH_LABEL ||
592 getOpcode() == TargetOpcode::GC_LABEL;
596 return getOpcode() == TargetOpcode::PROLOG_LABEL;
598 bool isEHLabel() const { return getOpcode() == TargetOpcode::EH_LABEL; }
599 bool isGCLabel() const { return getOpcode() == TargetOpcode::GC_LABEL; }
600 bool isDebugValue() const { return getOpcode() == TargetOpcode::DBG_VALUE; }
602 bool isPHI() const { return getOpcode()
[all...]
H A DSelectionDAGNodes.h136 inline unsigned getOpcode() const;
354 /// getOpcode - Return the SelectionDAG opcode value for this node. For
358 unsigned getOpcode() const { return (unsigned short)NodeType; } function in class:llvm::SDNode
769 inline unsigned SDValue::getOpcode() const {
770 return Node->getOpcode();
960 return getOperand(getOpcode() == ISD::STORE ? 2 : 1);
968 return N->getOpcode() == ISD::LOAD ||
969 N->getOpcode() == ISD::STORE ||
970 N->getOpcode() == ISD::PREFETCH ||
971 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.h1051 /// getOpcode - Return the opcode at the root of this constant expression
1052 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.h115 return (I->getOpcode() == Instruction::Alloca);
235 return I->getOpcode() == Instruction::Load;
357 return I->getOpcode() == Instruction::Store;
429 return I->getOpcode() == Instruction::Fence;
529 return I->getOpcode() == Instruction::AtomicCmpXchg;
673 return I->getOpcode() == Instruction::AtomicRMW;
852 return (I->getOpcode() == Instruction::GetElementPtr);
1034 return I->getOpcode() == Instruction::ICmp;
1144 return I->getOpcode() == Instruction::FCmp;
1361 return I->getOpcode()
1460 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.h158 /// getOpcode - Return the opcode number for this descriptor.
159 unsigned getOpcode() const { function in class:llvm::MCInstrDesc
H A DMCExpr.h289 /// getOpcode - Get the kind of this unary expression.
290 Opcode getOpcode() const { return Op; } function in class:llvm::MCUnaryExpr
421 /// getOpcode - Get the kind of this binary expression.
422 Opcode getOpcode() const { return Op; } function in class:llvm::MCBinaryExpr
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h361 BinaryOperator::Opcode getOpcode() const { return Op; } function in class:clang::ento::SymIntExpr
402 BinaryOperator::Opcode getOpcode() const { return Op; } function in class:clang::ento::IntSymExpr
441 BinaryOperator::Opcode getOpcode() const { return Op; } function in class:clang::ento::SymSymExpr
/external/llvm/include/llvm/TableGen/
H A DRecord.h850 return UnOpInit::get(getOpcode(), *Operands.begin(), getType());
859 UnaryOp getOpcode() const { return Opc; } function in class:llvm::UnOpInit
894 return BinOpInit::get(getOpcode(), Operands[0], Operands[1], getType());
907 BinaryOp getOpcode() const { return Opc; } function in class:llvm::BinOpInit
945 return TernOpInit::get(getOpcode(), Operands[0], Operands[1], Operands[2],
962 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.h1550 Opcode getOpcode() const { return static_cast<Opcode>(Opc); } function in class:clang::StringLiteral::UnaryOperator
1570 bool isPrefix() const { return isPrefix(getOpcode()); }
1571 bool isPostfix() const { return isPostfix(getOpcode()); }
1577 return isIncrementOp(getOpcode());
1584 return isDecrementOp(getOpcode());
1589 return isIncrementDecrementOp(getOpcode());
1595 bool isArithmeticOp() const { return isArithmeticOp(getOpcode()); }
2804 Opcode getOpcode() const { return static_cast<Opcode>(Opc); } function in class:clang::StringLiteral::OffsetOfExpr::BinaryOperator
2820 const char *getOpcodeStr() const { return getOpcodeStr(getOpcode()); }
2834 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 5423 milliseconds

12