Searched refs:AtomicSizeInBits (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGAtomic.cpp34 uint64_t AtomicSizeInBits; member in class:__anon322::AtomicInfo
44 : CGF(CGF), AtomicSizeInBits(0), ValueSizeInBits(0),
63 AtomicSizeInBits = AtomicTI.Width;
66 assert(ValueSizeInBits <= AtomicSizeInBits);
80 AtomicSizeInBits = C.toBits(
91 CGF.Builder.getIntNTy(AtomicSizeInBits)->getPointerTo(),
95 BFI.StorageSize = AtomicSizeInBits;
100 AtomicTy = C.getIntTypeForBitwidth(AtomicSizeInBits, OrigBFI.IsSigned);
104 C.toCharUnitsFromBits(AtomicSizeInBits).getQuantity());
114 AtomicSizeInBits
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h630 virtual bool hasBuiltinAtomic(uint64_t AtomicSizeInBits, argument
632 return AtomicSizeInBits <= AlignmentInBits &&
633 AtomicSizeInBits <= getMaxAtomicInlineWidth() &&
634 (AtomicSizeInBits <= getCharWidth() ||
635 llvm::isPowerOf2_64(AtomicSizeInBits / getCharWidth()));

Completed in 65 milliseconds