Home
last modified time | relevance | path

Searched refs:Stop (Results 1 – 25 of 51) sorted by relevance

123

/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DUse.cpp57 Use *Use::initTags(Use *const Start, Use *Stop) { in initTags() argument
60 if (Start == Stop--) in initTags()
67 new (Stop) Use(tags[Done++]); in initTags()
71 while (Start != Stop) { in initTags()
72 --Stop; in initTags()
74 new (Stop) Use(stopTag); in initTags()
78 new (Stop) Use(PrevPtrTag(Count & 1)); in initTags()
87 void Use::zap(Use *Start, const Use *Stop, bool del) { in zap() argument
88 while (Start != Stop) in zap()
89 (--Stop)->~Use(); in zap()
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/
H A DInterferenceCache.cpp124 SlotIndex Start, Stop; in update() local
125 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum); in update()
160 if (StartI >= Stop) in update()
173 if (StartI >= Stop) in update()
182 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; in update()
191 PrevPos = Stop; in update()
202 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum); in update()
208 if (!I.valid() || I.start() >= Stop) in update()
210 I.advanceTo(Stop); in update()
211 bool Backup = !I.valid() || I.start() >= Stop; in update()
[all …]
H A DSplitKit.cpp183 SlotIndex Start, Stop; in calcLiveBlockInfo() local
184 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB); in calcLiveBlockInfo()
189 if (UseI == UseE || *UseI >= Stop) { in calcLiveBlockInfo()
194 if (LVI->end < Stop) in calcLiveBlockInfo()
201 while (UseI != UseE && *UseI < Stop); in calcLiveBlockInfo()
203 assert(BI.LastInstr < Stop); in calcLiveBlockInfo()
217 while (LVI->end < Stop) { in calcLiveBlockInfo()
219 if (++LVI == LVE || LVI->start >= Stop) { in calcLiveBlockInfo()
255 if (LVI->end == Stop && ++LVI == LVE) in calcLiveBlockInfo()
259 if (LVI->start < Stop) in calcLiveBlockInfo()
[all …]
H A DLiveDebugVariables.cpp517 SlotIndex Stop = LIS.getMBBEndIdx(MBB); in extendDef() local
529 if (Segment->end < Stop) in extendDef()
530 Stop = Segment->end, ToEnd = false; in extendDef()
544 if (I.valid() && I.start() < Stop) in extendDef()
545 Stop = I.start(), ToEnd = false; in extendDef()
548 Kills->push_back(Stop); in extendDef()
550 if (Start >= Stop) in extendDef()
553 I.insert(Start, Stop, LocNo); in extendDef()
974 SlotIndex Stop = I.stop(); in emitDebugValues() local
976 DEBUG(dbgs() << "\t[" << Start << ';' << Stop << "):" << LocNo); in emitDebugValues()
[all …]
H A DLiveIntervalAnalysis.cpp363 SlotIndex Stop = Indexes.getMBBEndIdx(Pred); in extendSegmentsToUses() local
365 if (VNInfo *PVNI = OldRange.getVNInfoBefore(Stop)) in extendSegmentsToUses()
366 WorkList.push_back(std::make_pair(Stop, PVNI)); in extendSegmentsToUses()
379 SlotIndex Stop = Indexes.getMBBEndIdx(Pred); in extendSegmentsToUses() local
380 assert(OldRange.getVNInfoBefore(Stop) == VNI && in extendSegmentsToUses()
382 WorkList.push_back(std::make_pair(Stop, VNI)); in extendSegmentsToUses()
768 SlotIndex Stop = LI.endIndex(); in intervalIsInOneMBB() local
769 if (Stop.isBlock()) in intervalIsInOneMBB()
775 MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop); in intervalIsInOneMBB()
/minix3/common/dist/zlib/contrib/ada/
H A Dmtest.adb24 Stop : Boolean := False; variable
26 pragma Atomic (Stop);
138 exit Main when Stop;
144 Stop := True;
155 Stop := True;
/minix3/external/bsd/llvm/dist/clang/lib/Analysis/
H A DFormatStringParsing.h53 bool Stop; variable
56 : Start(nullptr), Stop(stop) {} in Start()
59 : FS(fs), Start(start), Stop(false) {} in SpecifierResult()
62 bool shouldStop() const { return Stop; } in shouldStop()
/minix3/external/bsd/llvm/dist/llvm/test/Transforms/GlobalOpt/
H A D2009-03-05-dbg.ll4 @Stop = internal global i32 0 ; <i32*> [#uses=3]
14 store i32 0, i32* @Stop, align 4, !dbg !9
20 store i32 1, i32* @Stop, align 4, !dbg !11
36 %0 = load i32* @Stop, align 4, !dbg !13 ; <i32> [#uses=1]
58 !0 = !{!"0x34\00Stop\00Stop\00\002\001\001", !1, !1, !2, i32* @Stop} ; [ DW_TAG_variable ]
/minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DUse.h126 static Use *initTags(Use *Start, Use *Stop);
130 static void zap(Use *Start, const Use *Stop, bool del = false);
/minix3/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Dtypo-correction.cpp538 static void Stop(); // expected-note {{'Thread::Stop' declared here}}
544 void Stop(int); // expected-note {{'Stop' declared here}}
552 m->Stop(); // expected-error-re {{too few arguments to function call, expected 1, have 0{{$}}}} in test()
553 Stop(); // expected-error {{use of undeclared identifier 'Stop'; did you mean 'Thread::Stop'?}} in test()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/ADT/
H A DIntervalMap.h746 void insert(unsigned i, unsigned Size, NodeRef Node, KeyT Stop) { in insert() argument
751 stop(i) = Stop; in insert()
1525 void setNodeStop(unsigned Level, KeyT Stop);
1526 bool insertNode(unsigned Level, IntervalMapImpl::NodeRef Node, KeyT Stop);
1532 bool canCoalesceRight(KeyT Stop, ValT x);
1640 iterator::canCoalesceRight(KeyT Stop, ValT Value) { in canCoalesceRight() argument
1648 return Node.value(i) == Value && Traits::adjacent(Stop, Node.start(i)); in canCoalesceRight()
1653 return Node.value(i) == Value && Traits::adjacent(Stop, Node.start(i)); in canCoalesceRight()
1656 return Node.value(0) == Value && Traits::adjacent(Stop, Node.start(0)); in canCoalesceRight()
1664 iterator::setNodeStop(unsigned Level, KeyT Stop) { in setNodeStop() argument
[all …]
/minix3/external/bsd/tcpdump/dist/tests/
H A Dpimv2_register-v.out8 Register Stop, cksum 0x1628 (correct) group=239.1.2.3 source=192.168.20.10
/minix3/external/bsd/llvm/dist/llvm/test/Analysis/CFLAliasAnalysis/
H A Dva.ll21 ; Stop processing of arguments.
/minix3/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/
H A DPasses.h148 void setStartStopPasses(AnalysisID Start, AnalysisID Stop) {
150 StopAfter = Stop;
/minix3/external/bsd/llvm/dist/llvm/test/Feature/
H A Dvarargs_new.ll34 ; Stop processing of arguments.
/minix3/external/bsd/file/dist/magic/magdir/
H A Dgeo83 1 string Start/Stop\ parameter\ header: Caris ASCII project summary
/minix3/crypto/external/bsd/openssl/dist/bugs/
H A DSSLv345 complete the connection. Hitting "Stop" and reload fixes this and
/minix3/lib/libc/db/
H A Dchangelog73 Stop copying non-overflow key/data pairs.
/minix3/external/bsd/llvm/dist/llvm/test/CodeGen/X86/
H A Dmultiple-loop-post-inc.ll14 ; CHECK: # Stop
151 call void asm sideeffect "# Stop.", "~{dirflag},~{fpsr},~{flags}"() nounwind
/minix3/external/bsd/libevent/dist/
H A DChangeLog68 o ssl: Stop looping in "consider_reading" if reading is suspended. (f719b8a Joachim Bauch)
165 o Stop crashing in evdns when nameserver probes give a weird error (bec5068)
546 o Stop using Libevent-1 headers in regress_http (1f507d7)
553 o Stop accessing http request struct directly from in the unit tests. (0b137f4)
647 o Stop using global arrays to implement the EVUTIL_ctype functions (1fdec20)
664 o Stop IOCP when freeing the event_base (d844242 Christopher Davis)
708 o Stop asserting when asked for a (unsupported) TCP dns port. Just return NULL. (7e87a59)
794 o Stop distributing and installing manpages: they were too inaccurate (7731ec8)
969 o Stop passing EVTHREAD_READ and EVTHREAD_WRITE to non-rw locks. (76cd2b7)
1119 …o Stop using enums as arguments or return values when what we mean is a bitfield of enum values. …
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp658 int Stop = (LittleEndian ? NumBytes : -1); in addConstantFPValue() local
661 for (; Start != Stop; Start += Incr) in addConstantFPValue()
/minix3/games/fortune/datfiles/
H A Dnetbsd415 NetBSD: Stop, Drop, and Load
/minix3/external/bsd/llvm/dist/llvm/docs/
H A DFAQ.rst195 Stop.
H A DCMake.rst241 Stop and fail build, if a compiler warning is triggered. Defaults to OFF.
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSROA.cpp241 void erase(iterator Start, iterator Stop) { Slices.erase(Start, Stop); } in erase() argument

123