/llvm-project/lldb/tools/lldb-server/ |
H A D | lldb-gdbserver.cpp | 77 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 D | pr31613_2.ll | 67 ; 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 D | canondo05.f90 | 20 mainloop : do 4 i=1,100 27 4 end do mainloop
|
/llvm-project/llvm/test/Transforms/IRCE/ |
H A D | ranges_of_different_types.ll | 8 ; %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 D | clamp.ll | 30 ; 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 D | decrementing-loop.ll | 43 ; CHECK: mainloop: 82 ; CHECK: mainloop: 122 ; CHECK: mainloop: 169 ; CHECK: mainloop: 218 ; CHECK: mainloop:
|
H A D | bad_expander.ll | 93 ; 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 D | single-access-with-preloop.ll | 51 ; CHECK: mainloop:
|
H A D | unsigned_comparisons_ugt.ll | 101 ; CHECK: mainloop: 256 ; CHECK: mainloop: 377 ; CHECK: mainloop:
|
H A D | correct-loop-info.ll | 27 ; CHECK: mainloop:
|
H A D | pre_post_loops.ll | 93 ; CHECK: mainloop:
|
H A D | compound-loop-bound.ll | 123 ; CHECK: mainloop:
|
H A D | stride_more_than_1.ll | 334 ; CHECK: mainloop: 411 ; CHECK: mainloop: 535 ; CHECK: mainloop:
|
/llvm-project/lldb/include/lldb/Host/ |
H A D | MainLoopBase.h | 108 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 D | MainLoopPosix.h | 69 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 D | Ch4.py | 149 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 D | NativeProcessProtocol.h | 277 Manager(MainLoop &mainloop) : m_mainloop(mainloop) {} in Manager() argument
|
/llvm-project/lldb/examples/python/ |
H A D | lldbtk.py | 581 tree.mainloop() 606 tree.mainloop() 627 tree.mainloop()
|
/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
H A D | NativeProcessNetBSD.h | 104 const ArchSpec &arch, MainLoop &mainloop);
|
H A D | NativeProcessNetBSD.cpp | 146 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 D | NativeProcessFreeBSD.h | 110 const ArchSpec &arch, MainLoop &mainloop);
|
H A D | NativeProcessFreeBSD.cpp | 164 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 D | NativeProcessLinux.h | 46 Manager(MainLoop &mainloop);
|
H A D | NativeProcessLinux.cpp | 255 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 D | GDBRemoteCommunicationServerLLGS.h | 38 MainLoop &mainloop,
|