HomeSort by relevance Sort by last modified time
    Searched refs:IsRead (Results 1 - 6 of 6) sorted by null

  /external/llvm/utils/TableGen/
CodeGenSchedule.h 50 bool IsRead;
59 : Index(0), TheDef(0), IsRead(false), IsAlias(false),
64 IsRead = Def->isSubClassOf("SchedRead");
77 : Index(Idx), Name(Name), TheDef(0), IsRead(Read), IsAlias(false),
299 const CodeGenSchedRW &getSchedRW(unsigned Idx, bool IsRead) const {
300 return IsRead ? getSchedRead(Idx) : getSchedWrite(Idx);
303 bool IsRead = Def->isSubClassOf("SchedRead");
304 unsigned Idx = getSchedRWIdx(Def, IsRead);
306 IsRead ? getSchedRead(Idx) : getSchedWrite(Idx));
312 unsigned getSchedRWIdx(Record *Def, bool IsRead, unsigned After = 0) const
    [all...]
CodeGenSchedule.cpp 285 assert(!getSchedRWIdx(*SWI, /*IsRead=*/false) && "duplicate SchedWrite");
290 assert(!getSchedRWIdx(*SRI, /*IsRead-*/true) && "duplicate SchedWrite");
299 /*IsRead=*/false);
334 std::string CodeGenSchedModels::genRWName(const IdxVec& Seq, bool IsRead) {
339 Name += getSchedRW(*I, IsRead).Name;
345 unsigned CodeGenSchedModels::getSchedRWIdx(Record *Def, bool IsRead,
347 const std::vector<CodeGenSchedRW> &RWVec = IsRead ? SchedReads : SchedWrites;
398 bool IsRead) const {
400 unsigned Idx = getSchedRWIdx(*RI, IsRead);
407 bool IsRead) const
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 237 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {}
271 inline void recordUseOfWeak(const ExprT *E, bool IsRead = true);
646 void FunctionScopeInfo::recordUseOfWeak(const ExprT *E, bool IsRead) {
649 Uses.push_back(WeakUseTy(E, IsRead));
Sema.h     [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h 319 bool IsWrite() const { return !IsRead(); }
320 bool IsRead() const { return x_ & kReadBit; }
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 415 bool IsRead = false;
456 IsRead = true;
476 IsRead = true;
483 IsRead = true;
495 return IsRead ? Attribute::ReadOnly : Attribute::ReadNone;
    [all...]

Completed in 187 milliseconds