Searched defs:getOpcode (Results 1 - 25 of 42) sorted by last modified time

12

/external/smack/src/org/xbill/DNS/
H A DHeader.java203 getOpcode() { method in class:Header
258 sb.append("opcode: " + Opcode.string(getOpcode()));
/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/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/iface/instruction/
H A DInstruction.java49 Opcode getOpcode(); method in interface:Instruction
/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/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/AnnotationVisitor.class " package org.objectweb.asm public ...
H A Dasm-tree-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/tree/AbstractInsnNode.class " package org.objectweb.asm ...
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DType.java690 public int getOpcode(final int opcode) { method in class:Type
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DAbstractInsnNode.java158 public int getOpcode() { method in class:AbstractInsnNode
/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/llvm/utils/TableGen/
H A DDAGISelMatcher.h485 const SDNodeInfo &getOpcode() const { return Opcode; } function in class:llvm::CheckOpcodeMatcher
/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...]
H A DSelectionDAGNodes.h177 inline unsigned getOpcode() const;
397 /// getOpcode - Return the SelectionDAG opcode value for this node. For
401 unsigned getOpcode() const { return (unsigned short)NodeType; } function in class:llvm::SDNode
880 inline unsigned SDValue::getOpcode() const { function in class:llvm::SDValue
881 return Node->getOpcode();
991 return isBinOpWithFlags(N->getOpcode());
1036 return N->getOpcode() == ISD::ADDRSPACECAST;
1123 return getOperand(getOpcode() == ISD::STORE ? 2 : 1);
1130 return N->getOpcode() == ISD::LOAD ||
1131 N->getOpcode()
[all...]
/external/llvm/include/llvm/IR/
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 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 DInstructions.h131 return (I->getOpcode() == Instruction::Alloca);
252 return I->getOpcode() == Instruction::Load;
374 return I->getOpcode() == Instruction::Store;
445 return I->getOpcode() == Instruction::Fence;
594 return I->getOpcode() == Instruction::AtomicCmpXchg;
738 return I->getOpcode() == Instruction::AtomicRMW;
930 return (I->getOpcode() == Instruction::GetElementPtr);
1105 return I->getOpcode() == Instruction::ICmp;
1214 return I->getOpcode() == Instruction::FCmp;
1470 return I->getOpcode()
1572 OtherOps getOpcode() const { function in class:llvm::SelectInst
[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 DMCExpr.h366 /// getOpcode - Get the kind of this unary expression.
367 Opcode getOpcode() const { return Op; } function in class:llvm::MCUnaryExpr
497 /// getOpcode - Get the kind of this binary expression.
498 Opcode getOpcode() const { return Op; } function in class:llvm::MCBinaryExpr
H A DMCInst.h158 unsigned getOpcode() const { return Opcode; } function in class:llvm::MCInst
H A DMCInstrDesc.h181 unsigned getOpcode() const { function in class:llvm::MCInstrDesc

Completed in 259 milliseconds

12