summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST/Interp/Disasm.cpp
diff options
context:
space:
mode:
authorNandor Licker <n@ndor.email>2019-09-02 11:34:47 +0000
committerNandor Licker <n@ndor.email>2019-09-02 11:34:47 +0000
commitc3bdad8c1e142925fd7d65191ca88cb8e28782df (patch)
treec5081c2a8b55cbd654d027f18b47f4c9390839a0 /clang/lib/AST/Interp/Disasm.cpp
parentda496363bf2b65b22a80772fec5693d14270e655 (diff)
downloadbcm5719-llvm-c3bdad8c1e142925fd7d65191ca88cb8e28782df.tar.gz
bcm5719-llvm-c3bdad8c1e142925fd7d65191ca88cb8e28782df.zip
Revert [Clang Interpreter] Initial patch for the constexpr interpreter
This reverts r370636 (git commit 8327fed9475a14c3376b4860c75370c730e08f33) llvm-svn: 370642
Diffstat (limited to 'clang/lib/AST/Interp/Disasm.cpp')
-rw-r--r--clang/lib/AST/Interp/Disasm.cpp69
1 files changed, 0 insertions, 69 deletions
diff --git a/clang/lib/AST/Interp/Disasm.cpp b/clang/lib/AST/Interp/Disasm.cpp
deleted file mode 100644
index 632c8c418fd..00000000000
--- a/clang/lib/AST/Interp/Disasm.cpp
+++ /dev/null
@@ -1,69 +0,0 @@
-//===--- Disasm.cpp - Disassembler for bytecode functions -------*- C++ -*-===//
-//
-// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
-// See https://llvm.org/LICENSE.txt for license information.
-// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-//
-//===----------------------------------------------------------------------===//
-//
-// Dump method for Function which disassembles the bytecode.
-//
-//===----------------------------------------------------------------------===//
-
-#include "Function.h"
-#include "Opcode.h"
-#include "Program.h"
-#include "Type.h"
-#include "clang/AST/DeclCXX.h"
-#include "llvm/Support/Compiler.h"
-
-using namespace clang;
-using namespace clang::interp;
-
-LLVM_DUMP_METHOD void Function::dump() const { dump(llvm::errs()); }
-
-LLVM_DUMP_METHOD void Function::dump(llvm::raw_ostream &OS) const {
- if (F) {
- if (auto *Cons = dyn_cast<CXXConstructorDecl>(F)) {
- const std::string &Name = Cons->getParent()->getNameAsString();
- OS << Name << "::" << Name << ":\n";
- } else {
- OS << F->getNameAsString() << ":\n";
- }
- } else {
- OS << "<<expr>>\n";
- }
-
- OS << "frame size: " << getFrameSize() << "\n";
- OS << "arg size: " << getArgSize() << "\n";
- OS << "rvo: " << hasRVO() << "\n";
-
- auto PrintName = [&OS](const char *Name) {
- OS << Name;
- for (long I = 0, N = strlen(Name); I < 30 - N; ++I) {
- OS << ' ';
- }
- };
-
- for (CodePtr Start = getCodeBegin(), PC = Start; PC != getCodeEnd();) {
- size_t Addr = PC - Start;
- auto Op = PC.read<Opcode>();
- OS << llvm::format("%8d", Addr) << " ";
- switch (Op) {
-#define GET_DISASM
-#include "Opcodes.inc"
-#undef GET_DISASM
- }
- }
-}
-
-LLVM_DUMP_METHOD void Program::dump() const { dump(llvm::errs()); }
-
-LLVM_DUMP_METHOD void Program::dump(llvm::raw_ostream &OS) const {
- for (auto &Func : Funcs) {
- Func.second->dump();
- }
- for (auto &Anon : AnonFuncs) {
- Anon->dump();
- }
-}
OpenPOWER on IntegriCloud