Searched refs:IS (Results 1 - 25 of 117) sorted by relevance

12345

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSchedulerRegistry.h63 ScheduleDAGSDNodes *createBURRListDAGScheduler(SelectionDAGISel *IS,
68 ScheduleDAGSDNodes *createSourceListDAGScheduler(SelectionDAGISel *IS,
75 ScheduleDAGSDNodes *createHybridListDAGScheduler(SelectionDAGISel *IS,
82 ScheduleDAGSDNodes *createILPListDAGScheduler(SelectionDAGISel *IS,
87 ScheduleDAGSDNodes *createFastDAGScheduler(SelectionDAGISel *IS,
93 ScheduleDAGSDNodes *createVLIWDAGScheduler(SelectionDAGISel *IS,
97 ScheduleDAGSDNodes *createDefaultScheduler(SelectionDAGISel *IS,
102 ScheduleDAGSDNodes *createDAGLinearizer(SelectionDAGISel *IS,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DScoreboardHazardRecognizer.cpp45 const InstrStage *IS = ItinData->beginStage(idx); local
49 for (; IS != E; ++IS) {
50 unsigned StageDepth = CurCycle + IS->getCycles();
52 CurCycle += IS->getNextCycles();
128 for (const InstrStage *IS = ItinData->beginStage(idx),
129 *E = ItinData->endStage(idx); IS != E; ++IS) {
133 for (unsigned int i = 0; i < IS->getCycles(); ++i) {
145 unsigned freeUnits = IS
[all...]
H A DTargetSubtargetInfo.cpp22 const InstrStage *IS, const unsigned *OC, const unsigned *FP)
23 : MCSubtargetInfo(TT, CPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) {
17 TargetSubtargetInfo( const Triple &TT, StringRef CPU, StringRef FS, ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD, const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, const InstrStage *IS, const unsigned *OC, const unsigned *FP) argument
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DScheduler.cpp73 Instruction *IS = IR.getInstruction(); local
74 const InstrDesc &D = IS->getDesc();
82 IS->execute(IR.getSourceIndex());
84 IS->computeCriticalRegDep();
86 if (IS->isMemOp()) {
88 const MemoryGroup &Group = LSU.getGroup(IS->getLSUTokenID());
89 IS->setCriticalMemDep(Group.getCriticalPredecessor());
92 if (IS->isExecuting())
94 else if (IS->isExecuted())
129 Instruction &IS local
166 Instruction &IS = *IR.getInstruction(); local
198 Instruction &IS = *IR.getInstruction(); local
224 Instruction &IS = *IR.getInstruction(); local
252 const Instruction &IS = *IR.getInstruction(); local
301 Instruction &IS = *IR.getInstruction(); local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeExeSymbol.cpp68 auto IS = Session.getPDBFile().getPDBInfoStream(); local
69 if (IS)
70 return IS->getAge();
71 consumeError(IS.takeError());
80 auto IS = Session.getPDBFile().getPDBInfoStream(); local
81 if (IS)
82 return IS->getGuid();
83 consumeError(IS.takeError());
H A DPDBFileBuilder.cpp175 for (const auto &IS : InjectedSources) {
177 CRC.update(arrayRefFromStringRef(IS.Content->getBuffer()));
182 Entry.FileSize = IS.Content->getBufferSize();
183 Entry.FileNI = IS.NameIndex;
184 Entry.VFileNI = IS.VNameIndex;
190 StringRef VName = getStringTableBuilder().getStringForId(IS.VNameIndex);
201 for (const auto &IS : InjectedSources) {
202 SN = allocateNamedStream(IS.StreamName, IS.Content->getBufferSize());
252 for (const auto &IS
[all...]
H A DPDBFile.cpp458 auto IS = getPDBInfoStream(); local
459 if (!IS)
461 Expected<uint32_t> ExpectedNSI = IS->getNamedStreamIndex("/names");
471 auto IS = getPDBInfoStream();
472 if (!IS)
474 Expected<uint32_t> ExpectedNSI = IS->getNamedStreamIndex("/src/headerblock");
497 auto IS = getPDBInfoStream(); local
498 if (!IS)
499 return IS.takeError();
501 Expected<uint32_t> ExpectedNSI = IS
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DDispatchStage.cpp80 Instruction &IS = *IR.getInstruction(); local
81 const InstrDesc &Desc = IS.getDesc();
82 const unsigned NumMicroOps = IS.getNumMicroOps();
98 if (IS.isOptimizableMove()) {
99 assert(IS.getDefs().size() == 1 && "Expected a single input!");
100 assert(IS.getUses().size() == 1 && "Expected a single output!");
101 if (PRF.tryEliminateMove(IS.getDefs()[0], IS.getUses()[0]))
102 IS.setEliminated();
114 if (!IS
[all...]
/freebsd-12-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc-checks.sql17 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
38 WHEN NOT ((new.local_relpath = '' AND new.parent_relpath IS NULL)
62 AND NOT (new.file_external IS NOT NULL AND new.op_depth = 0)
81 AND (parent_relpath IS NULL
89 AND (parent_relpath IS NULL
114 WHERE (a.properties IS NOT NULL
115 AND (n.presence IS NULL
117 OR (a.changelist IS NOT NULL AND (n.kind IS NOT NULL AND n.kind != MAP_FILE))
118 OR (a.conflict_data IS NUL
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCInstrItineraries.h154 for (const InstrStage *IS = beginStage(ItinClassIndx),
155 *E = endStage(ItinClassIndx); IS != E; ++IS) {
156 Latency = std::max(Latency, StartCycle + IS->getCycles());
157 StartCycle += IS->getNextCycles();
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeStmtGen.cpp189 bool ByteCodeStmtGen<Emitter>::visitIfStmt(const IfStmt *IS) { argument
191 if (auto *CondInit = IS->getInit())
192 if (!visitStmt(IS->getInit()))
195 if (const DeclStmt *CondDecl = IS->getConditionVariableDeclStmt())
199 if (!this->visitBool(IS->getCond()))
202 if (const Stmt *Else = IS->getElse()) {
207 if (!visitStmt(IS->getThen()))
219 if (!visitStmt(IS->getThen()))
H A DByteCodeStmtGen.h64 bool visitIfStmt(const IfStmt *IS);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerMerge.h63 bool Parse(std::istream &IS, bool ParseCoverage);
65 void ParseOrExit(std::istream &IS, bool ParseCoverage);
/freebsd-12-stable/contrib/opencsd/decoder/source/etmv4/
H A Dtrc_pkt_proc_etmv4i_impl.h23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND
178 int extract64BitLongAddr(const std::vector<uint8_t> &buffer, const int st_idx, const uint8_t IS, uint64_t &value);
179 int extract32BitLongAddr(const std::vector<uint8_t> &buffer, const int st_idx, const uint8_t IS, uint32_t &value);
180 int extractShortAddr(const std::vector<uint8_t> &buffer, const int st_idx, const uint8_t IS, uint32_t &value, int &bits);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp274 llvm::createVLIWDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level) { argument
275 return new ScheduleDAGVLIW(*IS->MF, IS->AA, new ResourcePriorityQueue(IS));
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DRetireControlUnit.h91 unsigned dispatch(const InstRef &IS);
/freebsd-12-stable/contrib/lua/src/
H A Dluac.c70 #define IS(s) (strcmp(argv[i],s)==0) macro
81 else if (IS("--")) /* end of options; skip it */
87 else if (IS("-")) /* end of options; use stdin */
89 else if (IS("-l")) /* list */
91 else if (IS("-o")) /* output file */
96 if (IS("-")) output=NULL;
98 else if (IS("-p")) /* parse only */
100 else if (IS("-s")) /* strip debug information */
102 else if (IS("-v")) /* show version */
174 const char* filename=IS("
[all...]
/freebsd-12-stable/contrib/opencsd/decoder/include/opencsd/etmv4/
H A Dtrc_pkt_elem_etmv4i.h24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND
147 void set64BitAddress(const uint64_t addr, const uint8_t IS);
148 void set32BitAddress(const uint32_t addr, const uint8_t IS);
149 void updateShortAddress(const uint32_t addr, const uint8_t IS, const uint8_t update_bits);
432 inline void EtmV4ITrcPacket::set64BitAddress(const uint64_t addr, const uint8_t IS) argument
438 v_addr_ISA = IS;
442 inline void EtmV4ITrcPacket::set32BitAddress(const uint32_t addr, const uint8_t IS) argument
459 v_addr_ISA = IS;
463 inline void EtmV4ITrcPacket::updateShortAddress(const uint32_t addr, const uint8_t IS, cons argument
[all...]
/freebsd-12-stable/contrib/bearssl/mk/
H A DDefaults.mk14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
H A DNMake.mk14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
H A DSingleUnix.mk14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
/freebsd-12-stable/sys/compat/linux/
H A Dlinux_errno.inc16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
/freebsd-12-stable/sys/arm64/linux/
H A Dlinux_locore.asm15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
/freebsd-12-stable/share/dtrace/
H A Dhotopen15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
H A Dretval15 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND

Completed in 247 milliseconds

12345