Searched defs:isAtomic (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp238 static bool isAtomic(Instruction *I) { function
240 return LI->isAtomic() && LI->getSynchScope() == CrossThread;
242 return SI->isAtomic() && SI->getSynchScope() == CrossThread;
268 if (isAtomic(BI))
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringImpl.h228 bool isAtomic() const { return m_refCountAndFlags & s_refCountFlagIsAtomic; } function in class:WTF::StringImpl
/external/llvm/include/llvm/
H A DInstructions.h213 bool isAtomic() const { return getOrdering() != NotAtomic; } function in class:llvm::LoadInst
220 bool isSimple() const { return !isAtomic() && !isVolatile(); }
333 bool isAtomic() const { return getOrdering() != NotAtomic; } function in class:llvm::StoreInst
340 bool isSimple() const { return !isAtomic() && !isVolatile(); }
/external/clang/include/clang/AST/
H A DDeclObjC.h1829 /// isAtomic - Return true if the property is atomic.
1830 bool isAtomic() const { function in class:clang::ObjCPropertyDecl
/external/clang/lib/CodeGen/
H A DCGObjC.cpp487 bool isAtomic, bool hasStrong) {
495 // sizeof (Type of Ivar), isAtomic, false);
506 args.add(RValue::get(CGF.Builder.getInt1(isAtomic)), Context.BoolTy);
563 bool isAtomic() const { return IsAtomic; } function in class:__anon51::PropertyImplStrategy
590 IsAtomic = prop->isAtomic();
860 args.add(RValue::get(Builder.getInt1(strategy.isAtomic())),
885 emitStructGetterCall(*this, ivar, strategy.isAtomic(),
961 // The fourth argument is the 'isAtomic' flag.
1112 .GetOptimizedPropertySetFunction(strategy.isAtomic(),
1151 args.add(RValue::get(Builder.getInt1(strategy.isAtomic())),
486 emitStructGetterCall(CodeGenFunction &CGF, ObjCIvarDecl *ivar, bool isAtomic, bool hasStrong) argument
[all...]

Completed in 253 milliseconds