-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathDebug.cpp
50 lines (40 loc) · 1.48 KB
/
Debug.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
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------
//
// This file contains debug dumpers which can be called from the debugger.
//
//----------------------------------------------------------------------------
#include "Backend.h"
#if DBG_DUMP
Func *CurrentFunc;
///----------------------------------------------------------------------------
///
/// Dump the given instr
///
///----------------------------------------------------------------------------
void dump(IR::Instr *instr)
{
instr->Dump();
}
///----------------------------------------------------------------------------
///
/// Dump the given instr, window/2 instrs before, and window/2 instrs after
///
///----------------------------------------------------------------------------
void dump(IR::Instr *instr, int window)
{
instr->Dump(window);
}
///----------------------------------------------------------------------------
///
/// Dump the current function being compiled
///
///----------------------------------------------------------------------------
void dump()
{
CurrentFunc->Dump();
}
#endif // DBG_DUMP