You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm
bindings
cmake
docs
examples
include
lib
projects
resources
runtimes
scripts
test
tools
bugpoint
bugpoint-passes
dsymutil
gold
llc
lli
llvm-ar
llvm-as
llvm-as-fuzzer
llvm-bcanalyzer
llvm-c-test
llvm-cat
llvm-cfi-verify
llvm-config
llvm-cov
llvm-cvtres
llvm-cxxdump
llvm-cxxfilt
llvm-demangle-fuzzer
llvm-diff
CMakeLists.txt
DiffConsumer.cpp
DiffConsumer.h
DiffLog.cpp
DiffLog.h
DifferenceEngine.cpp
DifferenceEngine.h
LLVMBuild.txt
llvm-diff.cpp
llvm-dis
llvm-dwarfdump
llvm-dwp
llvm-extract
llvm-go
llvm-isel-fuzzer
llvm-jitlistener
llvm-link
llvm-lto
llvm-lto2
llvm-mc
llvm-mc-assemble-fuzzer
llvm-mc-disassemble-fuzzer
llvm-mcmarkup
llvm-modextract
llvm-mt
llvm-nm
llvm-objcopy
llvm-objdump
llvm-opt-fuzzer
llvm-opt-report
llvm-pdbutil
llvm-profdata
llvm-rc
llvm-readobj
llvm-rtdyld
llvm-shlib
llvm-size
llvm-special-case-list-fuzzer
llvm-split
llvm-stress
llvm-strings
llvm-symbolizer
llvm-xray
lto
msbuild
obj2yaml
opt
opt-viewer
sancov
sanstats
verify-uselistorder
xcode-toolchain
yaml2obj
CMakeLists.txt
LLVMBuild.txt
unittests
utils
.arcconfig
.clang-format
.clang-tidy
.gitattributes
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
CREDITS.TXT
LICENSE.TXT
LLVMBuild.txt
README.txt
RELEASE_TESTERS.TXT
configure
llvm.spec.in
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
libgc
llvm
m4
man
mcs
mk
mono
msvc
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
91 lines
2.4 KiB
C
91 lines
2.4 KiB
C
![]() |
//===-- 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
|