summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/tools/llvm-diff/DifferenceEngine.h
diff options
context:
space:
mode:
authorpatrick <patrick@openbsd.org>2020-08-03 15:06:44 +0000
committerpatrick <patrick@openbsd.org>2020-08-03 15:06:44 +0000
commitb64793999546ed8adebaeebd9d8345d18db8927d (patch)
tree4357c27b561d73b0e089727c6ed659f2ceff5f47 /gnu/llvm/tools/llvm-diff/DifferenceEngine.h
parentAdd support for UTF-8 DISPLAY-HINTs with octet length. For now only (diff)
downloadwireguard-openbsd-b64793999546ed8adebaeebd9d8345d18db8927d.tar.xz
wireguard-openbsd-b64793999546ed8adebaeebd9d8345d18db8927d.zip
Remove LLVM 8.0.1 files.
Diffstat (limited to 'gnu/llvm/tools/llvm-diff/DifferenceEngine.h')
-rw-r--r--gnu/llvm/tools/llvm-diff/DifferenceEngine.h90
1 files changed, 0 insertions, 90 deletions
diff --git a/gnu/llvm/tools/llvm-diff/DifferenceEngine.h b/gnu/llvm/tools/llvm-diff/DifferenceEngine.h
deleted file mode 100644
index 7f084a377f0..00000000000
--- a/gnu/llvm/tools/llvm-diff/DifferenceEngine.h
+++ /dev/null
@@ -1,90 +0,0 @@
-//===-- DifferenceEngine.h - Module comparator ------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This header defines the interface to the LLVM difference engine,
-// which structurally compares functions within a module.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_TOOLS_LLVM_DIFF_DIFFERENCEENGINE_H
-#define LLVM_TOOLS_LLVM_DIFF_DIFFERENCEENGINE_H
-
-#include "DiffConsumer.h"
-#include "DiffLog.h"
-#include "llvm/ADT/StringRef.h"
-#include <utility>
-
-namespace llvm {
- class Function;
- class GlobalValue;
- class Instruction;
- class LLVMContext;
- class Module;
- class Twine;
- class Value;
-
- /// A class for performing structural comparisons of LLVM assembly.
- class DifferenceEngine {
- public:
- /// A RAII object for recording the current context.
- struct Context {
- Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) {
- Engine.consumer.enterContext(L, R);
- }
-
- ~Context() {
- Engine.consumer.exitContext();
- }
-
- private:
- DifferenceEngine &Engine;
- };
-
- /// An oracle for answering whether two values are equivalent as
- /// operands.
- class Oracle {
- virtual void anchor();
- public:
- virtual bool operator()(Value *L, Value *R) = 0;
-
- protected:
- virtual ~Oracle() {}
- };
-
- DifferenceEngine(Consumer &consumer)
- : consumer(consumer), globalValueOracle(nullptr) {}
-
- void diff(Module *L, Module *R);
- void diff(Function *L, Function *R);
- void log(StringRef text) {
- consumer.log(text);
- }
- LogBuilder logf(StringRef text) {
- return LogBuilder(consumer, text);
- }
- Consumer& getConsumer() const { return consumer; }
-
- /// Installs an oracle to decide whether two global values are
- /// equivalent as operands. Without an oracle, global values are
- /// considered equivalent as operands precisely when they have the
- /// same name.
- void setGlobalValueOracle(Oracle *oracle) {
- globalValueOracle = oracle;
- }
-
- /// Determines whether two global values are equivalent.
- bool equivalentAsOperands(GlobalValue *L, GlobalValue *R);
-
- private:
- Consumer &consumer;
- Oracle *globalValueOracle;
- };
-}
-
-#endif