Home
last modified time | relevance | path

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

12

/freebsd-src/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp
H A DCodeGenSchedule.h
H A DSubtargetEmitter.cpp1094 IdxVec Reads = SC.Reads; in GenSchedClassTables()
1108 Reads.clear(); in GenSchedClassTables()
1110 Writes, Reads); in GenSchedClassTables()
1119 Writes, Reads); in GenSchedClassTables()
1266 for (unsigned UseIdx = 0, EndIdx = Reads.size(); UseIdx != EndIdx; in GenSchedClassTables()
1269 FindReadAdvance(SchedModels.getSchedRead(Reads[UseIdx]), ProcModel); in GenSchedClassTables()
1074 IdxVec Reads = SC.Reads; GenSchedClassTables() local
/freebsd-src/lib/libc/db/hash/
H A DREADME29 Reads each key/data pair from fname and deletes the
32 Reads the key/data pairs in the file hashtest and writes them
37 Reads key/data pairs from standard in and looks them up
40 Reads key/data pairs from standard in, looks them up
/freebsd-src/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOpts.td
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DCalcSpillWeights.cpp273 bool Reads, Writes; in weightCalcHelper()
274 std::tie(Reads, Writes) = MI->readsWritesVirtualRegister(LI.reg()); in weightCalcHelper()
275 Weight = LiveIntervals::getSpillWeight(Writes, Reads, &MBFI, *MI); in weightCalcHelper()
269 bool Reads, Writes; weightCalcHelper() local
H A DMLRegAllocEvictAdvisor.cpp819 bool Reads, Writes; in getLIFeatureComponents()
820 std::tie(Reads, Writes) = MI->readsWritesVirtualRegister(LI.reg()); in getLIFeatureComponents()
825 Ret.R += (Reads && !Writes) * Freq; in getLIFeatureComponents()
826 Ret.W += (!Reads && Writes) * Freq; in getLIFeatureComponents()
827 Ret.RW += (Reads && Writes) * Freq; in getLIFeatureComponents()
816 bool Reads, Writes; getLIFeatureComponents() local
H A DEarlyIfConversion.cpp374 SmallVector<MCRegister, 8> Reads; in findInsertionPoint() local
400 Reads.push_back(Reg.asMCReg()); in findInsertionPoint()
403 while (!Reads.empty()) in findInsertionPoint()
404 for (MCRegUnit Unit : TRI->regunits(Reads.pop_back_val())) in findInsertionPoint()
H A DMachineInstrBundle.cpp292 RI.Reads = true; in AnalyzeVirtRegInBundle()
H A DRegisterCoalescer.cpp1849 bool Reads, Writes; in updateRegDefsUses() local
1850 std::tie(Reads, Writes) = UseMI->readsWritesVirtualRegister(SrcReg, &Ops); in updateRegDefsUses()
1854 if (DstInt && !Reads && SubIdx && !UseMI->isDebugInstr()) in updateRegDefsUses()
1855 Reads = DstInt->liveAt(LIS->getInstructionIndex(*UseMI)); in updateRegDefsUses()
1865 MO.setIsUndef(!Reads); in updateRegDefsUses()
H A DInlineSpiller.cpp628 if (!RI.Reads) in reMaterializeFor()
1213 if (RI.Reads) in spillAroundUses()
H A DMachinePipeliner.cpp3000 bool Reads, Writes; in orderDependence()
3001 std::tie(Reads, Writes) = in orderDependence()
3003 if (MO.isDef() && Reads && stageScheduled(*I) <= StageInst1) { in orderDependence()
3007 } else if (MO.isDef() && Reads && stageScheduled(*I) > StageInst1) { in orderDependence()
2944 bool Reads, Writes; orderDependence() local
/freebsd-src/contrib/llvm-project/llvm/lib/MCA/
H A DInstrBuilder.cpp453 ID.Reads.resize(TotalUses); in populateReads()
463 ReadDescriptor &Read = ID.Reads[CurrentUse]; in populateReads()
475 ReadDescriptor &Read = ID.Reads[CurrentUse + I]; in populateReads()
496 ReadDescriptor &Read = ID.Reads[CurrentUse]; in verifyInstrDesc()
505 ID.Reads.resize(CurrentUse); in verifyInstrDesc()
727 // Initialize Reads first. in createInstruction()
730 for (const ReadDescriptor &RD : D.Reads) { in createInstruction()
/freebsd-src/stand/i386/loader/
H A Dloader.rc8 \ Reads and processes loader.conf variables
/freebsd-src/stand/forth/
H A Dloader.rc11 \ Reads and processes loader.conf variables
/freebsd-src/contrib/llvm-project/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()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DRegisterFile.h279 MutableArrayRef<ReadState> Reads);
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstrBundle.h221 bool Reads; member
/freebsd-src/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstrInfo.cpp604 bool Reads, Writes; in SafeInFPUDelaySlot() local
605 std::tie(Reads, Writes) = MIInSlot.readsWritesVirtualRegister(Op.getReg()); in SafeInFPUDelaySlot()
607 if (Reads || Writes) in SafeInFPUDelaySlot()
/freebsd-src/contrib/libcbor/doc/source/
H A Dusing.rst99 * Reads data from a file. Example usage:
/freebsd-src/crypto/openssl/doc/man7/
H A Dprovider-rand.pod204 Reads or set the number of generate requests before reseeding the
209 Reads or set the number of elapsed seconds before reseeding the
/freebsd-src/sys/contrib/device-tree/src/arm64/allwinner/
H A Dsun50i-h5.dtsi143 * block. Reads all return zero, and writes are
/freebsd-src/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h449 SmallVector<ReadDescriptor, 4> Reads; // Implicit reads are at the end. member
/freebsd-src/crypto/openssl/doc/man3/
H A DEVP_RAND.pod279 Reads or set the number of generate requests before reseeding the
284 Reads or set the number of elapsed seconds before reseeding the
H A DBIO_s_bio.pod63 writes on BIO B<b> are allowed (they will return an error). Reads on the other

12