HomeSort by relevance Sort by last modified time
    Searched refs:OpKind (Results 1 - 25 of 46) sorted by null

1 2

  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 67 /// OpKind - Specify what kind of operand this is. This discriminates the
69 MachineOperandType OpKind : 8;
185 : OpKind(K), SubReg_TargetFlags(0), ParentMI(nullptr) {}
189 MachineOperandType getType() const { return (MachineOperandType)OpKind; }
230 bool isReg() const { return OpKind == MO_Register; }
232 bool isImm() const { return OpKind == MO_Immediate; }
234 bool isCImm() const { return OpKind == MO_CImmediate; }
236 bool isFPImm() const { return OpKind == MO_FPImmediate; }
238 bool isMBB() const { return OpKind == MO_MachineBasicBlock; }
240 bool isFI() const { return OpKind == MO_FrameIndex;
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineOperand.h 56 /// OpKind - Specify what kind of operand this is. This discriminates the
58 unsigned char OpKind; // MachineOperandType
156 explicit MachineOperand(MachineOperandType K) : OpKind(K), ParentMI(0) {
162 MachineOperandType getType() const { return (MachineOperandType)OpKind; }
191 bool isReg() const { return OpKind == MO_Register; }
193 bool isImm() const { return OpKind == MO_Immediate; }
195 bool isCImm() const { return OpKind == MO_CImmediate; }
197 bool isFPImm() const { return OpKind == MO_FPImmediate; }
199 bool isMBB() const { return OpKind == MO_MachineBasicBlock; }
201 bool isFI() const { return OpKind == MO_FrameIndex;
    [all...]
  /art/compiler/optimizing/
nodes_shared.h 180 enum OpKind {
200 OpKind op,
224 static bool IsShiftOp(OpKind op_kind) {
228 static bool IsExtensionOp(OpKind op_kind) {
234 /*out*/OpKind* op_kind,
238 OpKind GetOpKind() const { return op_kind_; }
248 OpKind op_kind_;
251 friend std::ostream& operator<<(std::ostream& os, OpKind op);
254 std::ostream& operator<<(std::ostream& os, const HDataProcWithShifterOp::OpKind op);
nodes_shared.cc 31 /*out*/OpKind* op_kind,
75 std::ostream& operator<<(std::ostream& os, const HDataProcWithShifterOp::OpKind op) {
87 LOG(FATAL) << "Invalid OpKind " << static_cast<int>(op);
common_arm64.h 327 inline vixl::aarch64::Shift ShiftFromOpKind(HDataProcWithShifterOp::OpKind op_kind) {
339 inline vixl::aarch64::Extend ExtendFromOpKind(HDataProcWithShifterOp::OpKind op_kind) {
instruction_simplifier_arm.cc 118 HDataProcWithShifterOp::OpKind op_kind;
instruction_simplifier_arm64.cc 132 HDataProcWithShifterOp::OpKind op_kind;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
MachineOperand.h 75 /// OpKind - Specify what kind of operand this is. This discriminates the
77 unsigned OpKind : 8;
197 : OpKind(K), SubReg_TargetFlags(0), ParentMI(nullptr) {
213 MachineOperandType getType() const { return (MachineOperandType)OpKind; }
311 bool isReg() const { return OpKind == MO_Register; }
313 bool isImm() const { return OpKind == MO_Immediate; }
315 bool isCImm() const { return OpKind == MO_CImmediate; }
317 bool isFPImm() const { return OpKind == MO_FPImmediate; }
319 bool isMBB() const { return OpKind == MO_MachineBasicBlock; }
321 bool isFI() const { return OpKind == MO_FrameIndex;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/Mips/
MipsGenAsmMatcher.inc     [all...]
  /external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/AArch64/
AArch64GenAsmMatcher.inc     [all...]
  /external/llvm/utils/TableGen/
FastISelEmitter.cpp 78 class OpKind {
83 OpKind() : Repr(OK_Invalid) {}
85 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; }
86 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; }
88 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; }
89 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; }
90 static OpKind getImm(unsigned V) {
93 OpKind K; K.Repr = OK_Imm+V; return K
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
FastISelEmitter.cpp 72 class OpKind {
77 OpKind() : Repr(OK_Invalid) {}
79 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; }
80 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; }
82 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; }
83 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; }
84 static OpKind getImm(unsigned V) {
87 OpKind K; K.Repr = OK_Imm+V; return K
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
FastISelEmitter.cpp 88 class OpKind {
93 OpKind() : Repr(OK_Invalid) {}
95 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; }
96 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; }
98 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; }
99 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; }
100 static OpKind getImm(unsigned V) {
103 OpKind K; K.Repr = OK_Imm+V; return K
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceInst.h 318 enum OpKind {
325 static InstArithmetic *create(Cfg *Func, OpKind Op, Variable *Dest,
330 OpKind getOp() const { return Op; }
334 static const char *getOpName(OpKind Op);
343 InstArithmetic(Cfg *Func, OpKind Op, Variable *Dest, Operand *Source1,
346 const OpKind Op;
472 enum OpKind {
479 static const char *getCastName(OpKind Kind);
481 static InstCast *create(Cfg *Func, OpKind CastKind, Variable *Dest,
486 OpKind getCastKind() const { return CastKind;
    [all...]
IceInst.cpp 281 InstArithmetic::InstArithmetic(Cfg *Func, OpKind Op, Variable *Dest,
295 const char *InstArithmetic::getOpName(OpKind Op) {
357 InstCast::InstCast(Cfg *Func, OpKind CastKind, Variable *Dest, Operand *Source)
795 const char *InstCast::getCastName(InstCast::OpKind Kind) {
796 if (Kind < InstCast::OpKind::_num)
798 llvm_unreachable("Invalid InstCast::OpKind");
    [all...]
PNaClTranslator.cpp     [all...]
IceTargetLowering.h 503 void scalarizeArithmetic(InstArithmetic::OpKind K, Variable *Dest,
IceCfgNode.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/X86/
X86GenAsmMatcher.inc     [all...]
  /external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/ARM/
ARMGenAsmMatcher.inc     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
PointerArithChecker.cpp 319 BinaryOperatorKind OpKind = BOp->getOpcode();
320 if (!BOp->isAdditiveOp() && OpKind != BO_AddAssign && OpKind != BO_SubAssign)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
MachineOperand.cpp 157 OpKind = MO_Immediate;
166 OpKind = MO_FPImmediate;
177 OpKind = MO_ExternalSymbol;
189 OpKind = MO_MCSymbol;
199 OpKind = MO_FrameIndex;
210 OpKind = MO_TargetIndex;
234 OpKind = MO_Register;
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp 139 OpKind = MO_Immediate;
148 OpKind = MO_FPImmediate;
158 OpKind = MO_ExternalSymbol;
170 OpKind = MO_MCSymbol;
192 OpKind = MO_Register;
    [all...]

Completed in 937 milliseconds

1 2