Searched defs:IsRead (Results 1 - 7 of 7) sorted by relevance

/external/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp280 assert(!getSchedRWIdx(*SWI, /*IsRead=*/false) && "duplicate SchedWrite");
285 assert(!getSchedRWIdx(*SRI, /*IsRead-*/true) && "duplicate SchedWrite");
294 /*IsRead=*/false);
329 std::string CodeGenSchedModels::genRWName(ArrayRef<unsigned> Seq, bool IsRead) { argument
334 Name += getSchedRW(*I, IsRead).Name;
340 unsigned CodeGenSchedModels::getSchedRWIdx(Record *Def, bool IsRead, argument
342 const std::vector<CodeGenSchedRW> &RWVec = IsRead ? SchedReads : SchedWrites;
393 bool IsRead) const {
395 unsigned Idx = getSchedRWIdx(*RI, IsRead);
402 bool IsRead) cons
[all...]
H A DCodeGenSchedule.h50 bool IsRead; member in struct:llvm::CodeGenSchedRW
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),
330 const CodeGenSchedRW &getSchedRW(unsigned Idx, bool IsRead) const {
331 return IsRead ? getSchedRead(Idx) : getSchedWrite(Idx);
334 bool IsRead = Def->isSubClassOf("SchedRead");
335 unsigned Idx = getSchedRWIdx(Def, IsRead);
337 IsRead ? getSchedRead(Idx) : getSchedWrite(Idx));
343 unsigned getSchedRWIdx(Record *Def, bool IsRead, unsigne
[all...]
/external/clang/include/clang/Sema/
H A DScopeInfo.h284 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {} argument
321 inline void recordUseOfWeak(const ExprT *E, bool IsRead = true);
870 void FunctionScopeInfo::recordUseOfWeak(const ExprT *E, bool IsRead) { argument
873 Uses.push_back(WeakUseTy(E, IsRead));
H A DSema.h1204 void recordUseOfEvaluatedWeak(const ExprT *E, bool IsRead=true) { argument
1206 getCurFunction()->recordUseOfWeak(E, IsRead);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h250 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); }
251 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; } function in class:__tsan::Shadow
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp3838 static int getMClassRegisterMask(StringRef Reg, StringRef Flags, bool IsRead, argument
3866 if (IsRead) {
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp3861 bool IsRead,
3886 if (IsRead) {
4241 bool IsRead = BuiltinID == ARM::BI__builtin_arm_rsr || local
4262 return EmitSpecialRegisterBuiltin(*this, E, RegisterType, ValueType, IsRead);
4997 bool IsRead = BuiltinID == AArch64::BI__builtin_arm_rsr || local
5017 return EmitSpecialRegisterBuiltin(*this, E, RegisterType, ValueType, IsRead);
3857 EmitSpecialRegisterBuiltin(CodeGenFunction &CGF, const CallExpr *E, llvm::Type *RegisterType, llvm::Type *ValueType, bool IsRead, StringRef SysReg = �) argument

Completed in 169 milliseconds