Home
last modified time | relevance | path

Searched refs:Reads (Results 1 – 25 of 37) sorted by relevance

12

/llvm-project-15.0.7/llvm/test/MC/Mips/
H A Dmips-reginfo-fp32.s25 # abs.s - Reads and writes from/to $f0.
27 # round.w.d - Reads $f4 and $f5 and writes to $f2.
29 # ceil.w.s - Reads $f8 and writes to $f10.
31 # cvt.s.d - Reads from $f12 and $f13 and writes to $f14
33 # abs.d - Reads from $f30 and $f31 and writes to $f30 and $f31.
H A Dmips-reginfo-fp64.s47 # abs.s - Reads and writes from/to $f0.
49 # round.w.d - Reads $f4 and writes to $f2.
51 # ceil.w.s - Reads $f8 and writes to $f10.
53 # cvt.s.d - Reads from $f12 and writes to $f14.
55 # abs.d - Reads from $f30 and writes to $f30.
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp769 findRWs(ReadDefs, Reads, true); in findRWs()
882 IdxVec Writes, Reads; in collectSchedClasses() local
947 IdxVec Reads; in collectSchedClasses() local
949 Writes, Reads); in collectSchedClasses()
1039 SC.Reads = OperReads; in addSchedClass()
1118 SC.Reads = SchedClasses[OldSCIdx].Reads; in createInstRWClass()
1264 IdxVec Writes, Reads; in inferFromItinClass() local
1286 IdxVec Writes, Reads; in inferFromInstRWs() local
1900 IdxVec Writes, Reads; in collectProcResources() local
2053 IdxVec Writes, Reads; in collectItinProcResources() local
[all …]
H A DCodeGenSchedule.h129 IdxVec Reads; member
149 makeArrayRef(Reads) == R; in isKeyEqual()
558 void findRWs(const RecVec &RWDefs, IdxVec &Writes, IdxVec &Reads) const;
634 void collectRWResources(ArrayRef<unsigned> Writes, ArrayRef<unsigned> Reads,
H A DSubtargetEmitter.cpp1060 IdxVec Reads = SC.Reads; in GenSchedClassTables() local
1074 Reads.clear(); in GenSchedClassTables()
1076 Writes, Reads); in GenSchedClassTables()
1085 Writes, Reads); in GenSchedClassTables()
1185 for (unsigned UseIdx = 0, EndIdx = Reads.size(); in GenSchedClassTables()
1188 FindReadAdvance(SchedModels.getSchedRead(Reads[UseIdx]), ProcModel); in GenSchedClassTables()
/llvm-project-15.0.7/llvm/tools/llvm-objcopy/
H A DObjcopyOpts.td62 "Reads a list of symbol pairs from <filename> and runs as if "
110 "Reads a list of symbols from <filename> and removes them "
139 "Reads a list of symbols from <filename> and marks them local.">,
151 "Reads a list of symbols from <filename> and marks them global.">,
165 "Reads a list of symbols from <filename> and runs as if "
176 "Reads a list of symbols from <filename> and marks them weak.">,
187 "Reads a list of symbols from <filename> and removes them.">,
192 "Reads a list of symbols from <filename> and runs as if "
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DCalcSpillWeights.cpp249 bool Reads, Writes; in weightCalcHelper() local
250 std::tie(Reads, Writes) = MI->readsWritesVirtualRegister(LI.reg()); in weightCalcHelper()
251 Weight = LiveIntervals::getSpillWeight(Writes, Reads, &MBFI, *MI); in weightCalcHelper()
H A DMLRegallocEvictAdvisor.cpp720 bool Reads, Writes; in getLIFeatureComponents() local
721 std::tie(Reads, Writes) = MI->readsWritesVirtualRegister(LI.reg()); in getLIFeatureComponents()
726 Ret.R += (Reads && !Writes) * Freq; in getLIFeatureComponents()
727 Ret.W += (!Reads && Writes) * Freq; in getLIFeatureComponents()
728 Ret.RW += (Reads && Writes) * Freq; in getLIFeatureComponents()
H A DEarlyIfConversion.cpp366 SmallVector<MCRegister, 8> Reads; in findInsertionPoint() local
393 Reads.push_back(Reg.asMCReg()); in findInsertionPoint()
396 while (!Reads.empty()) in findInsertionPoint()
397 for (MCRegUnitIterator Units(Reads.pop_back_val(), TRI); Units.isValid(); in findInsertionPoint()
H A DMachineInstrBundle.cpp298 RI.Reads = true; in AnalyzeVirtRegInBundle()
/llvm-project-15.0.7/llvm/lib/MCA/
H A DInstrBuilder.cpp473 ID.Reads.resize(TotalUses); in populateReads()
481 ReadDescriptor &Read = ID.Reads[CurrentUse]; in populateReads()
493 ReadDescriptor &Read = ID.Reads[CurrentUse + I]; in populateReads()
512 ReadDescriptor &Read = ID.Reads[CurrentUse]; in populateReads()
521 ID.Reads.resize(CurrentUse); in populateReads()
693 for (const ReadDescriptor &RD : D.Reads) { in createInstruction()
/llvm-project-15.0.7/polly/lib/Transform/
H A DMaximalStaticExpansion.cpp139 SmallPtrSetImpl<MemoryAccess *> &Reads, Scop &S) { in isExpandable() argument
143 Reads.insert(MA); in isExpandable()
265 Reads.insert(MA); in isExpandable()
H A DDeLICM.cpp623 auto Reads = makeEmptyUnionSet(); in computeValueUses() local
627 Reads = Reads.unite(getDomainFor(MA)); in computeValueUses()
630 auto ReadSchedule = getScatterFor(Reads); in computeValueUses()
H A DZoneAlgo.cpp1144 isl::union_map Reads = AllReads.range_product(Schedule).reverse(); in computeKnownFromLoad() local
1147 isl::union_map ReadsElt = EltZoneElt.range_product(Reads); in computeKnownFromLoad()
/llvm-project-15.0.7/polly/test/ScopInfo/
H A Dread-only-scalar-used-in-phi-2.ll11 ; Verify that we do not model the read from %sum. Reads that only happen in
/llvm-project-15.0.7/llvm/lib/MCA/HardwareUnits/
H A DRegisterFile.cpp427 MutableArrayRef<ReadState> Reads) { in tryEliminateMoveOrSwap() argument
428 if (Writes.size() != Reads.size()) in tryEliminateMoveOrSwap()
450 const ReadState &RS = Reads[I]; in tryEliminateMoveOrSwap()
457 ReadState &RS = Reads[I]; in tryEliminateMoveOrSwap()
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Dsve-ldstnt1.mir10 ; Reads from %object at offset 7 * readsize
16 ; Reads from %object at offset -8 * readsize
23 ; Reads from %object at offset 8 * readsize
29 ; Reads from %object at offset -9 * readsize
H A Dsve-ldnf1.mir10 ; Reads from %object at offset 63 * readsize
16 ; Reads from %object at offset 63 * readsize
23 ; Reads from %object at offset 64 * readsize
29 ; Reads from %object at offset -1 * readsize
H A Dsve-ld1r.mir10 ; Reads from %object at offset 63 * readsize
16 ; Reads from %object at offset 64 * readsize
22 ; Reads from %object at offset -1 * readsize
/llvm-project-15.0.7/llvm/include/llvm/MCA/HardwareUnits/
H A DRegisterFile.h279 MutableArrayRef<ReadState> Reads);
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachineInstrBundle.h221 bool Reads; member
/llvm-project-15.0.7/llvm/lib/Target/Mips/
H A DMipsInstrInfo.cpp603 bool Reads, Writes; in SafeInFPUDelaySlot() local
604 std::tie(Reads, Writes) = MIInSlot.readsWritesVirtualRegister(Op.getReg()); in SafeInFPUDelaySlot()
606 if (Reads || Writes) in SafeInFPUDelaySlot()
/llvm-project-15.0.7/polly/include/polly/Support/
H A DISLTools.h403 isl::union_map Writes, isl::union_map Reads,
/llvm-project-15.0.7/libc/benchmarks/
H A Dlibc-benchmark-analysis.py31 """Reads JSON files produced by the benchmarking framework and renders them.
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVGroupOps.td153 Reads one or more components of Result data for each invocation in the

12