Searched refs:LocSize (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMCallLowering.cpp343 auto LocSize = VA.getLocVT().getSizeInBits(); variable
346 assert(LocSize <= 64 && "Unsupported location size");
349 if (ValSize == LocSize) {
352 assert(ValSize < LocSize && "Extensions not supported");
358 MRI.createGenericVirtualRegister(LLT::scalar(LocSize));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CallLowering.cpp133 // case ValVT == LocVT == MVT::f32. If LocSize and ValSize are not equal
138 unsigned LocSize = VA.getLocVT().getSizeInBits(); variable
139 if (PhysRegSize > ValSize && LocSize == ValSize) {
267 // case ValVT == LocVT == MVT::f32. If LocSize and ValSize are not equal
272 unsigned LocSize = VA.getLocVT().getSizeInBits(); variable
273 if (PhysRegSize > ValSize && LocSize == ValSize) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp241 const LocationSize &LocSize,
252 if (LocSize.isPrecise())
253 DerefBytes = std::max(DerefBytes, LocSize.getValue());
240 getMinimalExtentFrom(const Value &V, const LocationSize &LocSize, const DataLayout &DL, bool NullIsValidLoc) argument

Completed in 115 milliseconds