Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:AtomicTy

39     QualType AtomicTy;
52 AtomicTy = lvalue.getType();
53 ValueTy = AtomicTy->castAs<AtomicType>()->getValueType();
62 llvm::tie(AtomicSizeInBits, atomicAlignInBits) = C.getTypeInfo(AtomicTy);
77 QualType getAtomicType() const { return AtomicTy; }
338 QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
339 QualType MemTy = AtomicTy;
340 if (const AtomicType *AT = AtomicTy->getAs<AtomicType>())
342 CharUnits sizeChars = getContext().getTypeSizeInChars(AtomicTy);
344 CharUnits alignChars = getContext().getTypeAlignInChars(AtomicTy);
356 LValue lvalue = LValue::MakeAddr(Ptr, AtomicTy, alignChars, getContext());