P4C
The P4 Compiler
Loading...
Searching...
No Matches
dump.h
1/*
2Copyright 2013-present Barefoot Networks, Inc.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17#ifndef IR_DUMP_H_
18#define IR_DUMP_H_
19
20#include <cstdint>
21#include <iostream>
22#include <string>
23
24#include "ir/node.h"
25#include "ir/visitor.h"
26
27/* overloads rather than optional arguments to make it easier to call from the debugger */
28void dump(std::ostream &out, const IR::Node *n);
29void dump(std::ostream &out, const IR::Node *n, unsigned maxdepth);
30void dump(const IR::Node *n);
31void dump(const IR::Node *n, unsigned maxdepth);
32void dump(const IR::INode *n);
33void dump(const IR::INode *n, unsigned maxdepth);
34void dump(uintptr_t p);
35void dump(uintptr_t p, unsigned maxdepth);
36void dump_notype(const IR::Node *n);
37void dump_notype(const IR::Node *n, unsigned maxdepth);
38void dump_notype(const IR::INode *n);
39void dump_notype(const IR::INode *n, unsigned maxdepth);
40void dump_notype(uintptr_t p);
41void dump_notype(uintptr_t p, unsigned maxdepth);
42void dump(std::ostream &, const Visitor::Context *);
43void dump(const Visitor::Context *);
44
45std::string dumpToString(const IR::Node *n);
46
47class Dump {
48 const IR::Node *n = nullptr;
49 const Visitor::Context *ctxt = nullptr;
50 unsigned maxdepth;
51 friend std::ostream &operator<<(std::ostream &, const Dump &);
52
53 public:
54 explicit Dump(const IR::Node *n, unsigned maxdepth = ~0U) : n(n), maxdepth(maxdepth) {}
55 explicit Dump(const Visitor::Context *ctxt) : ctxt(ctxt) {}
56};
57
58inline std::ostream &operator<<(std::ostream &out, const Dump &d) {
59 if (d.n)
60 dump(out, d.n, d.maxdepth);
61 else
62 dump(out, d.ctxt);
63 return out;
64}
65
66#endif /* IR_DUMP_H_ */
Definition dump.h:47
Definition node.h:64
Definition node.h:93
Definition visitor.h:45