Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
50 lines (40 loc) · 1.48 KB

File metadata and controls

50 lines (40 loc) · 1.48 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
Morty Proxy This is a proxified and sanitized view of the page, visit original site.