12
12
// ===----------------------------------------------------------------------===//
13
13
14
14
#include " llvm/Analysis/IRSimilarityIdentifier.h"
15
+ #include " llvm/ADT/ScopeExit.h"
15
16
#include " llvm/AsmParser/Parser.h"
16
17
#include " llvm/IR/LLVMContext.h"
17
18
#include " llvm/IR/Module.h"
22
23
using namespace llvm ;
23
24
using namespace IRSimilarity ;
24
25
26
+ extern llvm::cl::opt<bool > UseNewDbgInfoFormat;
27
+ extern cl::opt<cl::boolOrDefault> PreserveInputDbgFormat;
28
+ extern bool WriteNewDbgInfoFormatToBitcode;
29
+ extern cl::opt<bool > WriteNewDbgInfoFormat;
30
+
25
31
static std::unique_ptr<Module> makeLLVMModule (LLVMContext &Context,
26
32
StringRef ModuleStr) {
27
33
SMDiagnostic Err;
@@ -1306,19 +1312,18 @@ TEST(IRInstructionMapper, CallBrInstIllegal) {
1306
1312
ASSERT_GT (UnsignedVec[0 ], Mapper.IllegalInstrNumber );
1307
1313
}
1308
1314
1309
- // Checks that an debuginfo intrinsics are mapped to be invisible. Since they
1315
+ // Checks that an debuginfo records are mapped to be invisible. Since they
1310
1316
// do not semantically change the program, they can be recognized as similar.
1311
1317
TEST (IRInstructionMapper, DebugInfoInvisible) {
1312
1318
StringRef ModuleString = R"(
1313
1319
define i32 @f(i32 %a, i32 %b) {
1314
1320
then:
1315
- %0 = add i32 %a, %b
1316
- call void @llvm.dbg.value(metadata !0)
1317
- %1 = add i32 %a, %b
1321
+ %0 = add i32 %a, %b
1322
+ #dbg_value(i32 0, !0, !0, !0)
1323
+ %1 = add i32 %a, %b
1318
1324
ret i32 0
1319
1325
}
1320
1326
1321
- declare void @llvm.dbg.value(metadata)
1322
1327
!0 = distinct !{!"test\00", i32 10})" ;
1323
1328
LLVMContext Context;
1324
1329
std::unique_ptr<Module> M = makeLLVMModule (Context, ModuleString);
@@ -1914,19 +1919,19 @@ TEST(IRSimilarityCandidate, CheckRegionsDifferentTypes) {
1914
1919
ASSERT_FALSE (longSimCandCompare (InstrList));
1915
1920
}
1916
1921
1917
- // Check that debug instructions do not impact similarity. They are marked as
1922
+ // Check that debug records do not impact similarity. They are marked as
1918
1923
// invisible.
1919
1924
TEST (IRSimilarityCandidate, IdenticalWithDebug) {
1920
1925
StringRef ModuleString = R"(
1921
1926
define i32 @f(i32 %a, i32 %b) {
1922
1927
bb0:
1923
1928
%0 = add i32 %a, %b
1924
- call void @llvm.dbg.value(metadata !0)
1929
+ #dbg_value(i32 0, !0, !0, !0)
1925
1930
%1 = add i32 %b, %a
1926
1931
ret i32 0
1927
1932
bb1:
1928
1933
%2 = add i32 %a, %b
1929
- call void @llvm.dbg.value(metadata !1)
1934
+ #dbg_value(i32 1, !1, !1, !1)
1930
1935
%3 = add i32 %b, %a
1931
1936
ret i32 0
1932
1937
bb2:
@@ -1935,7 +1940,6 @@ TEST(IRSimilarityCandidate, IdenticalWithDebug) {
1935
1940
ret i32 0
1936
1941
}
1937
1942
1938
- declare void @llvm.dbg.value(metadata)
1939
1943
!0 = distinct !{!"test\00", i32 10}
1940
1944
!1 = distinct !{!"test\00", i32 11})" ;
1941
1945
LLVMContext Context;
0 commit comments