[flang] Add Dump() routines for debugging.
authorTim Keith <tkeith@nvidia.com>
Mon, 11 Jun 2018 22:40:31 +0000 (15:40 -0700)
committerTim Keith <tkeith@nvidia.com>
Mon, 11 Jun 2018 22:40:31 +0000 (15:40 -0700)
Add Dump() routines based on operator<< for the type so that they are
easy to call from the debugger. Overload for both pointer and reference
types and for dumping to std::cerr or a specific ostream.

Original-commit: flang-compiler/f18@ec6676eff04a0b231f7f5f3e1e2486f2c93e2810
Reviewed-on: https://github.com/flang-compiler/f18/pull/99

flang/lib/parser/parse-tree.cc
flang/tools/f18/CMakeLists.txt
flang/tools/f18/dump.cc [new file with mode: 0644]

index 29281be3893ba4acd06ca32dd80e5e8cd28d6fea..9db7fd28ff86746d805bbe261603051d11c95c76 100644 (file)
@@ -112,4 +112,11 @@ Statement<ActionStmt> StmtFunctionStmt::ConvertToAssignment() {
           AssignmentStmt{std::move(variable), std::move(funcExpr)}}}};
 }
 
+std::ostream &operator<<(std::ostream &os, const Name &x) {
+  return os << x.ToString();
+}
+std::ostream &operator<<(std::ostream &os, const CharBlock &x) {
+  return os << x.ToString();
+}
+
 }  // namespace Fortran::parser
index 8c151c8cc0b6f84c0715e67795365993150afc28..4c9d134eba8115cdd937aa26c297149af4ec47d2 100644 (file)
 
 ######## f18 ##########
 
-add_executable( f18
+add_executable(f18
   f18.cc
+  dump.cc
 )
-target_link_libraries( f18
+target_link_libraries(f18
   FortranParser
   FlangSemantics
 )
diff --git a/flang/tools/f18/dump.cc b/flang/tools/f18/dump.cc
new file mode 100644 (file)
index 0000000..dade61e
--- /dev/null
@@ -0,0 +1,41 @@
+// Copyright (c) 2018, NVIDIA CORPORATION.  All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// This file defines Dump routines available for calling from the debugger.
+// Each is based on operator<< for that type. There are overloadings for
+// reference and pointer, and for dumping to a provided ostream or cerr.
+
+#ifdef DEBUG
+
+#include <iostream>
+
+#define DEFINE_DUMP(ns, name) \
+  namespace ns { \
+  class name; \
+  std::ostream &operator<<(std::ostream &, const name &); \
+  } \
+  void Dump(std::ostream &os, const ns::name &x) { os << x << '\n'; } \
+  void Dump(std::ostream &os, const ns::name *x) { Dump(os, *x); } \
+  void Dump(const ns::name &x) { Dump(std::cerr, x); } \
+  void Dump(const ns::name *x) { Dump(std::cerr, *x); }
+
+namespace Fortran {
+DEFINE_DUMP(parser, Name)
+DEFINE_DUMP(parser, CharBlock)
+DEFINE_DUMP(semantics, Symbol)
+DEFINE_DUMP(semantics, Scope)
+DEFINE_DUMP(semantics, DeclTypeSpec)
+}  // namespace Fortran
+
+#endif