Home
last modified time | relevance | path

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

123

/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp762 IdxVec &Writes, IdxVec &Reads) const { in findRWs()
767 findRWs(ReadDefs, Reads, true); in findRWs()
880 IdxVec Writes, Reads; in collectSchedClasses() local
882 findRWs(Inst->TheDef->getValueAsListOfDefs("SchedRW"), Writes, Reads); in collectSchedClasses()
885 unsigned SCIdx = addSchedClass(ItinDef, Writes, Reads, /*ProcIndices*/{0}); in collectSchedClasses()
932 for (unsigned int Read : SC.Reads) in collectSchedClasses()
945 IdxVec Reads; in collectSchedClasses() local
947 Writes, Reads); in collectSchedClasses()
951 for (unsigned RIdx : Reads) in collectSchedClasses()
1037 SC.Reads = OperReads; in addSchedClass()
[all …]
H A DCodeGenSchedule.h129 IdxVec Reads; member
148 return ItinClassDef == IC && ArrayRef(Writes) == W && ArrayRef(Reads) == R; in isKeyEqual()
557 void findRWs(const RecVec &RWDefs, IdxVec &Writes, IdxVec &Reads) const;
633 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()
/openbsd-src/gnu/llvm/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 "
/openbsd-src/lib/libc/db/hash/
H A DREADME30 Reads each key/data pair from fname and deletes the
33 Reads the key/data pairs in the file hashtest and writes them
38 Reads key/data pairs from standard in and looks them up
41 Reads key/data pairs from standard in, looks them up
/openbsd-src/gnu/llvm/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.cpp798 bool Reads, Writes; in getLIFeatureComponents() local
799 std::tie(Reads, Writes) = MI->readsWritesVirtualRegister(LI.reg()); in getLIFeatureComponents()
804 Ret.R += (Reads && !Writes) * Freq; in getLIFeatureComponents()
805 Ret.W += (!Reads && Writes) * Freq; in getLIFeatureComponents()
806 Ret.RW += (Reads && Writes) * Freq; in getLIFeatureComponents()
H A DEarlyIfConversion.cpp372 SmallVector<MCRegister, 8> Reads; in findInsertionPoint() local
399 Reads.push_back(Reg.asMCReg()); in findInsertionPoint()
402 while (!Reads.empty()) in findInsertionPoint()
403 for (MCRegUnitIterator Units(Reads.pop_back_val(), TRI); Units.isValid(); in findInsertionPoint()
H A DMachineInstrBundle.cpp298 RI.Reads = true; in AnalyzeVirtRegInBundle()
H A DRegisterCoalescer.cpp1783 bool Reads, Writes; in updateRegDefsUses() local
1784 std::tie(Reads, Writes) = UseMI->readsWritesVirtualRegister(SrcReg, &Ops); in updateRegDefsUses()
1788 if (DstInt && !Reads && SubIdx && !UseMI->isDebugInstr()) in updateRegDefsUses()
1789 Reads = DstInt->liveAt(LIS->getInstructionIndex(*UseMI)); in updateRegDefsUses()
1799 MO.setIsUndef(!Reads); in updateRegDefsUses()
H A DInlineSpiller.cpp588 if (!RI.Reads) in reMaterializeFor()
1145 if (RI.Reads) in spillAroundUses()
H A DMachinePipeliner.cpp2512 bool Reads, Writes; in orderDependence() local
2513 std::tie(Reads, Writes) = in orderDependence()
2515 if (MO.isDef() && Reads && stageScheduled(*I) <= StageInst1) { in orderDependence()
2519 } else if (MO.isDef() && Reads && stageScheduled(*I) > StageInst1) { in orderDependence()
/openbsd-src/gnu/llvm/llvm/lib/MCA/
H A DInstrBuilder.cpp444 ID.Reads.resize(TotalUses); in populateReads()
452 ReadDescriptor &Read = ID.Reads[CurrentUse]; in populateReads()
464 ReadDescriptor &Read = ID.Reads[CurrentUse + I]; in populateReads()
483 ReadDescriptor &Read = ID.Reads[CurrentUse]; in populateReads()
492 ID.Reads.resize(CurrentUse); in populateReads()
677 for (const ReadDescriptor &RD : D.Reads) { in createInstruction()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/include/llvm/MCA/HardwareUnits/
H A DRegisterFile.h279 MutableArrayRef<ReadState> Reads);
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachineInstrBundle.h221 bool Reads; member
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/usr.bin/texinfo/doc/
H A Duserdoc.texi400 Reads the name of a node and selects it. No completion is done while
423 Reads the name of a file and selects the entire file. The command
459 Reads a string in the echo area and searches for it.
585 Reads the name of a menu item in the echo area and selects its node.
601 Reads the name of a note cross reference in the echo area and selects
969 Reads the name of an Info command in the echo area and then displays a
975 Reads a key sequence in the echo area, and then displays the name and
979 Reads the name of a variable in the echo area and then displays a brief
984 Reads the name of an Info command in the echo area, and then displays
1066 Reads a height value in the echo area and sets the height of the
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/MCA/
H A DInstruction.h449 SmallVector<ReadDescriptor, 4> Reads; // Implicit reads are at the end. member
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DSIInstrFormats.td124 // Reads the mode register, usually for FP environment.
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Dcgen-dis.in172 /* Subroutine of print_insn. Reads an insn into the given buffers and updates
/openbsd-src/gnu/usr.bin/binutils/opcodes/
H A Dcgen-dis.in172 /* Subroutine of print_insn. Reads an insn into the given buffers and updates
/openbsd-src/gnu/llvm/llvm/docs/CommandGuide/
H A Dllvm-symbolizer.rst258 Reads from standard input, converts contained
/openbsd-src/gnu/llvm/clang/docs/
H A DConstantInterpreter.rst145 interpreter itself, not the frame. Reads and writes to these blocks are
/openbsd-src/gnu/usr.bin/texinfo/po/
H A Dhr.po469 "\\%-10[xref-item] Follow a cross reference. Reads name of reference.\n"
643 msgid " %-10s Follow a cross reference. Reads name of reference.\n"
958 "Compile infokey source file to infokey file. Reads INPUT-FILE (default\n"
2960 #~ " \\%-10[xref-item] Follow a cross reference. Reads name of reference.\n"
3073 #~ "Compile infokey source file to infokey file. Reads INPUT-FILE (default\n"

123