reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/GlobalISel/CombinerHelper.cpp
  831   if (Ty == LLT()) {
  835     Ty = LLT::scalar(64);
  836     while (DstAlign && DstAlign < Ty.getSizeInBytes() &&
  837            !TLI.allowsMisalignedMemoryAccesses(Ty, DstAS, DstAlign))
  838       Ty = LLT::scalar(Ty.getSizeInBytes());
  838       Ty = LLT::scalar(Ty.getSizeInBytes());
  839     assert(Ty.getSizeInBits() > 0 && "Could not find valid type");
  845     unsigned TySize = Ty.getSizeInBytes();
  848       LLT NewTy = Ty;
  861       MVT VT = getMVTForLLT(Ty);
  868         Ty = NewTy;
  876     MemOps.push_back(Ty);