Home
last modified time | relevance | path

Searched refs:IsRead (Results 1 – 7 of 7) sorted by relevance

/external/llvm/utils/TableGen/
DCodeGenSchedule.h50 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()
321 const CodeGenSchedRW &getSchedRW(unsigned Idx, bool IsRead) const { in getSchedRW() argument
322 return IsRead ? getSchedRead(Idx) : getSchedWrite(Idx); in getSchedRW()
325 bool IsRead = Def->isSubClassOf("SchedRead"); in getSchedRW() local
326 unsigned Idx = getSchedRWIdx(Def, IsRead); in getSchedRW()
328 IsRead ? getSchedRead(Idx) : getSchedWrite(Idx)); in getSchedRW()
334 unsigned getSchedRWIdx(Record *Def, bool IsRead, unsigned After = 0) const;
[all …]
DCodeGenSchedule.cpp332 std::string CodeGenSchedModels::genRWName(const IdxVec& Seq, bool IsRead) { in genRWName() argument
337 Name += getSchedRW(*I, IsRead).Name; in genRWName()
343 unsigned CodeGenSchedModels::getSchedRWIdx(Record *Def, bool IsRead, in getSchedRWIdx() argument
345 const std::vector<CodeGenSchedRW> &RWVec = IsRead ? SchedReads : SchedWrites; in getSchedRWIdx()
396 bool IsRead) const { in findRWs()
398 unsigned Idx = getSchedRWIdx(*RI, IsRead); in findRWs()
405 bool IsRead) const { in expandRWSequence()
406 const CodeGenSchedRW &SchedRW = getSchedRW(RWIdx, IsRead); in expandRWSequence()
416 expandRWSequence(*I, RWSeq, IsRead); in expandRWSequence()
424 unsigned RWIdx, IdxVec &RWSeq, bool IsRead, in expandRWSeqForProc() argument
[all …]
/external/clang/include/clang/Sema/
DScopeInfo.h265 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {} in WeakUseTy() argument
299 inline void recordUseOfWeak(const ExprT *E, bool IsRead = true);
833 void FunctionScopeInfo::recordUseOfWeak(const ExprT *E, bool IsRead) { in recordUseOfWeak() argument
836 Uses.push_back(WeakUseTy(E, IsRead)); in recordUseOfWeak()
DSema.h1094 void recordUseOfEvaluatedWeak(const ExprT *E, bool IsRead=true) {
1096 getCurFunction()->recordUseOfWeak(E, IsRead);
/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp425 bool IsRead = false; in determinePointerReadAttrs() local
476 IsRead = true; in determinePointerReadAttrs()
498 IsRead = true; in determinePointerReadAttrs()
506 IsRead = true; in determinePointerReadAttrs()
518 return IsRead ? Attribute::ReadOnly : Attribute::ReadNone; in determinePointerReadAttrs()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl.h249 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); } in IsWrite()
250 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; } in IsRead() function
Dtsan_rtl.cc644 old.IsRead() <= cur.IsRead()) in ContainsSameAccessSlow()