about summary refs log tree commit diff homepage
path: root/tools/klee-ptree/Tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/klee-ptree/Tree.h')
-rw-r--r--tools/klee-ptree/Tree.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/tools/klee-ptree/Tree.h b/tools/klee-ptree/Tree.h
deleted file mode 100644
index 65b7baeb..00000000
--- a/tools/klee-ptree/Tree.h
+++ /dev/null
@@ -1,53 +0,0 @@
-//===-- Tree.h --------------------------------------------------*- C++ -*-===//
-//
-//                     The KLEE Symbolic Virtual Machine
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#pragma once
-
-#include "klee/Core/BranchTypes.h"
-#include "klee/Core/TerminationTypes.h"
-
-#include <filesystem>
-#include <string>
-#include <unordered_map>
-#include <unordered_set>
-#include <variant>
-#include <vector>
-
-inline std::unordered_set<BranchType> validBranchTypes;
-inline std::unordered_set<StateTerminationType> validTerminationTypes;
-inline std::unordered_map<BranchType, std::string> branchTypeNames;
-inline std::unordered_map<StateTerminationType, std::string>
-    terminationTypeNames;
-
-///@brief A Tree node representing a PTreeNode
-struct Node final {
-  std::uint32_t left{0};
-  std::uint32_t right{0};
-  std::uint32_t stateID{0};
-  std::uint32_t asmLine{0};
-  std::variant<BranchType, StateTerminationType> kind{BranchType::NONE};
-};
-
-///@brief An in-memory representation of a complete process tree
-class Tree final {
-  /// Creates branchTypeNames and terminationTypeNames maps
-  static void initialiseTypeNames();
-  /// Creates validBranchTypes and validTerminationTypes sets
-  static void initialiseValidTypes();
-  /// Checks tree properties (e.g. valid branch/termination types)
-  void sanityCheck();
-
-public:
-  /// sorted vector of Nodes default initialised with BranchType::NONE
-  std::vector<Node> nodes; // PTree node IDs start with 1!
-
-  /// Reads complete ptree.db into memory
-  explicit Tree(const std::filesystem::path &path);
-  ~Tree() = default;
-};