HomeSort by relevance Sort by last modified time
    Searched refs:isAtomic (Results 1 - 25 of 33) sorted by null

1 2

  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 131 if (LI->isAtomic())
134 if (SI->isAtomic())
EarlyCSE.cpp 302 bool IsAtomic;
304 : Data(nullptr), Generation(0), MatchingId(-1), IsAtomic(false) {}
306 bool IsAtomic)
308 IsAtomic(IsAtomic) {}
414 bool isAtomic() const {
419 return Inst->isAtomic();
432 return !Inst->isAtomic();
616 InVal.IsAtomic >= MemInst.isAtomic()) {
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetTransformInfo.cpp 71 if (I->isAtomic())
  /external/llvm/include/llvm/IR/
Instruction.h 367 /// isAtomic - Return true if this instruction has an
370 bool isAtomic() const;
Instructions.h 281 bool isSimple() const { return !isAtomic() && !isVolatile(); }
402 bool isSimple() const { return !isAtomic() && !isVolatile(); }
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 318 static bool isAtomic(Instruction *I) {
320 return LI->isAtomic() && LI->getSynchScope() == CrossThread;
322 return SI->isAtomic() && SI->getSynchScope() == CrossThread;
351 if (isAtomic(&Inst))
MemorySanitizer.cpp 740 Value *Shadow = SI.isAtomic() ? getCleanShadow(Val) : getShadow(Val);
750 if (SI.isAtomic()) SI.setOrdering(addReleaseOrdering(SI.getOrdering()));
752 if (MS.TrackOrigins && !SI.isAtomic())
    [all...]
  /external/llvm/lib/IR/
Instruction.cpp 456 bool Instruction::isAtomic() const {
AsmWriter.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 570 bool isAtomic, bool hasStrong) {
578 // sizeof (Type of Ivar), isAtomic, false);
589 args.add(RValue::get(CGF.Builder.getInt1(isAtomic)), Context.BoolTy);
646 bool isAtomic() const { return IsAtomic; }
657 unsigned IsAtomic : 1;
673 IsAtomic = prop->isAtomic();
698 } else if (CGM.getLangOpts().ObjCAutoRefCount && !IsAtomic) {
714 } else if (!IsAtomic) {
    [all...]
CGCall.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.h 241 bool ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
LLParser.cpp     [all...]
  /external/llvm/lib/CodeGen/
AtomicExpandPass.cpp 89 if (I->isAtomic())
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
TransliteratorTest.java     [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
TransliteratorTest.java     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 291 if (FirstLI->isAtomic())
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp 846 if (cast<LoadInst>(I)->isAtomic())
871 if (cast<StoreInst>(I)->isAtomic())
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 579 if (cast<LoadInst>(I)->isAtomic())
724 if (cast<StoreInst>(I)->isAtomic())
    [all...]
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 554 if (LI->isAtomic() && LI->getOrdering() > Unordered) {
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h     [all...]

Completed in 1037 milliseconds

1 2