Home
last modified time | relevance | path

Searched refs:IS (Results 1 – 25 of 1536) sorted by relevance

12345678910>>...62

/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DScheduler.cpp86 if (IS->isMemOp()) { in issueInstructionImpl()
92 if (IS->isExecuting()) in issueInstructionImpl()
94 else if (IS->isExecuted()) in issueInstructionImpl()
130 if (!IS.isReady() && !IS.updatePending()) { in promoteToReadySet()
167 if (IS.isDispatched() && !IS.updateDispatched()) { in promoteToPendingSet()
225 if (!IS.isExecuted()) { in updateIssuedSet()
259 if (IS.isPending()) in analyzeDataDependencies()
305 if (IS.isMemOp()) in dispatch()
308 if (IS.isDispatched() || (IS.isMemOp() && LSU.isWaiting(IR))) { in dispatch()
314 if (IS.isPending() || (IS.isMemOp() && LSU.isPending(IR))) { in dispatch()
[all …]
H A DLSUnit.cpp73 assert((IS.getMayLoad() || IS.getMayStore()) && "Not a memory operation!"); in dispatch()
75 if (IS.getMayLoad()) in dispatch()
77 if (IS.getMayStore()) in dispatch()
80 if (IS.getMayStore()) { in dispatch()
118 if (IS.getMayLoad()) { in dispatch()
198 if (IS.getMayLoad() && isLQFull()) in isAvailable()
200 if (IS.getMayStore() && isSQFull()) in isAvailable()
216 bool IsALoad = IS.getMayLoad(); in onInstructionRetired()
217 bool IsAStore = IS.getMayStore(); in onInstructionRetired()
235 if (!IS.isMemOp()) in onInstructionExecuted()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DScoreboardHazardRecognizer.cpp44 const InstrStage *IS = ItinData->beginStage(idx); in ScoreboardHazardRecognizer() local
48 for (; IS != E; ++IS) { in ScoreboardHazardRecognizer()
49 unsigned StageDepth = CurCycle + IS->getCycles(); in ScoreboardHazardRecognizer()
51 CurCycle += IS->getNextCycles(); in ScoreboardHazardRecognizer()
129 *E = ItinData->endStage(idx); IS != E; ++IS) { in getHazardType()
145 InstrStage::FuncUnits freeUnits = IS->getUnits(); in getHazardType()
146 switch (IS->getReservationKind()) { in getHazardType()
165 cycle += IS->getNextCycles(); in getHazardType()
188 *E = ItinData->endStage(idx); IS != E; ++IS) { in EmitInstruction()
197 switch (IS->getReservationKind()) { in EmitInstruction()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DInOrderIssueStage.cpp160 assert(!IS.isEliminated()); in addRegisterReadWrite()
200 if (IS.isMemOp()) in execute()
225 IS.dispatch(RCUTokenID); in tryIssue()
235 IS.execute(SourceIndex); in tryIssue()
237 if (IS.isMemOp()) in tryIssue()
261 if (IS.isExecuted()) { in tryIssue()
262 PRF.onInstructionExecuted(&IS); in tryIssue()
289 IS.cycleEvent(); in updateIssuedInst()
290 if (!IS.isExecuted()) { in updateIssuedInst()
338 IS.retire(); in retireInstruction()
[all …]
H A DDispatchStage.cpp80 Instruction &IS = *IR.getInstruction(); in dispatch() local
81 const unsigned NumMicroOps = IS.getNumMicroOps(); in dispatch()
93 if (IS.getEndGroup()) in dispatch()
97 if (IS.isOptimizableMove()) in dispatch()
98 if (PRF.tryEliminateMoveOrSwap(IS.getDefs(), IS.getUses())) in dispatch()
99 IS.setEliminated(); in dispatch()
110 if (!IS.isEliminated()) { in dispatch()
111 for (ReadState &RS : IS.getUses()) in dispatch()
119 for (WriteState &WS : IS.getDefs()) in dispatch()
125 IS.dispatch(RCUTokenID); in dispatch()
H A DRetireStage.cpp50 Instruction &IS = *IR.getInstruction(); in execute() local
52 PRF.onInstructionExecuted(&IS); in execute()
53 unsigned TokenID = IS.getRCUTokenID(); in execute()
/freebsd/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/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeExeSymbol.cpp68 auto IS = Session.getPDBFile().getPDBInfoStream(); in getAge() local
69 if (IS) in getAge()
70 return IS->getAge(); in getAge()
71 consumeError(IS.takeError()); in getAge()
80 auto IS = Session.getPDBFile().getPDBInfoStream(); in getGuid() local
81 if (IS) in getGuid()
82 return IS->getGuid(); in getGuid()
83 consumeError(IS.takeError()); in getGuid()
H A DNativeFunctionSymbol.cpp63 static bool inlineSiteContainsAddress(InlineSiteSym &IS, in inlineSiteContainsAddress() argument
68 for (auto &Annot : IS.annotations()) { in inlineSiteContainsAddress()
122 InlineSiteSym IS = in findInlineFramesByVA() local
124 if (inlineSiteContainsAddress(IS, CodeOffset)) { in findInlineFramesByVA()
127 IS, getVirtualAddress(), Modi, Start.offset()); in findInlineFramesByVA()
132 End = Syms.at(IS.End); in findInlineFramesByVA()
137 Start = Syms.at(IS.End); in findInlineFramesByVA()
H A DPDBFileBuilder.cpp184 for (const auto &IS : InjectedSources) { in finalizeMsfLayout() local
186 CRC.update(arrayRefFromStringRef(IS.Content->getBuffer())); in finalizeMsfLayout()
191 Entry.FileSize = IS.Content->getBufferSize(); in finalizeMsfLayout()
192 Entry.FileNI = IS.NameIndex; in finalizeMsfLayout()
193 Entry.VFileNI = IS.VNameIndex; in finalizeMsfLayout()
210 for (const auto &IS : InjectedSources) { in finalizeMsfLayout() local
211 SN = allocateNamedStream(IS.StreamName, IS.Content->getBufferSize()); in finalizeMsfLayout()
262 for (const auto &IS : InjectedSources) { in commitInjectedSources() local
263 uint32_t SN = cantFail(getNamedStreamIndex(IS.StreamName)); in commitInjectedSources()
268 assert(SourceWriter.bytesRemaining() == IS.Content->getBufferSize()); in commitInjectedSources()
[all …]
H A DPDBFile.cpp458 auto IS = getPDBInfoStream(); in hasPDBStringTable() local
459 if (!IS) in hasPDBStringTable()
461 Expected<uint32_t> ExpectedNSI = IS->getNamedStreamIndex("/names"); in hasPDBStringTable()
471 auto IS = getPDBInfoStream(); in hasPDBInjectedSourceStream() local
472 if (!IS) in hasPDBInjectedSourceStream()
474 Expected<uint32_t> ExpectedNSI = IS->getNamedStreamIndex("/src/headerblock"); in hasPDBInjectedSourceStream()
497 auto IS = getPDBInfoStream(); in safelyCreateNamedStream() local
498 if (!IS) in safelyCreateNamedStream()
499 return IS.takeError(); in safelyCreateNamedStream()
501 Expected<uint32_t> ExpectedNSI = IS->getNamedStreamIndex(Name); in safelyCreateNamedStream()
/freebsd/sys/contrib/device-tree/Bindings/media/
H A Dexynos4-fimc-is.txt1 Exynos4x12 SoC series Imaging Subsystem (FIMC-IS)
3 The FIMC-IS is a subsystem for processing image signal from an image sensor.
4 The Exynos4x12 SoC series FIMC-IS V1.5 comprises of a dedicated ARM Cortex-A5
15 - interrupts : must contain two FIMC-IS interrupts, in order: ISP0, ISP1;
30 The following are the FIMC-IS peripheral device nodes and can be specified
47 Device tree nodes of the image sensors' controlled directly by the FIMC-IS
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCInstrItineraries.h158 for (const InstrStage *IS = beginStage(ItinClassIndx), in getStageLatency() local
159 *E = endStage(ItinClassIndx); IS != E; ++IS) { in getStageLatency()
160 Latency = std::max(Latency, StartCycle + IS->getCycles()); in getStageLatency()
161 StartCycle += IS->getNextCycles(); in getStageLatency()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DVarLenCodeEmitterGen.cpp333 static void emitInstBits(raw_ostream &IS, raw_ostream &SS, const APInt &Bits, in emitInstBits() argument
336 IS.indent(4) << "{/*NumBits*/0, /*Index*/0},"; in emitInstBits()
340 IS.indent(4) << "{/*NumBits*/" << Bits.getBitWidth() << ", " in emitInstBits()
352 raw_string_ostream IS(IndexArray), SS(StorageArray); in emitInstructionBaseValues() local
354 IS << " static const unsigned Index" << Modes[Mode] << "[][2] = {\n"; in emitInstructionBaseValues()
363 IS.indent(4) << "{/*NumBits*/0, /*Index*/0},\n"; in emitInstructionBaseValues()
374 IS.indent(4) << "{/*NumBits*/0, /*Index*/0},\t" in emitInstructionBaseValues()
400 emitInstBits(IS, SS, Value, NumFixedValueWords); in emitInstructionBaseValues()
401 IS << '\t' << "// " << R->getName() << "\n"; in emitInstructionBaseValues()
405 IS.indent(4) << "{/*NumBits*/0, /*Index*/0}\n };\n"; in emitInstructionBaseValues()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeStmtGen.cpp366 bool ByteCodeStmtGen<Emitter>::visitIfStmt(const IfStmt *IS) { in visitIfStmt() argument
369 if (IS->isNonNegatedConsteval()) in visitIfStmt()
370 return visitStmt(IS->getThen()); in visitIfStmt()
371 if (IS->isNegatedConsteval()) in visitIfStmt()
372 return IS->getElse() ? visitStmt(IS->getElse()) : true; in visitIfStmt()
374 if (auto *CondInit = IS->getInit()) in visitIfStmt()
378 if (const DeclStmt *CondDecl = IS->getConditionVariableDeclStmt()) in visitIfStmt()
382 if (!this->visitBool(IS->getCond())) in visitIfStmt()
385 if (const Stmt *Else = IS->getElse()) { in visitIfStmt()
390 if (!visitStmt(IS->getThen())) in visitIfStmt()
[all …]
/freebsd/contrib/opencsd/decoder/include/opencsd/etmv4/
H A Dtrc_pkt_elem_etmv4i.h154 void set64BitAddress(const uint64_t addr, const uint8_t IS);
155 void set32BitAddress(const uint32_t addr, const uint8_t IS);
156 void updateShortAddress(const uint32_t addr, const uint8_t IS, const uint8_t update_bits);
461 inline void EtmV4ITrcPacket::set64BitAddress(const uint64_t addr, const uint8_t IS) in set64BitAddress() argument
467 v_addr_ISA = IS; in set64BitAddress()
471 inline void EtmV4ITrcPacket::set32BitAddress(const uint32_t addr, const uint8_t IS) in set32BitAddress() argument
490 v_addr_ISA = IS; in set32BitAddress()
494 inline void EtmV4ITrcPacket::updateShortAddress(const uint32_t addr, const uint8_t IS, const uint8_… in updateShortAddress() argument
502 v_addr_ISA = IS; in updateShortAddress()
/freebsd/crypto/heimdal/doc/
H A Dcopyright.texi43 THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
110 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
149 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
194 THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
237 THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS ``AS IS'' AND
270 THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
304 THIS SOFTWARE IS PROVIDED BY NTT ``AS IS'' AND ANY EXPRESS OR
369 THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
408 THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
462 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
[all …]
/freebsd/crypto/openssh/
H A DLICENCE58 BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
61 PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
64 TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
103 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
135 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
200 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
248 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
272 * THE SOFTWARE IS PROVIDED "AS IS" AND TODD C. MILLER DISCLAIMS ALL
296 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
329 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
[all …]
/freebsd/contrib/dma/
H A DLICENSE26 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
59 THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
78 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
99 THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp268 ScheduleDAGSDNodes *llvm::createVLIWDAGScheduler(SelectionDAGISel *IS, in createVLIWDAGScheduler() argument
270 return new ScheduleDAGVLIW(*IS->MF, IS->AA, new ResourcePriorityQueue(IS)); in createVLIWDAGScheduler()
/freebsd/contrib/bc/
H A DLICENSE.md15 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
46 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
75 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
98 THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DJumpDiagnostics.cpp368 IfStmt *IS = cast<IfStmt>(S); in BuildScopeInformation() local
369 if (!(IS->isConstexpr() || IS->isConsteval() || in BuildScopeInformation()
370 IS->isObjCAvailabilityCheck())) in BuildScopeInformation()
374 if (IS->isConstexpr()) in BuildScopeInformation()
376 else if (IS->isConsteval()) in BuildScopeInformation()
379 if (VarDecl *Var = IS->getConditionVariable()) in BuildScopeInformation()
384 Scopes.push_back(GotoScope(ParentScope, Diag, 0, IS->getBeginLoc())); in BuildScopeInformation()
386 if (!IS->isConsteval()) in BuildScopeInformation()
387 BuildScopeInformation(IS->getCond(), NewParentScope); in BuildScopeInformation()
392 BuildScopeInformation(IS->getThen(), NewParentScope); in BuildScopeInformation()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp156 auto IS = File.getPDBInfoStream(); in dumpPDBStream() local
157 if (!IS) in dumpPDBStream()
158 return IS.takeError(); in dumpPDBStream()
160 auto &InfoS = IS.get(); in dumpPDBStream()
317 auto &IS = IpiS.get(); in dumpIpiStream() local
319 Obj.IpiStream->Version = IS.getTpiVersion(); in dumpIpiStream()
320 for (auto &Record : IS.types(nullptr)) { in dumpIpiStream()
/freebsd/contrib/libevent/
H A DLICENSE19 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
67 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
93 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
/freebsd/contrib/ntp/sntp/libevent/
H A DLICENSE19 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
67 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
93 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

12345678910>>...62