Home
last modified time | relevance | path

Searched refs:SimpleTy (Results 1 – 25 of 57) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DMachineValueType.h265 SimpleValueType SimpleTy = INVALID_SIMPLE_VALUE_TYPE; variable
268 constexpr MVT(SimpleValueType SVT) : SimpleTy(SVT) {} in MVT()
270 bool operator>(const MVT& S) const { return SimpleTy > S.SimpleTy; }
271 bool operator<(const MVT& S) const { return SimpleTy < S.SimpleTy; }
272 bool operator==(const MVT& S) const { return SimpleTy == S.SimpleTy; }
273 bool operator!=(const MVT& S) const { return SimpleTy != S.SimpleTy; }
274 bool operator>=(const MVT& S) const { return SimpleTy >= S.SimpleTy; }
275 bool operator<=(const MVT& S) const { return SimpleTy <= S.SimpleTy; }
279 return (SimpleTy >= MVT::FIRST_VALUETYPE && in isValid()
280 SimpleTy < MVT::LAST_VALUETYPE); in isValid()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/PowerPC/
DPPCGenFastISel.inc33 if (RetVT.SimpleTy != MVT::i64)
39 switch (VT.SimpleTy) {
48 if (RetVT.SimpleTy != MVT::f64)
57 switch (VT.SimpleTy) {
66 if (RetVT.SimpleTy != MVT::i32)
72 switch (VT.SimpleTy) {
92 if (RetVT.SimpleTy != MVT::f64)
101 if (RetVT.SimpleTy != MVT::i64)
110 switch (VT.SimpleTy) {
120 if (RetVT.SimpleTy != MVT::v4i32)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/AArch64/
DAArch64GenFastISel.inc98 if (RetVT.SimpleTy != MVT::i64)
104 switch (VT.SimpleTy) {
122 if (RetVT.SimpleTy != MVT::isVoid)
128 switch (VT.SimpleTy) {
137 if (RetVT.SimpleTy != MVT::v8i8)
146 if (RetVT.SimpleTy != MVT::v16i8)
155 if (RetVT.SimpleTy != MVT::v4i16)
164 if (RetVT.SimpleTy != MVT::v8i16)
173 if (RetVT.SimpleTy != MVT::v2i32)
182 if (RetVT.SimpleTy != MVT::v4i32)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/ARM/
DARMGenFastISel.inc81 if (RetVT.SimpleTy != MVT::isVoid)
90 switch (VT.SimpleTy) {
99 if (RetVT.SimpleTy != MVT::isVoid)
114 switch (VT.SimpleTy) {
123 if (RetVT.SimpleTy != MVT::isVoid)
132 switch (VT.SimpleTy) {
141 if (RetVT.SimpleTy != MVT::isVoid)
150 if (RetVT.SimpleTy != MVT::isVoid)
159 if (RetVT.SimpleTy != MVT::isVoid)
168 switch (VT.SimpleTy) {
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/
DMipsGenFastISel.inc56 if (RetVT.SimpleTy != MVT::f32)
71 if (RetVT.SimpleTy != MVT::f64)
80 if (RetVT.SimpleTy != MVT::i32)
95 if (RetVT.SimpleTy != MVT::i64)
104 switch (VT.SimpleTy) {
116 if (RetVT.SimpleTy != MVT::isVoid)
143 if (RetVT.SimpleTy != MVT::isVoid)
161 switch (VT.SimpleTy) {
171 if (RetVT.SimpleTy != MVT::i32)
186 if (RetVT.SimpleTy != MVT::i64)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/X86/
DX86GenFastISel.inc43 if (RetVT.SimpleTy != MVT::v16i8)
58 if (RetVT.SimpleTy != MVT::v32i8)
70 if (RetVT.SimpleTy != MVT::v64i8)
79 if (RetVT.SimpleTy != MVT::v8i16)
94 if (RetVT.SimpleTy != MVT::v16i16)
106 if (RetVT.SimpleTy != MVT::v32i16)
115 if (RetVT.SimpleTy != MVT::v4i32)
130 if (RetVT.SimpleTy != MVT::v8i32)
142 if (RetVT.SimpleTy != MVT::v16i32)
151 if (RetVT.SimpleTy != MVT::v2i64)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DValueTypes.h48 if (V.SimpleTy != VT.V.SimpleTy)
50 if (V.SimpleTy == MVT::INVALID_SIMPLE_VALUE_TYPE)
66 if (M.SimpleTy != MVT::INVALID_SIMPLE_VALUE_TYPE) in getIntegerVT()
76 if (M.SimpleTy != MVT::INVALID_SIMPLE_VALUE_TYPE)
87 if (M.SimpleTy != MVT::INVALID_SIMPLE_VALUE_TYPE) in getVectorVT()
107 assert(VecTy.SimpleTy != MVT::INVALID_SIMPLE_VALUE_TYPE && in changeVectorElementTypeToInteger()
127 return V.SimpleTy != MVT::INVALID_SIMPLE_VALUE_TYPE; in isSimple()
408 return V.SimpleTy; in getRawBits()
417 if (L.V.SimpleTy == R.V.SimpleTy) in operator()
420 return L.V.SimpleTy < R.V.SimpleTy; in operator()
DTargetLowering.h709 const TargetRegisterClass *RC = RegClassForVT[VT.SimpleTy];
730 const TargetRegisterClass *RC = RepRegClassForVT[VT.SimpleTy]; in getRepRegClassFor()
737 return RepRegClassCostForVT[VT.SimpleTy]; in getRepRegClassCostFor()
752 (unsigned)VT.getSimpleVT().SimpleTy < array_lengthof(RegClassForVT)); in isTypeLegal()
753 return VT.isSimple() && RegClassForVT[VT.getSimpleVT().SimpleTy] != nullptr; in isTypeLegal()
768 return ValueTypeActions[VT.SimpleTy]; in getTypeAction()
772 ValueTypeActions[VT.SimpleTy] = Action; in setTypeAction()
907 return OpActions[(unsigned)VT.getSimpleVT().SimpleTy][Op]; in getOperationAction()
1067 unsigned ValI = (unsigned) ValVT.getSimpleVT().SimpleTy; in getLoadExtAction()
1068 unsigned MemI = (unsigned) MemVT.getSimpleVT().SimpleTy; in getLoadExtAction()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64CallingConvention.cpp91 if (LocVT.SimpleTy == MVT::i64 || (IsDarwinILP32 && LocVT.SimpleTy == MVT::i32)) in CC_AArch64_Custom_Block()
93 else if (LocVT.SimpleTy == MVT::f16) in CC_AArch64_Custom_Block()
95 else if (LocVT.SimpleTy == MVT::f32 || LocVT.is32BitVector()) in CC_AArch64_Custom_Block()
97 else if (LocVT.SimpleTy == MVT::f64 || LocVT.is64BitVector()) in CC_AArch64_Custom_Block()
99 else if (LocVT.SimpleTy == MVT::f128 || LocVT.is128BitVector()) in CC_AArch64_Custom_Block()
118 unsigned EltsPerReg = (IsDarwinILP32 && LocVT.SimpleTy == MVT::i32) ? 2 : 1; in CC_AArch64_Custom_Block()
DAArch64FastISel.cpp329 switch (VT.SimpleTy) { in getImplicitScaleFactor()
1165 switch (RetVT.SimpleTy) { in emitAddSub()
1184 RetVT.SimpleTy = std::max(RetVT.SimpleTy, MVT::i32); in emitAddSub()
1492 switch (VT.SimpleTy) { in emitCmp()
1682 MVT VT = std::max(MVT::i32, RetVT.SimpleTy); in emitLogicalOp()
1704 switch (RetVT.SimpleTy) { in emitLogicalOp_ri()
1755 switch (RetVT.SimpleTy) { in emitLogicalOp_rs()
1862 switch (VT.SimpleTy) { in emitLoad()
2093 switch (VT.SimpleTy) { in emitStoreRelease()
2152 switch (VT.SimpleTy) { in emitStore()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXISelDAGToDAG.cpp904 fromType = ScalarVT.SimpleTy == MVT::f16 ? NVPTX::PTXLdStInstCode::Untyped in tryLoad()
915 MVT::SimpleValueType TargetVT = LD->getSimpleValueType(0).SimpleTy; in tryLoad()
1042 FromType = ScalarVT.SimpleTy == MVT::f16 ? NVPTX::PTXLdStInstCode::Untyped in tryLoadVector()
1077 Opcode = pickOpcodeForVT(EltVT.getSimpleVT().SimpleTy, in tryLoadVector()
1085 pickOpcodeForVT(EltVT.getSimpleVT().SimpleTy, NVPTX::LDV_i8_v4_avar, in tryLoadVector()
1104 Opcode = pickOpcodeForVT(EltVT.getSimpleVT().SimpleTy, in tryLoadVector()
1112 pickOpcodeForVT(EltVT.getSimpleVT().SimpleTy, NVPTX::LDV_i8_v4_asi, in tryLoadVector()
1133 EltVT.getSimpleVT().SimpleTy, NVPTX::LDV_i8_v2_ari_64, in tryLoadVector()
1141 EltVT.getSimpleVT().SimpleTy, NVPTX::LDV_i8_v4_ari_64, in tryLoadVector()
1152 Opcode = pickOpcodeForVT(EltVT.getSimpleVT().SimpleTy, in tryLoadVector()
[all …]
DNVPTXTargetTransformInfo.cpp136 if (LT.second.SimpleTy == MVT::i64) in getArithmeticInstrCost()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86FastISel.cpp334 switch (VT.SimpleTy) { in X86FastEmitLoad()
496 switch (VT.getSimpleVT().SimpleTy) { in X86FastEmitStore()
668 switch (VT.getSimpleVT().SimpleTy) { in X86FastEmitStore()
1345 switch (VT.getSimpleVT().SimpleTy) { in X86ChooseCmpOpcode()
1368 switch (VT.getSimpleVT().SimpleTy) { in X86ChooseCmpImmediateOpcode()
1544 switch (SrcVT.SimpleTy) { in X86SelectZExt()
1715 switch (SourceVT.SimpleTy) { in X86SelectBranch()
1915 switch (VT.SimpleTy) { in X86SelectDivRem()
2259 switch (RetVT.SimpleTy) { in X86FastEmitSSESelect()
2286 switch (RetVT.SimpleTy) { in X86FastEmitPseudoSelect()
[all …]
DX86ISelDAGToDAG.cpp3057 switch (MemVT.getSimpleVT().SimpleTy) { in foldLoadStoreIntoMemOperand()
4019 switch (TestVT.SimpleTy) { in getVPTESTMOpc()
4049 switch (TestVT.SimpleTy) { in getVPTESTMOpc()
4066 switch (TestVT.SimpleTy) { in getVPTESTMOpc()
4096 switch (TestVT.SimpleTy) { in getVPTESTMOpc()
4126 switch (TestVT.SimpleTy) { in getVPTESTMOpc()
4143 switch (TestVT.SimpleTy) { in getVPTESTMOpc()
4281 switch (MaskVT.SimpleTy) { in tryVPTESTM()
4620 switch (NVT.SimpleTy) { in Select()
4697 switch (NVT.SimpleTy) { in Select()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/
DAVRISelDAGToDAG.cpp138 switch (VT.SimpleTy) { in selectIndexedLoad()
180 switch (VT.SimpleTy) { in selectIndexedProgMemLoad()
391 switch (VT.SimpleTy) { in select()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/MCTargetDesc/
DWebAssemblyMCTargetDesc.cpp134 switch (Ty.SimpleTy) { in toValType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DR600RegisterInfo.cpp84 switch(VT.SimpleTy) { in getCFGStructurizerRegClass()
DAMDGPUTargetTransformInfo.cpp363 MVT::SimpleValueType SLT = LT.second.getScalarType().SimpleTy; in getArithmeticInstrCost()
484 MVT::SimpleValueType SLT = LT.second.getScalarType().SimpleTy; in getIntrinsicInstrCost()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
DBPFISelLowering.cpp230 MVT::SimpleValueType SimpleTy = RegVT.getSimpleVT().SimpleTy; in LowerFormalArguments() local
231 switch (SimpleTy) { in LowerFormalArguments()
240 SimpleTy == MVT::i64 ? &BPF::GPRRegClass : &BPF::GPR32RegClass); in LowerFormalArguments()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/
DMSP430ISelDAGToDAG.cpp305 switch (VT.getSimpleVT().SimpleTy) { in isValidIndexedLoad()
333 switch (VT.SimpleTy) { in tryIndexedLoad()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMFastISel.cpp820 switch (VT.SimpleTy) { in ARMSimplifyAddress()
876 if (VT.SimpleTy == MVT::f32 || VT.SimpleTy == MVT::f64) in AddLoadStoreOperands()
922 switch (VT.SimpleTy) { in ARMEmitLoad()
1059 switch (VT.SimpleTy) { in ARMEmitStore()
1394 switch (SrcVT.SimpleTy) { in ARMEmitCmp()
1828 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT.SimpleTy)); in SelectBinaryFPOp()
1920 switch (ArgVT.SimpleTy) { in ProcessCallArgs()
3045 switch (ArgVT.getSimpleVT().SimpleTy) { in fastLowerArguments()
DARMCallingConv.cpp200 switch (LocVT.SimpleTy) { in CC_ARM_AAPCS_Custom_Aggregate()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DValueTypes.cpp116 switch (V.SimpleTy) { in getEVTString()
141 switch (V.SimpleTy) { in getTypeForEVT()
DTargetLoweringBase.cpp449 switch (VT.SimpleTy) { \ in getSYNC()
808 assert((unsigned)SVT.SimpleTy < array_lengthof(TransformToType)); in getTypeConversion()
809 MVT NVT = TransformToType[SVT.SimpleTy]; in getTypeConversion()
1116 const TargetRegisterClass *RC = RegClassForVT[VT.SimpleTy]; in findRepresentativeClass()
1360 return getPointerTy(DL).SimpleTy; in getSetCCResultType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsFastISel.cpp763 switch (VT.SimpleTy) { in emitLoad()
819 switch (VT.SimpleTy) { in emitStore()
1374 switch (ArgVT.getSimpleVT().SimpleTy) { in fastLowerArguments()
1835 switch (SrcVT.SimpleTy) { in emitIntSExt32r1()
1853 switch (SrcVT.SimpleTy) { in emitIntSExt32r2()
1879 switch (SrcVT.SimpleTy) { in emitIntZExt()

123