1 | //
|
---|
2 | // Cforall Version 1.0.0 Copyright (C) 2017 University of Waterloo
|
---|
3 | //
|
---|
4 | // The contents of this file are covered under the licence agreement in the
|
---|
5 | // file "LICENCE" distributed with Cforall.
|
---|
6 | //
|
---|
7 | // Debug.h --
|
---|
8 | //
|
---|
9 | // Author : Rob Schluntz
|
---|
10 | // Created On : Fri Sep 1 11:09:14 2017
|
---|
11 | // Last Modified By : Rob Schluntz
|
---|
12 | // Last Modified On : Fri Sep 1 11:09:36 2017
|
---|
13 | // Update Count : 2
|
---|
14 | //
|
---|
15 |
|
---|
16 | #pragma once
|
---|
17 |
|
---|
18 | #include <string>
|
---|
19 | #include <list>
|
---|
20 | #include <iostream>
|
---|
21 |
|
---|
22 | #include "CodeGen/Generate.h"
|
---|
23 | #include "Parser/LinkageSpec.h"
|
---|
24 | #include "SynTree/Declaration.h"
|
---|
25 |
|
---|
26 | #define DEBUG
|
---|
27 |
|
---|
28 | namespace Debug {
|
---|
29 | /// debug codegen a translation unit
|
---|
30 | static inline void codeGen( __attribute__((unused)) const std::list< Declaration * > & translationUnit, __attribute__((unused)) const std::string & label, __attribute__((unused)) LinkageSpec::Spec linkageFilter = LinkageSpec::Builtin ) {
|
---|
31 | #ifdef DEBUG
|
---|
32 | std::list< Declaration * > decls;
|
---|
33 |
|
---|
34 | filter( translationUnit.begin(), translationUnit.end(), back_inserter( decls ), [linkageFilter]( Declaration * decl ) {
|
---|
35 | return ! (decl->linkage & linkageFilter);
|
---|
36 | });
|
---|
37 |
|
---|
38 | std::cerr << "======" << label << "======" << std::endl;
|
---|
39 | CodeGen::generate(
|
---|
40 | decls,
|
---|
41 | std::cerr,
|
---|
42 | true /* doIntrinsics */,
|
---|
43 | true /* pretty */,
|
---|
44 | false /* generateC */,
|
---|
45 | false /* lineMarks */,
|
---|
46 | true /* printTypeExpr */
|
---|
47 | );
|
---|
48 | #endif
|
---|
49 | } // dump
|
---|
50 |
|
---|
51 | static inline void treeDump( __attribute__((unused)) const std::list< Declaration * > & translationUnit, __attribute__((unused)) const std::string & label, __attribute__((unused)) LinkageSpec::Spec linkageFilter = LinkageSpec::Compiler ) {
|
---|
52 | #ifdef DEBUG
|
---|
53 | std::list< Declaration * > decls;
|
---|
54 |
|
---|
55 | filter( translationUnit.begin(), translationUnit.end(), back_inserter( decls ), [linkageFilter]( Declaration * decl ) {
|
---|
56 | return ! (decl->linkage & linkageFilter);
|
---|
57 | });
|
---|
58 |
|
---|
59 | std::cerr << "======" << label << "======" << std::endl;
|
---|
60 | printAll( decls, std::cerr );
|
---|
61 | #endif
|
---|
62 | } // dump
|
---|
63 | }
|
---|
64 |
|
---|
65 | // Local Variables: //
|
---|
66 | // tab-width: 4 //
|
---|
67 | // mode: c++ //
|
---|
68 | // compile-command: "make install" //
|
---|
69 | // End: //
|
---|