Lines Matching refs:trace
75 > process trace start # start tracing on all threads, including future ones
78 > thread trace dump instructions
97 Configuring the trace size
108 thread trace start all -s <size_in_bytes>
110 For reference, a 1MB trace buffer can easily store around 5M instructions.
119 thread trace dump instructions -c <count>
129 thread trace dump instructions <#thread index>
131 thread trace dump instructions 8
143 thread trace dump instructions
157 (lldb) thread trace dump instructions -c 5
168 At this moment, we are not including the failed instruction in the trace,
175 It's also possible to record a trace using a custom Intel PT collector
176 and decode + symbolicate the trace using LLDB.
177 For that, the command trace load is useful.
178 In order to use trace load, you need to first create a JSON file with
179 the definition of the trace session.
199 "iptTrace": "trace.file" # raw thread-specific trace from the AUX buffer
226 trace schema intel-pt
240 > trace load /path/to/json
241 > thread trace dump instructions <optional thread index>