HomeSort by: relevance | last modified time | path
    Searched refs:IsRead (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/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),
522 const CodeGenSchedRW &getSchedRW(unsigned Idx, bool IsRead) const {
523 return IsRead ? getSchedRead(Idx) : getSchedWrite(Idx);
526 bool IsRead = Def->isSubClassOf("SchedRead");
527 unsigned Idx = getSchedRWIdx(Def, IsRead);
529 IsRead ? getSchedRead(Idx) : getSchedWrite(Idx));
535 unsigned getSchedRWIdx(const Record *Def, bool IsRead) const
    [all...]
CodeGenSchedule.cpp 661 assert(!getSchedRWIdx(SWDef, /*IsRead=*/false) && "duplicate SchedWrite");
666 assert(!getSchedRWIdx(SRDef, /*IsRead-*/true) && "duplicate SchedWrite");
674 /*IsRead=*/false);
709 std::string CodeGenSchedModels::genRWName(ArrayRef<unsigned> Seq, bool IsRead) {
714 Name += getSchedRW(I, IsRead).Name;
721 bool IsRead) const {
722 const std::vector<CodeGenSchedRW> &RWVec = IsRead ? SchedReads : SchedWrites;
766 bool IsRead) const {
768 unsigned Idx = getSchedRWIdx(RWDef, IsRead);
775 bool IsRead) const
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_shadow.h 167 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); }
168 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; }
tsan_rtl_access.cpp 271 old.IsRead() <= cur.IsRead())
303 // set IsRead bit in addr_vect
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
ScopeInfo.h 342 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {}
402 inline void recordUseOfWeak(const ExprT *E, bool IsRead = true);
1037 void FunctionScopeInfo::recordUseOfWeak(const ExprT *E, bool IsRead) {
1040 Uses.push_back(WeakUseTy(E, IsRead));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 466 bool IsRead = false;
513 IsRead = true;
555 IsRead = true;
568 IsRead = true;
580 return IsRead ? Attribute::ReadOnly : Attribute::ReadNone;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
CFLGraph.h 231 void addDerefEdge(Value *From, Value *To, bool IsRead) {
242 if (IsRead) {
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.cc 719 old.IsRead() <= cur.IsRead())
750 // set IsRead bit in addr_vect
tsan_rtl.h 265 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); }
266 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
LegalizerHelper.cpp 6759 bool IsRead = MI.getOpcode() == TargetOpcode::G_READ_REGISTER;
6760 int NameOpIdx = IsRead ? 1 : 0;
6761 int ValRegIndex = IsRead ? 0 : 1;
6772 if (IsRead)

Completed in 95 milliseconds