Skip to content

Commit

Permalink
Removed the Internal directory from include/klee
Browse files Browse the repository at this point in the history
  • Loading branch information
ccadar authored and MartinNowack committed Apr 30, 2020
1 parent e6d3f65 commit 7d85ee8
Show file tree
Hide file tree
Showing 93 changed files with 134 additions and 137 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions include/klee/ExecutionState.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@

#include "klee/Expr/Constraints.h"
#include "klee/Expr/Expr.h"
#include "klee/Internal/ADT/TreeStream.h"
#include "klee/Internal/System/Time.h"
#include "klee/ADT/TreeStream.h"
#include "klee/System/Time.h"
#include "klee/MergeHandler.h"

// FIXME: We do not want to be exposing these? :(
#include "../../lib/Core/AddressSpace.h"
#include "klee/Internal/Module/KInstIterator.h"
#include "klee/Module/KInstIterator.h"

#include <map>
#include <set>
Expand Down
3 changes: 0 additions & 3 deletions include/klee/Internal/README.txt

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define KLEE_KINSTRUCTION_H

#include "klee/Config/Version.h"
#include "klee/Internal/Module/InstructionInfoTable.h"
#include "klee/Module/InstructionInfoTable.h"

#include "llvm/Support/DataTypes.h"
#include "llvm/Support/raw_ostream.h"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion include/klee/Solver/Solver.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define KLEE_SOLVER_H

#include "klee/Expr/Expr.h"
#include "klee/Internal/System/Time.h"
#include "klee/System/Time.h"
#include "klee/Solver/SolverCmdLine.h"

#include <vector>
Expand Down
2 changes: 1 addition & 1 deletion include/klee/Solver/SolverImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#ifndef KLEE_SOLVERIMPL_H
#define KLEE_SOLVERIMPL_H

#include "klee/Internal/System/Time.h"
#include "klee/System/Time.h"
#include "Solver.h"

#include <vector>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#ifndef KLEE_TIMER_H
#define KLEE_TIMER_H

#include "klee/Internal/System/Time.h"
#include "klee/System/Time.h"

#include "llvm/ADT/SmallVector.h"

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion include/klee/TimerStatIncrementer.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define KLEE_TIMERSTATINCREMENTER_H

#include "klee/Statistics.h"
#include "klee/Internal/Support/Timer.h"
#include "klee/Support/Timer.h"

namespace klee {

Expand Down
2 changes: 1 addition & 1 deletion lib/Basic/KTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//

#include "klee/Internal/ADT/KTest.h"
#include "klee/ADT/KTest.h"

#include <stdlib.h>
#include <string.h>
Expand Down
4 changes: 2 additions & 2 deletions lib/Core/AddressSpace.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

#include "Memory.h"
#include "klee/Expr/Expr.h"
#include "klee/Internal/ADT/ImmutableMap.h"
#include "klee/Internal/System/Time.h"
#include "klee/ADT/ImmutableMap.h"
#include "klee/System/Time.h"

namespace klee {
class ExecutionState;
Expand Down
8 changes: 4 additions & 4 deletions lib/Core/ExecutionState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
#include "klee/ExecutionState.h"

#include "klee/Expr/Expr.h"
#include "klee/Internal/Module/Cell.h"
#include "klee/Internal/Module/InstructionInfoTable.h"
#include "klee/Internal/Module/KInstruction.h"
#include "klee/Internal/Module/KModule.h"
#include "klee/Module/Cell.h"
#include "klee/Module/InstructionInfoTable.h"
#include "klee/Module/KInstruction.h"
#include "klee/Module/KModule.h"
#include "klee/OptionCategories.h"

#include "llvm/IR/Function.h"
Expand Down
24 changes: 12 additions & 12 deletions lib/Core/Executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@
#include "klee/Expr/ExprPPrinter.h"
#include "klee/Expr/ExprSMTLIBPrinter.h"
#include "klee/Expr/ExprUtil.h"
#include "klee/Internal/ADT/KTest.h"
#include "klee/Internal/ADT/RNG.h"
#include "klee/Internal/Module/Cell.h"
#include "klee/Internal/Module/InstructionInfoTable.h"
#include "klee/Internal/Module/KInstruction.h"
#include "klee/Internal/Module/KModule.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Internal/Support/FileHandling.h"
#include "klee/Internal/Support/FloatEvaluation.h"
#include "klee/Internal/Support/ModuleUtil.h"
#include "klee/Internal/System/MemoryUsage.h"
#include "klee/Internal/System/Time.h"
#include "klee/ADT/KTest.h"
#include "klee/ADT/RNG.h"
#include "klee/Module/Cell.h"
#include "klee/Module/InstructionInfoTable.h"
#include "klee/Module/KInstruction.h"
#include "klee/Module/KModule.h"
#include "klee/Support/ErrorHandling.h"
#include "klee/Support/FileHandling.h"
#include "klee/Support/FloatEvaluation.h"
#include "klee/Support/ModuleUtil.h"
#include "klee/System/MemoryUsage.h"
#include "klee/System/Time.h"
#include "klee/Interpreter.h"
#include "klee/OptionCategories.h"
#include "klee/Solver/SolverCmdLine.h"
Expand Down
8 changes: 4 additions & 4 deletions lib/Core/Executor.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

#include "klee/ExecutionState.h"
#include "klee/Expr/ArrayCache.h"
#include "klee/Internal/Module/Cell.h"
#include "klee/Internal/Module/KInstruction.h"
#include "klee/Internal/Module/KModule.h"
#include "klee/Internal/System/Time.h"
#include "klee/Module/Cell.h"
#include "klee/Module/KInstruction.h"
#include "klee/Module/KModule.h"
#include "klee/System/Time.h"
#include "klee/Interpreter.h"

#include "llvm/ADT/Twine.h"
Expand Down
4 changes: 2 additions & 2 deletions lib/Core/ExecutorUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

#include "klee/Config/Version.h"
#include "klee/Expr/Expr.h"
#include "klee/Internal/Module/KModule.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Module/KModule.h"
#include "klee/Support/ErrorHandling.h"
#include "klee/Interpreter.h"
#include "klee/Solver/Solver.h"

Expand Down
2 changes: 1 addition & 1 deletion lib/Core/ImpliedValue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "klee/Expr/Constraints.h"
#include "klee/Expr/Expr.h"
#include "klee/Expr/ExprUtil.h"
#include "klee/Internal/Support/IntEvaluation.h" // FIXME: Use APInt
#include "klee/Support/IntEvaluation.h" // FIXME: Use APInt
#include "klee/Solver/Solver.h"

#include <map>
Expand Down
2 changes: 1 addition & 1 deletion lib/Core/Memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#include "klee/Expr/ArrayCache.h"
#include "klee/Expr/Expr.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Support/ErrorHandling.h"
#include "klee/OptionCategories.h"
#include "klee/Solver/Solver.h"
#include "klee/util/BitArray.h"
Expand Down
2 changes: 1 addition & 1 deletion lib/Core/MemoryManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "Memory.h"

#include "klee/Expr/Expr.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Support/ErrorHandling.h"

#include "llvm/Support/CommandLine.h"
#include "llvm/Support/MathExtras.h"
Expand Down
16 changes: 8 additions & 8 deletions lib/Core/Searcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
#include "klee/ExecutionState.h"
#include "klee/MergeHandler.h"
#include "klee/Statistics.h"
#include "klee/Internal/Module/InstructionInfoTable.h"
#include "klee/Internal/Module/KInstruction.h"
#include "klee/Internal/Module/KModule.h"
#include "klee/Internal/ADT/DiscretePDF.h"
#include "klee/Internal/ADT/RNG.h"
#include "klee/Internal/Support/ModuleUtil.h"
#include "klee/Internal/System/Time.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Module/InstructionInfoTable.h"
#include "klee/Module/KInstruction.h"
#include "klee/Module/KModule.h"
#include "klee/ADT/DiscretePDF.h"
#include "klee/ADT/RNG.h"
#include "klee/Support/ModuleUtil.h"
#include "klee/System/Time.h"
#include "klee/Support/ErrorHandling.h"
#include "llvm/IR/CallSite.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/Instructions.h"
Expand Down
2 changes: 1 addition & 1 deletion lib/Core/Searcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#ifndef KLEE_SEARCHER_H
#define KLEE_SEARCHER_H

#include "klee/Internal/System/Time.h"
#include "klee/System/Time.h"

#include "llvm/Support/CommandLine.h"
#include "llvm/Support/raw_ostream.h"
Expand Down
4 changes: 2 additions & 2 deletions lib/Core/SeedInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
#include "klee/ExecutionState.h"
#include "klee/Expr/Expr.h"
#include "klee/Expr/ExprUtil.h"
#include "klee/Internal/ADT/KTest.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/ADT/KTest.h"
#include "klee/Support/ErrorHandling.h"

using namespace klee;

Expand Down
8 changes: 4 additions & 4 deletions lib/Core/SpecialFunctionHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
#include "TimingSolver.h"

#include "klee/ExecutionState.h"
#include "klee/Internal/Module/KInstruction.h"
#include "klee/Internal/Module/KModule.h"
#include "klee/Internal/Support/Debug.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Module/KInstruction.h"
#include "klee/Module/KModule.h"
#include "klee/Support/Debug.h"
#include "klee/Support/ErrorHandling.h"
#include "klee/MergeHandler.h"
#include "klee/OptionCategories.h"
#include "klee/Solver/SolverCmdLine.h"
Expand Down
12 changes: 6 additions & 6 deletions lib/Core/StatsTracker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
#include "klee/ExecutionState.h"
#include "klee/Statistics.h"
#include "klee/Config/Version.h"
#include "klee/Internal/Module/InstructionInfoTable.h"
#include "klee/Internal/Module/KModule.h"
#include "klee/Internal/Module/KInstruction.h"
#include "klee/Internal/Support/ModuleUtil.h"
#include "klee/Internal/System/MemoryUsage.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Module/InstructionInfoTable.h"
#include "klee/Module/KModule.h"
#include "klee/Module/KInstruction.h"
#include "klee/Support/ModuleUtil.h"
#include "klee/System/MemoryUsage.h"
#include "klee/Support/ErrorHandling.h"
#include "klee/Solver/SolverStats.h"

#include "CallPathManager.h"
Expand Down
2 changes: 1 addition & 1 deletion lib/Core/StatsTracker.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define KLEE_STATSTRACKER_H

#include "CallPathManager.h"
#include "klee/Internal/System/Time.h"
#include "klee/System/Time.h"

#include <memory>
#include <set>
Expand Down
2 changes: 1 addition & 1 deletion lib/Core/TimingSolver.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#include "klee/Expr/Expr.h"
#include "klee/Solver/Solver.h"
#include "klee/Internal/System/Time.h"
#include "klee/System/Time.h"

#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion lib/Core/UserSearcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "Searcher.h"
#include "Executor.h"

#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Support/ErrorHandling.h"
#include "klee/MergeHandler.h"
#include "klee/Solver/SolverCmdLine.h"

Expand Down
2 changes: 1 addition & 1 deletion lib/Expr/ArrayExprOptimizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include "klee/Config/Version.h"
#include "klee/Expr/Assignment.h"
#include "klee/Expr/ExprBuilder.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Support/ErrorHandling.h"
#include "klee/OptionCategories.h"
#include "klee/util/BitArray.h"

Expand Down
2 changes: 1 addition & 1 deletion lib/Expr/ArrayExprVisitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#include "ArrayExprVisitor.h"

#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Support/ErrorHandling.h"

#include <algorithm>

Expand Down
2 changes: 1 addition & 1 deletion lib/Expr/AssignmentGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "AssignmentGenerator.h"

#include "klee/Expr/Assignment.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Support/ErrorHandling.h"
#include "klee/klee.h"

#include <llvm/ADT/APInt.h>
Expand Down
2 changes: 1 addition & 1 deletion lib/Expr/Constraints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#include "klee/Expr/ExprPPrinter.h"
#include "klee/Expr/ExprVisitor.h"
#include "klee/Internal/Module/KModule.h"
#include "klee/Module/KModule.h"
#include "klee/OptionCategories.h"

#include "llvm/IR/Function.h"
Expand Down
2 changes: 1 addition & 1 deletion lib/Expr/Expr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "klee/Expr/ExprPPrinter.h"
// FIXME: We shouldn't need this once fast constant support moves into
// Core. If we need to do arithmetic, we probably want to use APInt.
#include "klee/Internal/Support/IntEvaluation.h"
#include "klee/Support/IntEvaluation.h"
#include "klee/OptionCategories.h"

#include "llvm/ADT/Hashing.h"
Expand Down
2 changes: 1 addition & 1 deletion lib/Module/FunctionAlias.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===//

#include "Passes.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Support/ErrorHandling.h"
#include "klee/OptionCategories.h"

#include "llvm/IR/GlobalAlias.h"
Expand Down
2 changes: 1 addition & 1 deletion lib/Module/InstructionInfoTable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//

#include "klee/Internal/Module/InstructionInfoTable.h"
#include "klee/Module/InstructionInfoTable.h"
#include "klee/Config/Version.h"

#include "llvm/Analysis/ValueTracking.h"
Expand Down
2 changes: 1 addition & 1 deletion lib/Module/InstructionOperandTypeCheckPass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===//
#include "Passes.h"
#include "klee/Config/Version.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Support/ErrorHandling.h"
#include "llvm/Support/raw_ostream.h"

using namespace llvm;
Expand Down
2 changes: 1 addition & 1 deletion lib/Module/KInstruction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//

#include "klee/Internal/Module/KInstruction.h"
#include "klee/Module/KInstruction.h"
#include <string>

using namespace llvm;
Expand Down
14 changes: 7 additions & 7 deletions lib/Module/KModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
#include "Passes.h"

#include "klee/Config/Version.h"
#include "klee/Internal/Module/Cell.h"
#include "klee/Internal/Module/InstructionInfoTable.h"
#include "klee/Internal/Module/KInstruction.h"
#include "klee/Internal/Module/KModule.h"
#include "klee/Internal/Support/Debug.h"
#include "klee/Internal/Support/ErrorHandling.h"
#include "klee/Internal/Support/ModuleUtil.h"
#include "klee/Module/Cell.h"
#include "klee/Module/InstructionInfoTable.h"
#include "klee/Module/KInstruction.h"
#include "klee/Module/KModule.h"
#include "klee/Support/Debug.h"
#include "klee/Support/ErrorHandling.h"
#include "klee/Support/ModuleUtil.h"
#include "klee/Interpreter.h"
#include "klee/OptionCategories.h"

Expand Down
Loading

0 comments on commit 7d85ee8

Please sign in to comment.