HomeSort by: relevance | last modified time | path
    Searched refs:AtomicSizeInBits (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGAtomic.cpp 34 uint64_t AtomicSizeInBits;
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 = C.getTypeSize(AtomicTy)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetInfo.h 708 virtual bool hasBuiltinAtomic(uint64_t AtomicSizeInBits,
710 return AtomicSizeInBits <= AlignmentInBits &&
711 AtomicSizeInBits <= getMaxAtomicInlineWidth() &&
712 (AtomicSizeInBits <= getCharWidth() ||
713 llvm::isPowerOf2_64(AtomicSizeInBits / getCharWidth()));

Completed in 19 milliseconds