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

123

/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/
H A DSchedulerRegistry.h68 ScheduleDAGSDNodes *createBURRListDAGScheduler(SelectionDAGISel *IS,
73 ScheduleDAGSDNodes *createSourceListDAGScheduler(SelectionDAGISel *IS,
80 ScheduleDAGSDNodes *createHybridListDAGScheduler(SelectionDAGISel *IS,
87 ScheduleDAGSDNodes *createILPListDAGScheduler(SelectionDAGISel *IS,
92 ScheduleDAGSDNodes *createFastDAGScheduler(SelectionDAGISel *IS,
98 ScheduleDAGSDNodes *createVLIWDAGScheduler(SelectionDAGISel *IS,
102 ScheduleDAGSDNodes *createDefaultScheduler(SelectionDAGISel *IS,
107 ScheduleDAGSDNodes *createDAGLinearizer(SelectionDAGISel *IS,
H A DResourcePriorityQueue.h78 ResourcePriorityQueue(SelectionDAGISel *IS);
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DScoreboardHazardRecognizer.cpp51 const InstrStage *IS = ItinData->beginStage(idx); local
55 for (; IS != E; ++IS) {
56 unsigned StageDepth = CurCycle + IS->getCycles();
58 CurCycle += IS->getNextCycles();
134 for (const InstrStage *IS = ItinData->beginStage(idx),
135 *E = ItinData->endStage(idx); IS != E; ++IS) {
139 for (unsigned int i = 0; i < IS->getCycles(); ++i) {
151 unsigned freeUnits = IS
[all...]
H A DDFAPacketizer.cpp68 const llvm::InstrStage *IS = InstrItins->beginStage(InsnClass); local
69 unsigned FuncUnits = IS->getUnits();
80 const llvm::InstrStage *IS = InstrItins->beginStage(InsnClass); local
81 unsigned FuncUnits = IS->getUnits();
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/
H A DDWARFCompileUnit.h19 DWARFCompileUnit(const DWARFDebugAbbrev *DA, StringRef IS, StringRef AS, argument
22 : DWARFUnit(DA, IS, AS, RS, SS, SOS, AOS, M, LE) {}
H A DDWARFTypeUnit.h22 DWARFTypeUnit(const DWARFDebugAbbrev *DA, StringRef IS, StringRef AS, argument
25 : DWARFUnit(DA, IS, AS, RS, SS, SOS, AOS, M, LE) {}
/freebsd-10-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...]
H A Dwc-queries.sql18 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
170 SELECT id FROM wcroot WHERE local_abspath IS NULL
479 WHERE wc_id = ?1 AND local_relpath = ?2 AND moved_to IS NOT NULL
532 WHERE dav_cache IS NOT NULL AND wc_id = ?1 AND op_depth = 0
612 WHEN old.changelist IS NOT new.changelist
622 WHERE new.changelist IS NOT NULL;
735 AND properties IS NULL
736 AND conflict_data IS NULL
737 AND changelist IS NULL
738 AND text_mod IS NUL
[all...]
H A Dwc-metadata.sql17 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
510 WHEN NEW.checksum IS NOT NULL
518 WHEN OLD.checksum IS NOT NULL
526 WHEN NEW.checksum IS NOT OLD.checksum
527 /* AND (NEW.checksum IS NOT NULL OR OLD.checksum IS NOT NULL) */
693 WHERE tree_conflict_data IS NOT NULL
774 WHERE NOT ((prop_reject IS NULL) AND (conflict_old IS NULL)
775 AND (conflict_new IS NUL
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/MC/
H A DMCInstrItineraries.h169 for (const InstrStage *IS = beginStage(ItinClassIndx),
170 *E = endStage(ItinClassIndx); IS != E; ++IS) {
171 Latency = std::max(Latency, StartCycle + IS->getCycles());
172 StartCycle += IS->getNextCycles();
H A DMCSubtargetInfo.h56 const InstrStage *IS,
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp276 llvm::createVLIWDAGScheduler(SelectionDAGISel *IS, CodeGenOpt::Level) { argument
277 return new ScheduleDAGVLIW(*IS->MF, IS->AA, new ResourcePriorityQueue(IS));
H A DResourcePriorityQueue.cpp43 ResourcePriorityQueue::ResourcePriorityQueue(SelectionDAGISel *IS) : argument
45 InstrItins(IS->getTargetLowering()->getTargetMachine().getInstrItineraryData())
47 TII = IS->getTargetLowering()->getTargetMachine().getInstrInfo();
48 TRI = IS->getTargetLowering()->getTargetMachine().getRegisterInfo();
49 TLI = IS->getTargetLowering();
51 const TargetMachine &tm = (*IS->MF).getTarget();
64 RegLimit[(*I)->getID()] = TRI->getRegPressureLimit(*I, *IS->MF);
/freebsd-10-stable/contrib/llvm/utils/TableGen/
H A DCodeGenIntrinsics.h59 IntrinsicSignature IS; member in struct:llvm::CodeGenIntrinsic
H A DIntrinsicEmitter.cpp382 if (Int.IS.RetVTs.empty())
384 else if (Int.IS.RetVTs.size() == 1 &&
385 Int.IS.RetVTs[0] == MVT::isVoid)
388 switch (Int.IS.RetVTs.size()) {
397 for (unsigned i = 0, e = Int.IS.RetVTs.size(); i != e; ++i)
398 EncodeFixedType(Int.IS.RetTypeDefs[i], ArgCodes, TypeSig);
401 for (unsigned i = 0, e = Int.IS.ParamTypeDefs.size(); i != e; ++i)
402 EncodeFixedType(Int.IS.ParamTypeDefs[i], ArgCodes, TypeSig);
/freebsd-10-stable/contrib/llvm/lib/MC/
H A DMCSubtargetInfo.cpp49 const InstrStage *IS,
61 Stages = IS;
42 InitMCSubtargetInfo(StringRef TT, StringRef CPU, StringRef FS, const SubtargetFeatureKV *PF, const SubtargetFeatureKV *PD, const SubtargetInfoKV *ProcSched, const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, const InstrStage *IS, const unsigned *OC, const unsigned *FP, unsigned NF, unsigned NP) argument
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInst.cpp26 IS = II->beginStage(QII->get(this->getOpcode()).getSchedClass()); local
28 return (IS->getUnits());
/freebsd-10-stable/sys/boot/i386/kgzldr/
H A Dsio.s14 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS``AS IS'' AND
H A Dstart.s14 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS``AS IS'' AND
/freebsd-10-stable/sys/boot/pc98/boot0.5/
H A Dstart.s17 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
H A Dsupport.s17 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
/freebsd-10-stable/tools/tools/editing/
H A Dfreebsd.vim14 " THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp143 InvalidatedSymbols *IS,
152 IS, ITraits, Call);
160 InvalidatedSymbols *IS,
165 IS, ITraits, Call);
173 InvalidatedSymbols *IS,
181 if (!IS)
182 IS = &Invalidated;
193 *IS, *ITraits, &TopLevelInvalidated,
199 newState = Eng->notifyCheckersOfPointerEscape(newState, IS,
205 return Eng->processRegionChanges(newState, IS, TopLevelInvalidate
139 invalidateRegions(RegionList Regions, const Expr *E, unsigned Count, const LocationContext *LCtx, bool CausedByPointerEscape, InvalidatedSymbols *IS, const CallEvent *Call, RegionAndSymbolInvalidationTraits *ITraits) const argument
156 invalidateRegions(ValueList Values, const Expr *E, unsigned Count, const LocationContext *LCtx, bool CausedByPointerEscape, InvalidatedSymbols *IS, const CallEvent *Call, RegionAndSymbolInvalidationTraits *ITraits) const argument
169 invalidateRegionsImpl(ValueList Values, const Expr *E, unsigned Count, const LocationContext *LCtx, bool CausedByPointerEscape, InvalidatedSymbols *IS, RegionAndSymbolInvalidationTraits *ITraits, const CallEvent *Call) const argument
[all...]
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp335 if (const IntrinsicInst *IS = dyn_cast<IntrinsicInst>(V)) {
336 if (isMemorySpaceTransferIntrinsic(IS->getIntrinsicID())) {
337 V = IS->getArgOperand(0)->stripPointerCasts();
368 if (const IntrinsicInst *IS = dyn_cast<IntrinsicInst>(V)) {
369 if (isMemorySpaceTransferIntrinsic(IS->getIntrinsicID())) {
370 V = IS->getArgOperand(0)->stripPointerCasts();
/freebsd-10-stable/crypto/openssl/crypto/bn/
H A Dbn_prime.pl73 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND

Completed in 341 milliseconds

123