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

  /external/llvm/utils/TableGen/
CodeGenSchedule.h 50 bool IsRead;
59 : Index(0), TheDef(nullptr), IsRead(false), IsAlias(false),
64 IsRead = Def->isSubClassOf("SchedRead");
77 : Index(Idx), Name(Name), TheDef(nullptr), IsRead(Read), IsAlias(false),
320 const CodeGenSchedRW &getSchedRW(unsigned Idx, bool IsRead) const {
321 return IsRead ? getSchedRead(Idx) : getSchedWrite(Idx);
324 bool IsRead = Def->isSubClassOf("SchedRead");
325 unsigned Idx = getSchedRWIdx(Def, IsRead);
327 IsRead ? getSchedRead(Idx) : getSchedWrite(Idx));
333 unsigned getSchedRWIdx(Record *Def, bool IsRead, unsigned After = 0) const
    [all...]
CodeGenSchedule.cpp 274 assert(!getSchedRWIdx(*SWI, /*IsRead=*/false) && "duplicate SchedWrite");
279 assert(!getSchedRWIdx(*SRI, /*IsRead-*/true) && "duplicate SchedWrite");
288 /*IsRead=*/false);
323 std::string CodeGenSchedModels::genRWName(ArrayRef<unsigned> Seq, bool IsRead) {
328 Name += getSchedRW(*I, IsRead).Name;
334 unsigned CodeGenSchedModels::getSchedRWIdx(Record *Def, bool IsRead,
336 const std::vector<CodeGenSchedRW> &RWVec = IsRead ? SchedReads : SchedWrites;
387 bool IsRead) const {
389 unsigned Idx = getSchedRWIdx(*RI, IsRead);
396 bool IsRead) const
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 276 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {}
313 inline void recordUseOfWeak(const ExprT *E, bool IsRead = true);
841 void FunctionScopeInfo::recordUseOfWeak(const ExprT *E, bool IsRead) {
844 Uses.push_back(WeakUseTy(E, IsRead));
Sema.h     [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 415 bool IsRead = false;
462 IsRead = true;
504 IsRead = true;
512 IsRead = true;
524 return IsRead ? Attribute::ReadOnly : Attribute::ReadNone;
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 658 old.IsRead() <= cur.IsRead())
689 // set IsRead bit in addr_vect
tsan_rtl.h 250 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); }
251 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; }
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp     [all...]

Completed in 627 milliseconds