forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathTraceCursor.cpp
53 lines (42 loc) · 1.48 KB
/
TraceCursor.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//===-- TraceCursor.cpp -----------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "lldb/Target/TraceCursor.h"
#include "lldb/Target/ExecutionContext.h"
using namespace lldb;
using namespace lldb_private;
using namespace llvm;
TraceCursor::TraceCursor(lldb::ThreadSP thread_sp)
: m_exe_ctx_ref(ExecutionContext(thread_sp)) {}
ExecutionContextRef &TraceCursor::GetExecutionContextRef() {
return m_exe_ctx_ref;
}
void TraceCursor::SetGranularity(
lldb::TraceInstructionControlFlowType granularity) {
m_granularity = granularity;
}
void TraceCursor::SetIgnoreErrors(bool ignore_errors) {
m_ignore_errors = ignore_errors;
}
void TraceCursor::SetForwards(bool forwards) { m_forwards = forwards; }
bool TraceCursor::IsForwards() const { return m_forwards; }
const char *trace_event_utils::EventToDisplayString(lldb::TraceEvents event) {
switch (event) {
case lldb::eTraceEventPaused:
return "paused";
}
return nullptr;
}
void trace_event_utils::ForEachEvent(
lldb::TraceEvents events,
std::function<void(lldb::TraceEvents event)> callback) {
while (events) {
TraceEvents event = static_cast<TraceEvents>(events & ~(events - 1));
callback(event);
events &= ~event;
}
}