HomeSort by: relevance | last modified time | path
    Searched defs:Stop (Results 1 - 16 of 16) sorted by relevancy

  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
memory_manager_test.cc 9 void Stop(Result* result) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
FormatStringParsing.h 75 bool Stop;
77 SpecifierResult(bool stop = false)
78 : Start(nullptr), Stop(stop) {}
81 : FS(fs), Start(start), Stop(false) {}
84 bool shouldStop() const { return Stop; }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
InterferenceCache.cpp 132 SlotIndex Start, Stop;
133 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum);
169 if (StartI >= Stop)
182 if (StartI >= Stop)
191 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop;
200 PrevPos = Stop;
211 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum);
217 if (!I.valid() || I.start() >= Stop)
219 I.advanceTo(Stop);
220 bool Backup = !I.valid() || I.start() >= Stop;
    [all...]
SplitKit.cpp 232 SlotIndex Start, Stop;
233 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
238 if (UseI == UseE || *UseI >= Stop) {
243 if (LVI->end < Stop)
250 while (UseI != UseE && *UseI < Stop);
252 assert(BI.LastInstr < Stop);
266 while (LVI->end < Stop) {
268 if (++LVI == LVE || LVI->start >= Stop) {
298 // LVI is now at LVE or LVI->end >= Stop.
303 // Live segment ends exactly at Stop. Move to the next segment
    [all...]
LiveIntervals.cpp 419 SlotIndex Stop = Indexes->getMBBEndIdx(Pred);
421 if (VNInfo *PVNI = OldRange.getVNInfoBefore(Stop))
422 WorkList.push_back(std::make_pair(Stop, PVNI));
435 SlotIndex Stop = Indexes->getMBBEndIdx(Pred);
436 if (VNInfo *OldVNI = OldRange.getVNInfoBefore(Stop)) {
439 WorkList.push_back(std::make_pair(Stop, VNI));
442 // There was no old VNI. Verify that Stop is jointly dominated
836 SlotIndex Stop = LI.endIndex();
837 if (Stop.isBlock())
843 MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop);
    [all...]
LiveDebugVariables.cpp 431 /// Stop when meeting an existing def or when leaving the live
696 OS << " [" << I.start() << ';' << I.stop() << "):";
924 SlotIndex Stop = LIS.getMBBEndIdx(MBB);
934 if (Segment->end < Stop) {
935 Stop = Segment->end;
936 Kills = {Stop, {LII.first}};
937 } else if (Segment->end == Stop && Kills.hasValue()) {
946 // Stop when meeting a different location or an already extended interval.
948 if (I.value() != DbgValue || I.stop() != Start) {
958 if (I.valid() && I.start() < Stop) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
CoalescingBitVector.h 87 Bits += 1 + It.stop() - It.start();
109 insert(It.start(), It.stop());
123 assert(It.stop() >= Index && "Interval must end after Index");
140 // [Start, Index-1] and another from [Index+1, Stop]. If Index is equal to
141 // either Start or Stop, we create one new interval. If Index is equal to
142 // both Start and Stop, we simply erase the existing interval.
147 IndexT Stop = It.stop();
148 assert(Index <= Stop && "Wrong interval for index");
152 if (Index < Stop)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kCollapseMOVEMPass.cpp 46 int Stop;
55 : Begin(nullptr), End(nullptr), Base(0), Start(INT_MIN), Stop(INT_MAX),
110 Start = Stop = O;
117 } else if (Type == Ascending && O == Stop + 4) {
118 Stop += 4;
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_stackdepot.cpp 98 void Stop();
157 void CompressThread::Stop() {
236 void StackDepotStopBackgroundThread() { compress_thread.Stop(); }
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerLoop.cpp 62 bool Stop() {
64 Printf("MallocFreeTracer: STOP %zd %zd (%s)\n", Mallocs.load(),
138 _Exit(Options.ErrorExitCode); // Stop right now.
244 _Exit(Options.ErrorExitCode); // Stop right now.
271 _Exit(0); // Stop right now, don't perform any at-exit actions.
304 _Exit(Options.TimeoutExitCode); // Stop right now.
320 _Exit(Options.ErrorExitCode); // Stop right now.
537 _Exit(Options.ErrorExitCode); // Stop right now.
576 HasMoreMallocsThanFrees = AllocTracer.Stop();
  /src/sys/external/bsd/gnu-efi/dist/inc/
efinet.h 326 EFI_SIMPLE_NETWORK_STOP Stop;
efipxebc.h 404 EFI_PXE_BASE_CODE_STOP Stop;
efiprot.h 1119 EFI_DRIVER_BINDING_PROTOCOL_STOP Stop;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
WinException.cpp 619 MachineFunction::const_iterator Stop = std::next(MF->begin());
620 while (Stop != End && !Stop->isEHFuncletEntry())
621 ++Stop;
623 InvokeStateChangeIterator::range(FuncInfo, MF->begin(), Stop)) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
HWAddressSanitizer.cpp 432 auto Stop =
435 Stop->setVisibility(GlobalValue::HiddenVisibility);
436 Stop->setDSOLocal(true);
464 Name, CreateRelPtr(Start), CreateRelPtr(Stop)}));
468 // always create start and stop symbols.
1283 // Pad and align each of the allocas that we instrumented to stop small
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCGNU.cpp 1521 auto *Stop = new llvm::GlobalVariable(TheModule, PtrTy,
1525 Stop->setVisibility(llvm::GlobalValue::HiddenVisibility);
1526 return { Start, Stop };
1612 // stop symbols will create the section.

Completed in 32 milliseconds