| /netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| H A D | CodeGenSchedule.h | 50 bool IsRead; member 59 : Index(0), TheDef(nullptr), IsRead(false), IsAlias(false), in CodeGenSchedRW() 64 IsRead = Def->isSubClassOf("SchedRead"); in CodeGenSchedRW() 77 : Index(Idx), Name(Name), TheDef(nullptr), IsRead(Read), IsAlias(false), in CodeGenSchedRW() 522 const CodeGenSchedRW &getSchedRW(unsigned Idx, bool IsRead) const { in getSchedRW() argument 523 return IsRead ? getSchedRead(Idx) : getSchedWrite(Idx); in getSchedRW() 526 bool IsRead = Def->isSubClassOf("SchedRead"); in getSchedRW() local 527 unsigned Idx = getSchedRWIdx(Def, IsRead); in getSchedRW() 529 IsRead ? getSchedRead(Idx) : getSchedWrite(Idx)); in getSchedRW() 535 unsigned getSchedRWIdx(const Record *Def, bool IsRead) const; [all …]
|
| H A D | CodeGenSchedule.cpp | 709 std::string CodeGenSchedModels::genRWName(ArrayRef<unsigned> Seq, bool IsRead) { in genRWName() argument 714 Name += getSchedRW(I, IsRead).Name; in genRWName() 721 bool IsRead) const { in getSchedRWIdx() 722 const std::vector<CodeGenSchedRW> &RWVec = IsRead ? SchedReads : SchedWrites; in getSchedRWIdx() 766 bool IsRead) const { in findRWs() 768 unsigned Idx = getSchedRWIdx(RWDef, IsRead); in findRWs() 775 bool IsRead) const { in expandRWSequence() 776 const CodeGenSchedRW &SchedRW = getSchedRW(RWIdx, IsRead); in expandRWSequence() 785 expandRWSequence(I, RWSeq, IsRead); in expandRWSequence() 793 unsigned RWIdx, IdxVec &RWSeq, bool IsRead, in expandRWSeqForProc() argument [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| H A D | ScopeInfo.h | 342 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {} in WeakUseTy() argument 402 inline void recordUseOfWeak(const ExprT *E, bool IsRead = true); 1037 void FunctionScopeInfo::recordUseOfWeak(const ExprT *E, bool IsRead) { in recordUseOfWeak() argument 1040 Uses.push_back(WeakUseTy(E, IsRead)); in recordUseOfWeak()
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| H A D | tsan_shadow.h | 167 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); } in IsWrite() 168 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; } in IsRead() function
|
| H A D | tsan_rtl_access.cpp | 271 old.IsRead() <= cur.IsRead()) in ContainsSameAccessSlow()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| H A D | FunctionAttrs.cpp | 466 bool IsRead = false; in determinePointerReadAttrs() local 513 IsRead = true; in determinePointerReadAttrs() 555 IsRead = true; in determinePointerReadAttrs() 568 IsRead = true; in determinePointerReadAttrs() 580 return IsRead ? Attribute::ReadOnly : Attribute::ReadNone; in determinePointerReadAttrs()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | CFLGraph.h | 231 void addDerefEdge(Value *From, Value *To, bool IsRead) { in addDerefEdge() argument 242 if (IsRead) { in addDerefEdge()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| H A D | tsan_rtl.h | 261 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); } in IsWrite() 262 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; } in IsRead() function
|
| H A D | tsan_rtl.cc | 715 old.IsRead() <= cur.IsRead()) in ContainsSameAccessSlow()
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| H A D | tsan_rtl.h | 265 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); } in IsWrite() 266 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; } in IsRead() function
|
| H A D | tsan_rtl.cc | 719 old.IsRead() <= cur.IsRead()) in ContainsSameAccessSlow()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerHelper.cpp | 6759 bool IsRead = MI.getOpcode() == TargetOpcode::G_READ_REGISTER; in lowerReadWriteRegister() local 6760 int NameOpIdx = IsRead ? 1 : 0; in lowerReadWriteRegister() 6761 int ValRegIndex = IsRead ? 0 : 1; in lowerReadWriteRegister() 6772 if (IsRead) in lowerReadWriteRegister()
|