HomeSort by relevance Sort by last modified time
    Searched defs:OpKind (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 66 /// OpKind - Specify what kind of operand this is. This discriminates the
68 MachineOperandType OpKind;
184 : OpKind(K), SubReg_TargetFlags(0), ParentMI(nullptr) {}
188 MachineOperandType getType() const { return (MachineOperandType)OpKind; }
227 bool isReg() const { return OpKind == MO_Register; }
229 bool isImm() const { return OpKind == MO_Immediate; }
231 bool isCImm() const { return OpKind == MO_CImmediate; }
233 bool isFPImm() const { return OpKind == MO_FPImmediate; }
235 bool isMBB() const { return OpKind == MO_MachineBasicBlock; }
237 bool isFI() const { return OpKind == MO_FrameIndex;
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
  /art/compiler/dex/
compiler_enums.h 277 enum OpKind {
333 std::ostream& operator<<(std::ostream& os, const OpKind& kind);

Completed in 156 milliseconds