HomeSort by: relevance | last modified time | path
    Searched defs:Volatile (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
AutoInitRemark.cpp 23 static void volatileOrAtomicWithExtraArgs(bool Volatile, bool Atomic,
25 if (Volatile)
26 R << " Volatile: " << NV("StoreVolatile", true) << ".";
32 if (!Volatile || !Atomic)
34 if (!Volatile)
35 R << " Volatile: " << NV("StoreVolatile", false) << ".";
47 bool Volatile = SI.isVolatile();
55 volatileOrAtomicWithExtraArgs(Volatile, Atomic, R);
99 // No such thing as a memory intrinsic that is both atomic and volatile.
100 bool Volatile = !Atomic && CIVolatile && CIVolatile->getZExtValue()
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 302 Volatile = 0x0002,
360 Volatile = 0x00000200,
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h 141 /// * C99: const, volatile, and restrict
150 Volatile = 0x4,
151 CVRMask = Const | Volatile | Restrict
267 bool hasVolatile() const { return Mask & Volatile; }
268 bool hasOnlyVolatile() const { return Mask == Volatile; }
269 void removeVolatile() { Mask &= ~Volatile; }
270 void addVolatile() { Mask |= Volatile; }
659 /// example we only need one for 'int', 'const int', 'volatile int',
660 /// 'const volatile int', etc).
758 /// "volatile" qualifier set, without looking through typedefs that may hav
    [all...]

Completed in 91 milliseconds