HomeSort by relevance Sort by last modified time
    Searched defs:getOpcode (Results 26 - 48 of 48) sorted by null

12

  /external/llvm/include/llvm/IR/
Constants.h     [all...]
InstrTypes.h 116 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 {
327 return static_cast<BinaryOps>(Instruction::getOpcode());
608 Instruction::CastOps getOpcode() const {
609 return Instruction::CastOps(Instruction::getOpcode());
    [all...]
Instruction.h 85 /// getOpcode() returns a member of one of the enums like Instruction::Add.
86 unsigned getOpcode() const { return getValueID() - InstructionVal; }
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() == AShr
    [all...]
Operator.h 49 /// getOpcode - Return the opcode for this Instruction or ConstantExpr.
51 unsigned getOpcode() const {
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) {
62 return I->getOpcode();
64 return CE->getOpcode();
112 return I->getOpcode() == Instruction::Add ||
113 I->getOpcode() == Instruction::Sub |
    [all...]
Instructions.h 131 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;
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_from_tgsi.cpp 156 inline uint getOpcode() const { return insn->Instruction.Opcode; }
187 return translateOpcode(getOpcode()); }
363 switch (getOpcode()) {
404 switch (getOpcode()) {
419 switch (getOpcode()) {
945 return insn.getOpcode() == TGSI_OPCODE_MOV &&
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
CodeEmitter.java 244 public void math(int op, Type type) { mv.visitInsn(type.getOpcode(op)); }
246 public void array_load(Type type) { mv.visitInsn(type.getOpcode(Constants.IALOAD)); }
247 public void array_store(Type type) { mv.visitInsn(type.getOpcode(Constants.IASTORE)); }
399 mv.visitVarInsn(t.getOpcode(Constants.ILOAD), pos);
404 mv.visitVarInsn(t.getOpcode(Constants.ISTORE), pos);
420 mv.visitInsn(state.sig.getReturnType().getOpcode(Constants.IRETURN));
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 358 BinaryOperator::Opcode getOpcode() const { return Op; }
393 Profile(ID, LHS, getOpcode(), RHS, getType());
428 Profile(ID, LHS, getOpcode(), RHS, getType());
462 Profile(ID, LHS, getOpcode(), RHS, getType());
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 181 unsigned getOpcode() const {
MCExpr.h 366 /// getOpcode - Get the kind of this unary expression.
367 Opcode getOpcode() const { return Op; }
497 /// getOpcode - Get the kind of this binary expression.
498 Opcode getOpcode() const { return Op; }
  /dalvik/dx/src/com/android/dx/io/
OpcodeInfo.java     [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 906 return UnOpInit::get(getOpcode(), *Operands.begin(), getType());
915 UnaryOp getOpcode() const { return Opc; }
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 485 const SDNodeInfo &getOpcode() const { return Opcode; }
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
OpcodeInfo.java     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 177 inline unsigned getOpcode() const;
397 /// getOpcode - Return the SelectionDAG opcode value for this node. For
401 unsigned getOpcode() const { return (unsigned short)NodeType; }
880 inline unsigned SDValue::getOpcode() const {
881 return Node->getOpcode();
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-tree-3.3.jar 
asm-3.3.jar 
bcel.jar 
  /external/jarjar/lib/
asm-4.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.objectweb.asm_3.2.0.v200909071300.jar 
  /external/dexmaker/lib/
jarjar.jar 
mockito-core-1.9.1-SNAPSHOT.jar 

Completed in 1666 milliseconds

12