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

1 2

  /external/llvm/include/llvm/CodeGen/
MachineValueType.h 179 SimpleValueType SimpleTy;
181 LLVM_CONSTEXPR MVT() : SimpleTy(INVALID_SIMPLE_VALUE_TYPE) {}
182 LLVM_CONSTEXPR MVT(SimpleValueType SVT) : SimpleTy(SVT) { }
184 bool operator>(const MVT& S) const { return SimpleTy > S.SimpleTy; }
185 bool operator<(const MVT& S) const { return SimpleTy < S.SimpleTy; }
186 bool operator==(const MVT& S) const { return SimpleTy == S.SimpleTy; }
187 bool operator!=(const MVT& S) const { return SimpleTy != S.SimpleTy;
    [all...]
ValueTypes.h 45 if (V.SimpleTy != VT.V.SimpleTy)
47 if (V.SimpleTy < 0)
63 if (M.SimpleTy >= 0)
72 if (M.SimpleTy >= 0)
87 assert(VecTy.SimpleTy >= 0 &&
108 return V.SimpleTy >= 0;
343 return V.SimpleTy;
352 if (L.V.SimpleTy == R.V.SimpleTy)
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
SIRegisterInfo.cpp 55 switch(VT.SimpleTy) {
R600RegisterInfo.cpp 110 switch(VT.SimpleTy) {
AMDILISelLowering.cpp 252 if (VT.getScalarType().getSimpleVT().SimpleTy == MVT::f32
253 || VT.getScalarType().getSimpleVT().SimpleTy == MVT::f64) {
263 if (VT.getScalarType().getSimpleVT().SimpleTy == MVT::f32
264 || VT.getScalarType().getSimpleVT().SimpleTy == MVT::f64) {
  /external/llvm/lib/Target/AArch64/
AArch64CallingConvention.h 90 if (LocVT.SimpleTy == MVT::i64)
92 else if (LocVT.SimpleTy == MVT::f16)
94 else if (LocVT.SimpleTy == MVT::f32 || LocVT.is32BitVector())
96 else if (LocVT.SimpleTy == MVT::f64 || LocVT.is64BitVector())
98 else if (LocVT.SimpleTy == MVT::f128 || LocVT.is128BitVector())
AArch64FastISel.cpp 287 switch (VT.SimpleTy) {
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 381 const TargetRegisterClass *RC = RegClassForVT[VT.SimpleTy];
394 const TargetRegisterClass *RC = RepRegClassForVT[VT.SimpleTy];
401 return RepRegClassCostForVT[VT.SimpleTy];
409 (unsigned)VT.getSimpleVT().SimpleTy < array_lengthof(RegClassForVT));
410 return VT.isSimple() && RegClassForVT[VT.getSimpleVT().SimpleTy] != nullptr;
425 return ValueTypeActions[VT.SimpleTy];
429 ValueTypeActions[VT.SimpleTy] = Action;
553 return OpActions[(unsigned)VT.getSimpleVT().SimpleTy][Op];
593 unsigned ValI = (unsigned) ValVT.getSimpleVT().SimpleTy;
594 unsigned MemI = (unsigned) MemVT.getSimpleVT().SimpleTy;
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyAsmPrinter.cpp 153 Param.addOperand(MCOperand::createImm(VT.SimpleTy));
165 Result.addOperand(MCOperand::createImm(ResultVTs.front().SimpleTy));
184 Local.addOperand(MCOperand::createImm(getRegType(VReg).SimpleTy));
191 Local.addOperand(MCOperand::createImm(getRegType(PReg).SimpleTy));
  /external/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.cpp 724 MVT::SimpleValueType TargetVT = LD->getSimpleValueType(0).SimpleTy;
969 switch (EltVT.getSimpleVT().SimpleTy) {
    [all...]
NVPTXTargetTransformInfo.cpp 113 if (LT.second.SimpleTy == MVT::i64)
  /external/llvm/lib/Target/AMDGPU/
R600RegisterInfo.cpp 69 switch(VT.SimpleTy) {
  /external/llvm/lib/Target/WebAssembly/InstPrinter/
WebAssemblyInstPrinter.cpp 117 switch (Ty.SimpleTy) {
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 353 switch (VT.getSimpleVT().SimpleTy) {
443 switch (VT.getSimpleVT().SimpleTy) {
534 switch (VT.getSimpleVT().SimpleTy) {
    [all...]
X86ISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/IR/
ValueTypes.cpp 116 switch (V.SimpleTy) {
200 switch (V.SimpleTy) {
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 307 switch (VT.getSimpleVT().SimpleTy) {
335 switch (VT.SimpleTy) {
  /external/llvm/lib/Target/ARM/
ARMCallingConv.h 207 switch (LocVT.SimpleTy) {
ARMFastISel.cpp     [all...]
ARMISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp 659 switch (VT.SimpleTy) { \
    [all...]
  /external/llvm/lib/Target/BPF/
BPFISelLowering.cpp 212 switch (RegVT.getSimpleVT().SimpleTy) {
215 << RegVT.getSimpleVT().SimpleTy << '\n';
  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp 710 switch (VT.SimpleTy) {
771 switch (VT.SimpleTy) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 268 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 472 switch (VT.SimpleTy) {
615 switch (VT.SimpleTy) {
832 switch (SrcVT.SimpleTy) {
    [all...]

Completed in 5541 milliseconds

1 2