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

  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
SemaConcept.h 101 if (Other.isAtomic()) {
125 assert(!isAtomic() && "getCompoundKind called on atomic constraint.");
129 bool isAtomic() const { return Constraint.is<AtomicConstraint *>(); }
132 assert(!isAtomic() && "getLHS called on atomic constraint.");
137 assert(!isAtomic() && "getRHS called on atomic constraint.");
142 assert(isAtomic() &&
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineMemOperand.h 267 bool isAtomic() const { return getOrdering() != AtomicOrdering::NotAtomic; }
SelectionDAGNodes.h 1310 bool isAtomic() const { return MMO->isAtomic(); }
1318 bool isSimple() const { return !isAtomic() && !isVolatile(); }
1400 MMO->isAtomic()) && "then why are we using an AtomicSDNode?");
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instruction.cpp 583 bool Instruction::isAtomic() const {
599 assert(isAtomic());
611 assert(isAtomic());
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIMemoryLegalizer.cpp 206 bool isAtomic() const {
1583 if (MOI.isAtomic()) {
1628 if (MOI.isAtomic()) {
1662 if (MOI.isAtomic()) {
1703 if (MOI.isAtomic()) {
SIInstrInfo.h 564 static bool isAtomic(const MachineInstr &MI) {
569 bool isAtomic(uint16_t Opcode) const {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 501 static bool isAtomic(Instruction *I) {
504 return LI->isAtomic() && LI->getSyncScopeID() != SyncScope::SingleThread;
506 return SI->isAtomic() && SI->getSyncScopeID() != SyncScope::SingleThread;
549 if (isAtomic(&Inst))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 561 bool IsAtomic = false;
565 bool IsAtomic)
567 IsAtomic(IsAtomic) {}
728 bool isAtomic() const {
731 return Inst->isAtomic();
744 return !Inst->isAtomic();
1115 if (MemInst.isLoad() && !InVal.IsAtomic && MemInst.isAtomic())
1429 MemInst.isAtomic()));
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclObjC.h 839 /// isAtomic - Return true if the property is atomic.
840 bool isAtomic() const {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjC.cpp 816 bool isAtomic, bool hasStrong) {
824 // sizeof (Type of Ivar), isAtomic, false);
835 args.add(RValue::get(CGF.Builder.getInt1(isAtomic)), Context.BoolTy);
891 bool isAtomic() const { return IsAtomic; }
902 unsigned IsAtomic : 1;
918 IsAtomic = prop->isAtomic();
944 } else if (CGM.getLangOpts().ObjCAutoRefCount && !IsAtomic) {
960 } else if (!IsAtomic) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 894 return isLoad() || isStore() || isAtomic() ||
901 if (!isLoad() && !isStore() && !isAtomic()) {
921 if (isLoad() + isStore() + isAtomic() > 1)
923 "IsLoad, IsStore, and IsAtomic are mutually exclusive");
962 if (isAtomic()) {
973 "IsAtomic cannot be used by itself");
977 "IsAtomicOrderingMonotonic requires IsAtomic");
980 "IsAtomicOrderingAcquire requires IsAtomic");
983 "IsAtomicOrderingRelease requires IsAtomic");
986 "IsAtomicOrderingAcquireRelease requires IsAtomic");
    [all...]

Completed in 30 milliseconds