Home
last modified time | relevance | path

Searched refs:attach (Results 1 – 25 of 116) sorted by relevance

12345

/llvm-project-15.0.7/llvm/test/Linker/
H A Dmetadata-attach.ll5 ; CHECK: @g1 = global i32 0, !attach !0{{$}}
7 @g1 = global i32 0, !attach !0
10 ; CHECK: @g3 = weak global i32 1, !attach !0{{$}}
12 @g2 = external global i32, !attach !0
15 @g3 = weak global i32 1, !attach !0
21 ; CHECK: define void @f1() !attach !0 {
23 define void @f1() !attach !0 {
29 ; CHECK: declare !attach !0 void @f2()
31 declare !attach !0 void @f2()
33 ; CHECK: define weak void @f3() !attach !0 {
[all …]
H A Dmetadata-a.ll4 ; CHECK: ret void, !attach !0
6 ; CHECK: ret void, !attach !1
12 ret void, !attach !0
H A Dmetadata-b.ll6 ret void, !attach !0
/llvm-project-15.0.7/llvm/test/Linker/Inputs/
H A Dmetadata-attach.ll1 @g1 = external global i32, !attach !0
3 @g2 = global i32 1, !attach !0
5 @g3 = global i32 2, !attach !0
7 declare !attach !0 void @f1()
9 define void @f2() !attach !0 {
15 define void @f3() !attach !0 {
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DREADME.md8 - [Attach Configuration Settings](#attach-configuration-settings)
11 - [Attach to process using process ID](#attach-using-pid)
12 - [Attach to process by name](#attach-by-name)
68 control how the launch or attach happens.
107 |**request** |string |Y| Must be "attach".
140 This will attach to a process `a.out` whose process ID is 123:
145 "request": "attach",
154 This will attach to an existing process whose base
162 "request": "attach",
174 "request": "attach",
[all …]
/llvm-project-15.0.7/llvm/test/BugPoint/
H A Dmetadata.ll23 %s = mul i8 22, 9, !attach !0, !dbg !10
24 store i8 %s, i8* %b, !attach !1, !dbg !11
25 call void @foo(), !attach !2, !dbg !12
26 store i32 7, i32* %a, !attach !3, !dbg !13
27 %t = add i32 0, 5, !attach !4, !dbg !14
/llvm-project-15.0.7/lldb/test/API/tools/lldb-vscode/attach/
H A DTestVSCode_attach.py57 self.attach(pid=self.process.pid)
94 self.attach(program=program)
111 self.attach(program=program, waitFor=True)
154 self.attach(program=program,
218 self.attach(program=program,
/llvm-project-15.0.7/lldb/test/API/tools/lldb-vscode/coreFile/
H A DTestVSCode_coreFile.py26 self.attach(exe_file, coreFile=core_file)
55 self.attach(exe_file, coreFile=core_file, sourceMap=source_map)
/llvm-project-15.0.7/lldb/utils/lui/
H A DReadme15 To attach to a running process:
16 $ ./lui.py --attach <pid>
/llvm-project-15.0.7/lldb/docs/man/
H A Dlldb-server.rst99 .. option:: --attach <pid-or-name>
109 to launch or attach.
184 In order to attach to a running process, pass --attach along with the process
189 lldb-server g :1234 --attach 12345
190 lldb-server g :1234 --attach program-name
H A Dlldb.rst29 .. option:: --attach-name <name>
31 Tells the debugger to attach to a process with the given name.
33 .. option:: --attach-pid <pid>
35 Tells the debugger to attach to a process with the given pid.
39 Alias for --attach-name
43 Alias for --attach-pid
269 Passing one of the attach options causes :program:`lldb` to immediately attach
/llvm-project-15.0.7/lldb/test/Shell/Driver/
H A DTestHelp.test7 CHECK: --attach-name
8 CHECK: --attach-pid
/llvm-project-15.0.7/lldb/tools/driver/
H A DOptions.td13 def attach_name: Separate<["--", "-"], "attach-name">,
15 HelpText<"Tells the debugger to attach to a process with the given name.">,
19 HelpText<"Alias for --attach-name">,
30 def attach_pid: Separate<["--", "-"], "attach-pid">,
32 HelpText<"Tells the debugger to attach to a process with the given pid.">,
36 HelpText<"Alias for --attach-pid">,
/llvm-project-15.0.7/lldb/test/Shell/SymbolFile/DWARF/
H A DDW_AT_range-DW_FORM_sec_offset.s11 …tion failed (missing or invalid range list table), please file a bug and attach the file at the st…
25 …without DW_AT_rnglists_base for CU at 0x00000000), please file a bug and attach the file at the st…
34 …OffsetEntryCount is 0, DW_AT_rnglists_base is 24), please file a bug and attach the file at the st…
/llvm-project-15.0.7/lldb/test/Shell/Driver/Inputs/
H A Dprocess_attach_pid.in1 process attach --pid
/llvm-project-15.0.7/clang/tools/scan-view/share/
H A DReporter.py110 outer.attach(msg)
132 msg.attach(MIMEText(mainMsg, _subtype='text/plain'))
/llvm-project-15.0.7/lldb/tools/lldb-server/
H A DLLGSOptions.td54 defm attach: SJ<"attach", "Attach to the process given by a (numeric) process id or a name.">,
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernelProperties.td12 Desc<"Control how many reads lldb will make while searching for a Darwin kernel on attach.">;
/llvm-project-15.0.7/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLogProperties.td11 …darwin-log enable' that should be applied when automatically enabling logging on startup/attach.">;
/llvm-project-15.0.7/clang/test/Index/
H A Dannotate-comments-objc.m16 // Check that we attach comments to properties correctly.
37 // Check that we attach comments to enums declared using the NS_ENUM macro.
48 // attach unrelated comments in the following cases where tag decls are
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/elf-core/gcore/
H A Dmake-core.sh7 Your system prevents the use of PTRACE to attach to non-child processes. The core file
/llvm-project-15.0.7/lldb/test/API/tools/lldb-vscode/disconnect/
H A DTestVSCode_disconnect.py73 self.attach(pid=self.process.pid, disconnectAutomatically=False)
/llvm-project-15.0.7/mlir/test/Conversion/OpenACCToLLVM/
H A Dconvert-data-operands-to-llvmir.mlir125 acc.data copyin(%b : memref<10xf32>) deviceptr(%c: !llvm.ptr<f32>) attach(%a : !llvm.ptr<f32>) {
130 …, array<1 x i64>)>, ptr<f32>, i64)>) deviceptr(%{{.*}} : !llvm.ptr<f32>) attach(%{{.*}} : !llvm.pt…
176 …acc.parallel copyin(%b : memref<10xf32>) deviceptr(%c: !llvm.ptr<f32>) attach(%a : !llvm.ptr<f32>)…
181 …>, array<1 x i64>)>, ptr<f32>, i64)>) deviceptr(%{{.*}}: !llvm.ptr<f32>) attach(%{{.*}}: !llvm.ptr…
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_flags.inc81 "needs to attach gdb).")
85 "Useful for debugging purposes (e.g. when one needs to attach gdb).")
89 "Useful for debugging purposes (e.g. when one needs to attach gdb).")
/llvm-project-15.0.7/llvm/test/Transforms/CalledValuePropagation/
H A Dsimple-select.ll9 ; instruction, and attach !callees metadata to the call. Such metadata can

12345