Home
last modified time | relevance | path

Searched refs:mainloop (Results 1 – 25 of 29) sorted by relevance

12

/llvm-project/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp77 NativeProcessManager(MainLoop &mainloop)
78 : NativeProcessProtocol::Manager(mainloop) {}
98 static void sighup_handler(MainLoopBase &mainloop) { in sighup_handler() argument
106 mainloop.RequestTermination(); in sighup_handler()
193 void ConnectToRemote(MainLoop &mainloop, in ConnectToRemote() argument
336 MainLoop mainloop; in main_gdbserver()
341 mainloop.RegisterSignal(SIGHUP, sighup_handler, error); in main_gdbserver()
445 NativeProcessManager manager(mainloop); in main_gdbserver()
446 GDBRemoteCommunicationServerLLGS gdb_server(mainloop, manager); in main_gdbserver()
469 ConnectToRemote(mainloop, gdb_serve in main_gdbserver()
324 MainLoop mainloop; main_gdbserver() local
[all...]
/llvm-project/llvm/test/Transforms/NewGVN/
H A Dpr31613_2.ll67 ; CHECK: mainloop:
85 br label %mainloop
90 first.exit: ; preds = %mainloop, %second.exit
91 br label %mainloop
93 mainloop: ; preds = %first.exit, %entry
98 second.preheader: ; preds = %mainloop
/llvm-project/flang/test/Semantics/
H A Dcanondo05.f9020 mainloop : do 4 i=1,100
27 4 end do mainloop
/llvm-project/llvm/test/Transforms/IRCE/
H A Dranges_of_different_types.ll8 ; %exit.mainloop.at = smax (0, -1 - smax(12 - %len, -102)).
11 ; %exit.mainloop.at = 0
13 ; %exit.mainloop.at = 50 - 13 = 37.
15 ; %exit.mainloop.at = 100 - 13 = 87.
17 ; %exit.mainloop.at = 101.
19 ; %exit.mainloop.at = 101
104 ; %exit.mainloop.at = smax(-1 - smax(smax(%len - SINT_MAX, -13) - 1 - %len, -102), 0)
107 ; %exit.mainloop.at = 0
109 ; %exit.mainloop.at = 63
111 ; %exit.mainloop.at = 101
[all …]
H A Dclamp.ll30 ; CHECK-NEXT: %exit.mainloop.at = call i64 @llvm.umax.i64(i64 %tmp21, i64 1)
31 ; CHECK-NEXT: [[C1:%[^ ]+]] = icmp ult i64 1, %exit.mainloop.at
41 ; CHECK-NEXT: [[COND:%[^ ]+]] = icmp ult i64 %indvars.iv.next, %exit.mainloop.at
H A Ddecrementing-loop.ll43 ; CHECK: mainloop:
82 ; CHECK: mainloop:
122 ; CHECK: mainloop:
169 ; CHECK: mainloop:
218 ; CHECK: mainloop:
H A Dbad_expander.ll93 ; CHECK-NEXT: %exit.mainloop.at = call i64 @llvm.smax.i64(i64 [[DIV_MINUS_1]], i64 0)
94 ; CHECK-NEXT: [[COMP2:%[^ ]+]] = icmp slt i64 0, %exit.mainloop.at
107 ; CHECK-NEXT: [[EXIT_MAIN_LOOP:%[^ ]+]] = icmp slt i64 %iv.next, %exit.mainloop.at
H A Dsingle-access-with-preloop.ll51 ; CHECK: mainloop:
H A Dunsigned_comparisons_ugt.ll101 ; CHECK: mainloop:
256 ; CHECK: mainloop:
377 ; CHECK: mainloop:
H A Dcorrect-loop-info.ll27 ; CHECK: mainloop:
H A Dpre_post_loops.ll93 ; CHECK: mainloop:
H A Dcompound-loop-bound.ll123 ; CHECK: mainloop:
H A Dstride_more_than_1.ll334 ; CHECK: mainloop:
411 ; CHECK: mainloop:
535 ; CHECK: mainloop:
/llvm-project/lldb/include/lldb/Host/
H A DMainLoopBase.h108 ReadHandle(MainLoopBase &mainloop, IOObject::WaitableHandle handle)
109 : m_mainloop(mainloop), m_handle(handle) {}
88 ReadHandle(MainLoopBase & mainloop,IOObject::WaitableHandle handle) ReadHandle() argument
/llvm-project/lldb/include/lldb/Host/posix/
H A DMainLoopPosix.h69 SignalHandle(MainLoopPosix &mainloop, int signo, in SignalHandle()
71 : m_mainloop(mainloop), m_signo(signo), m_callback_it(callback_it) {}
68 SignalHandle(MainLoopPosix & mainloop,int signo,std::list<Callback>::iterator callback_it) SignalHandle() argument
/llvm-project/mlir/test/Examples/NVGPU/
H A DCh4.py149 def mainloop(mbar_group: Mbarriers, a_tma: TMA, b_tma: TMA, num_stages): function
292 D = mainloop(mbar_group, a_tma, b_tma, num_stages)
/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h277 Manager(MainLoop &mainloop) : m_mainloop(mainloop) {} in Manager() argument
/llvm-project/lldb/examples/python/
H A Dlldbtk.py581 tree.mainloop()
606 tree.mainloop()
627 tree.mainloop()
/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.h104 const ArchSpec &arch, MainLoop &mainloop);
H A DNativeProcessNetBSD.cpp146 MainLoop &mainloop) in NativeProcessNetBSD() argument
148 m_main_loop(mainloop) { in NativeProcessNetBSD()
155 m_sigchld_handle = mainloop.RegisterSignal( in NativeProcessNetBSD()
/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.h110 const ArchSpec &arch, MainLoop &mainloop);
H A DNativeProcessFreeBSD.cpp164 MainLoop &mainloop) in NativeProcessFreeBSD()
166 m_main_loop(mainloop) { in NativeProcessFreeBSD()
173 m_sigchld_handle = mainloop.RegisterSignal( in NativeProcessFreeBSD()
163 NativeProcessFreeBSD(::pid_t pid,int terminal_fd,NativeDelegate & delegate,const ArchSpec & arch,MainLoop & mainloop) NativeProcessFreeBSD() argument
/llvm-project/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.h46 Manager(MainLoop &mainloop);
H A DNativeProcessLinux.cpp255 NativeProcessLinux::Manager::Manager(MainLoop &mainloop) in Manager() argument
256 : NativeProcessProtocol::Manager(mainloop) { in Manager()
258 m_sigchld_handle = mainloop.RegisterSignal( in Manager()
/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.h38 MainLoop &mainloop,

12