| /llvm-project-15.0.7/clang-tools-extra/clangd/index/remote/ |
| H A D | Client.cpp | 49 auto NewStatus = Channel->GetState(/*try_to_connect=*/false); in updateConnectionStatus() 118 std::shared_ptr<grpc::Channel> Channel, llvm::StringRef Address, in IndexClient() argument 121 : Stub(remote::v1::SymbolIndex::NewStub(Channel)), Channel(Channel), in IndexClient() 123 ConnectionStatus(Channel->GetState(/*try_to_connect=*/true)), in IndexClient() 175 std::shared_ptr<grpc::Channel> Channel; member in clang::clangd::remote::__anon7e1b502c0111::IndexClient 187 const auto Channel = in getClient() local 190 new IndexClient(Channel, Address, ProjectRoot)); in getClient()
|
| /llvm-project-15.0.7/llvm/test/Transforms/DeadArgElim/ |
| H A D | dbginfo-preserve-dbgloc.ll | 4 %struct.Channel = type { i32, i32 } 11 …call void @llvm.dbg.value(metadata %struct.Channel* null, metadata !14, metadata !DIExpression()),… 12 %call = call %struct.Channel* (...) @foo(), !dbg !24 13 …call void @llvm.dbg.value(metadata %struct.Channel* %call, metadata !14, metadata !DIExpression())… 18 %call1 = call zeroext i1 @f1(i1 zeroext true, %struct.Channel* %call), !dbg !28 26 %call4 = call zeroext i1 @f1(i1 zeroext false, %struct.Channel* %call), !dbg !32 33 declare %struct.Channel* @foo(...) local_unnamed_addr #1 36 define internal zeroext i1 @f1(i1 zeroext %is_y, %struct.Channel* %str) #4 !dbg !34 { 42 …call void @llvm.dbg.value(metadata %struct.Channel* %str, metadata !40, metadata !DIExpression()),… 44 %tobool = icmp ne %struct.Channel* %str, null, !dbg !45 [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | LogChannelDWARF.cpp | 25 static Log::Channel g_channel(g_categories, DWARFLog::DebugInfo); 27 template <> Log::Channel &lldb_private::LogChannelFor<DWARFLog>() { in LogChannelFor()
|
| H A D | LogChannelDWARF.h | 33 template <> Log::Channel &LogChannelFor<DWARFLog>();
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | Log.h | 146 class Channel { 155 constexpr Channel(llvm::ArrayRef<Log::Category> categories, in Channel() function 177 static void Register(llvm::StringRef name, Channel &channel); 214 Log(Channel &channel) : m_channel(channel) {} in Log() 254 Channel &m_channel; 302 template <typename Cat> Log::Channel &LogChannelFor() = delete;
|
| H A D | LLDBLog.h | 58 template <> Log::Channel &LogChannelFor<LLDBLog>();
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/POSIX/ |
| H A D | ProcessPOSIXLog.cpp | 25 static Log::Channel g_channel(g_categories, POSIXLog::Process); 27 template <> Log::Channel &lldb_private::LogChannelFor<POSIXLog>() { in LogChannelFor()
|
| H A D | ProcessPOSIXLog.h | 36 template <> Log::Channel &LogChannelFor<POSIXLog>();
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | ProcessKDPLog.cpp | 32 static Log::Channel g_channel(g_categories, KDPLog::Packets); 34 template <> Log::Channel &lldb_private::LogChannelFor<KDPLog>() { in LogChannelFor()
|
| H A D | ProcessKDPLog.h | 38 template <> Log::Channel &LogChannelFor<KDPLog>();
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | ProcessWindowsLog.cpp | 24 static Log::Channel g_channel(g_categories, WindowsLog::Process); 26 template <> Log::Channel &lldb_private::LogChannelFor<WindowsLog>() { in LogChannelFor()
|
| H A D | ProcessWindowsLog.h | 36 template <> Log::Channel &LogChannelFor<WindowsLog>();
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemoteLog.cpp | 36 static Log::Channel g_channel(g_categories, GDBRLog::Packets); 38 template <> Log::Channel &lldb_private::LogChannelFor<GDBRLog>() { in LogChannelFor()
|
| H A D | ProcessGDBRemoteLog.h | 41 template <> Log::Channel &LogChannelFor<process_gdb_remote::GDBRLog>();
|
| /llvm-project-15.0.7/openmp/libomptarget/plugins/remote/src/ |
| H A D | Client.h | 26 using grpc::Channel; 51 RemoteOffloadClient(std::shared_ptr<Channel> Channel, int Timeout, in RemoteOffloadClient() argument 54 Stub(RemoteOffload::NewStub(Channel)) { in RemoteOffloadClient()
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | R600RegisterInfo.cpp | 24 unsigned R600RegisterInfo::getSubRegFromChannel(unsigned Channel) { in getSubRegFromChannel() argument 32 assert(Channel < array_lengthof(SubRegFromChannelTable)); in getSubRegFromChannel() 33 return SubRegFromChannelTable[Channel]; in getSubRegFromChannel()
|
| H A D | R600RegisterInfo.h | 27 static unsigned getSubRegFromChannel(unsigned Channel);
|
| H A D | R600InstrInfo.cpp | 992 unsigned Channel) const { in calculateIndirectAddress() 993 assert(Channel == 0); in calculateIndirectAddress() 1012 unsigned Channel = MI.getOperand(ChanOpIdx).getImm(); in expandPostRAPseudo() local 1013 unsigned Address = calculateIndirectAddress(RegIndex, Channel); in expandPostRAPseudo() 1026 unsigned Channel = MI.getOperand(ChanOpIdx).getImm(); in expandPostRAPseudo() local 1027 unsigned Address = calculateIndirectAddress(RegIndex, Channel); in expandPostRAPseudo() 1034 calculateIndirectAddress(RegIndex, Channel), in expandPostRAPseudo()
|
| H A D | R600ISelLowering.h | 104 unsigned &Channel, unsigned &PtrIncr) const;
|
| H A D | R600InstrInfo.h | 225 unsigned calculateIndirectAddress(unsigned RegIndex, unsigned Channel) const;
|
| H A D | SIRegisterInfo.h | 67 static unsigned getSubRegFromChannel(unsigned Channel, unsigned NumRegs = 1);
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | LLDBLog.cpp | 68 static Log::Channel g_log_channel(g_categories, 76 template <> Log::Channel &lldb_private::LogChannelFor<LLDBLog>() { in LogChannelFor()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/index/remote/monitor/ |
| H A D | Monitor.cpp | 46 const auto Channel = in main() local 48 const auto Stub = clang::clangd::remote::v1::Monitor::NewStub(Channel); in main()
|
| /llvm-project-15.0.7/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerUtilFuchsia.cpp | 232 ScopedHandle Channel; in CrashHandler() local 235 Self, ZX_EXCEPTION_CHANNEL_DEBUGGER, &Channel.Handle), in CrashHandler() 252 .handle = Channel.Handle, in CrashHandler() 265 ExitOnErr(_zx_channel_read(Channel.Handle, 0, &ExceptionInfo, in CrashHandler()
|
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | LogTest.cpp | 35 static Log::Channel test_channel(test_categories, TestChannel::FOO); 38 template <> Log::Channel &LogChannelFor<TestChannel>() { return test_channel; } in LogChannelFor()
|