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

12

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DUnresolvedOdexInstruction.java52 @Override public Opcode getOpcode() { method in class:UnresolvedOdexInstruction
53 return originalInstruction.getOpcode();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/
H A DInstruction.java49 Opcode getOpcode(); method in interface:Instruction
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DBuilderInstruction.java52 @Nonnull public Opcode getOpcode() { method in class:BuilderInstruction
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
H A DDexBackedInstruction.java56 @Nonnull public Opcode getOpcode() { return opcode; } method in class:DexBackedInstruction
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstruction.java58 switch (instruction.getOpcode().format) {
135 @Nonnull public Opcode getOpcode() { method in class:ImmutableInstruction
/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/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DAbstractInsnNode.java158 public int getOpcode() { method in class:AbstractInsnNode
/external/smack/src/org/xbill/DNS/
H A DHeader.java203 getOpcode() { method in class:Header
258 sb.append("opcode: " + Opcode.string(getOpcode()));
/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.h268 /// getOpcode - Returns the opcode of this MachineInstr.
270 int getOpcode() const { return MCID->Opcode; } function in class:llvm::MachineInstr
680 bool isEHLabel() const { return getOpcode() == TargetOpcode::EH_LABEL; }
681 bool isGCLabel() const { return getOpcode() == TargetOpcode::GC_LABEL; }
687 return getOpcode() == TargetOpcode::CFI_INSTRUCTION;
693 bool isDebugValue() const { return getOpcode() == TargetOpcode::DBG_VALUE; }
702 bool isPHI() const { return getOpcode() == TargetOpcode::PHI; }
703 bool isKill() const { return getOpcode() == TargetOpcode::KILL; }
704 bool isImplicitDef() const { return getOpcode()==TargetOpcode::IMPLICIT_DEF; }
705 bool isInlineAsm() const { return getOpcode()
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DType.java690 public int getOpcode(final int opcode) { method in class:Type
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_from_tgsi.cpp156 inline uint getOpcode() const { return insn->Instruction.Opcode; } function in class:tgsi::Instruction
187 return translateOpcode(getOpcode()); }
363 switch (getOpcode()) {
404 switch (getOpcode()) {
419 switch (getOpcode()) {
945 return insn.getOpcode() == TGSI_OPCODE_MOV &&
1577 if (tgsi.getOpcode() == TGSI_OPCODE_TXP && !tgt.isCube() && !tgt.isArray()) {
1617 if (tgsi.getOpcode() == TGSI_OPCODE_SAMPLE_C_LZ)
1720 return (insn.getOpcode() == TGSI_OPCODE_END ||
1721 insn.getOpcode()
[all...]
/external/llvm/include/llvm/IR/
H A DInstruction.h85 /// getOpcode() returns a member of one of the enums like Instruction::Add.
86 unsigned getOpcode() const { return getValueID() - InstructionVal; } function in class:llvm::Instruction
88 const char *getOpcodeName() const { return getOpcodeName(getOpcode()); }
89 bool isTerminator() const { return isTerminator(getOpcode()); }
90 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
91 bool isShift() { return isShift(getOpcode()); }
92 bool isCast() const { return isCast(getOpcode()); }
112 return getOpcode() == Shl || getOpcode() == LShr;
117 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.h116 return I->getOpcode() == Instruction::Alloca ||
117 I->getOpcode() == Instruction::Load ||
118 I->getOpcode() == Instruction::VAArg ||
119 I->getOpcode() == Instruction::ExtractValue ||
120 (I->getOpcode() >= CastOpsBegin && I->getOpcode() < CastOpsEnd);
326 BinaryOps getOpcode() const { function in class:llvm::BinaryOperator
327 return static_cast<BinaryOps>(Instruction::getOpcode());
608 Instruction::CastOps getOpcode() const { function in class:llvm::CastInst
609 return Instruction::CastOps(Instruction::getOpcode());
714 OtherOps getOpcode() const { function in class:llvm::CmpInst
[all...]
H A DOperator.h49 /// getOpcode - Return the opcode for this Instruction or ConstantExpr.
51 unsigned getOpcode() const { function in class:llvm::Operator
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) { function in class:llvm::Operator
62 return I->getOpcode();
64 return CE->getOpcode();
112 return I->getOpcode() == Instruction::Add ||
113 I->getOpcode()
[all...]
/external/llvm/include/llvm/MC/
H A DMCInst.h158 unsigned getOpcode() const { return Opcode; } function in class:llvm::MCInst
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_from_tgsi.cpp156 inline uint getOpcode() const { return insn->Instruction.Opcode; } function in class:tgsi::Instruction
187 return translateOpcode(getOpcode()); }
363 switch (getOpcode()) {
404 switch (getOpcode()) {
419 switch (getOpcode()) {
945 return insn.getOpcode() == TGSI_OPCODE_MOV &&
1577 if (tgsi.getOpcode() == TGSI_OPCODE_TXP && !tgt.isCube() && !tgt.isArray()) {
1617 if (tgsi.getOpcode() == TGSI_OPCODE_SAMPLE_C_LZ)
1720 return (insn.getOpcode() == TGSI_OPCODE_END ||
1721 insn.getOpcode()
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h358 BinaryOperator::Opcode getOpcode() const { return Op; } function in class:clang::ento::BinarySymExpr
393 Profile(ID, LHS, getOpcode(), RHS, getType());
428 Profile(ID, LHS, getOpcode(), RHS, getType());
462 Profile(ID, LHS, getOpcode(), RHS, getType());

Completed in 5697 milliseconds

12