| /freebsd-13.1/contrib/llvm-project/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() 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; 572 unsigned findOrInsertRW(ArrayRef<unsigned> Seq, bool IsRead); 588 std::string genRWName(ArrayRef<unsigned> Seq, bool IsRead); [all …]
|
| H A D | CodeGenSchedule.cpp | 714 Name += getSchedRW(I, IsRead).Name; in genRWName() 768 unsigned Idx = getSchedRWIdx(RWDef, IsRead); in findRWs() 785 expandRWSequence(I, RWSeq, IsRead); in expandRWSequence() 793 unsigned RWIdx, IdxVec &RWSeq, bool IsRead, in expandRWSeqForProc() argument 854 CodeGenSchedRW SchedRW(RWIdx, IsRead, Seq, genRWName(Seq, IsRead)); in findOrInsertRW() 1302 bool IsRead; member 1546 if (IsRead) in pushVariant() 1560 if (IsRead) in pushVariant() 1590 pushVariant(IV, IsRead); in substituteVariantOperand() 1592 if (IsRead) in substituteVariantOperand() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | MemoryOpRemark.cpp | 350 void MemoryOpRemark::visitPtr(Value *Ptr, bool IsRead, DiagnosticInfoIROptimization &R) { in visitPtr() argument 367 R << (IsRead ? "\n Read Variables: " : "\n Written Variables: "); in visitPtr() 374 R << NV(IsRead ? "RVarName" : "WVarName", *VI.Name); in visitPtr() 376 R << NV(IsRead ? "RVarName" : "WVarName", "<unknown>"); in visitPtr() 378 R << " (" << NV(IsRead ? "RVarSize" : "WVarSize", *VI.Size) << " bytes)"; in visitPtr()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_rtl.h | 254 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); } in IsWrite() 255 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; } in IsRead() function
|
| H A D | tsan_rtl.cpp | 785 old.IsRead() <= cur.IsRead()) in ContainsSameAccessSlow()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerHelper.cpp | 7167 bool IsRead = MI.getOpcode() == TargetOpcode::G_READ_REGISTER; in lowerReadWriteRegister() local 7168 int NameOpIdx = IsRead ? 1 : 0; in lowerReadWriteRegister() 7169 int ValRegIndex = IsRead ? 0 : 1; in lowerReadWriteRegister() 7180 if (IsRead) in lowerReadWriteRegister()
|