OSDN Git Service

[Remarks] Add string deduplication using a string table
authorFrancis Visoiu Mistrih <francisvm@yahoo.com>
Wed, 24 Apr 2019 00:06:24 +0000 (00:06 +0000)
committerFrancis Visoiu Mistrih <francisvm@yahoo.com>
Wed, 24 Apr 2019 00:06:24 +0000 (00:06 +0000)
commit04dcbb51652e903a9fb1fde6d7830584d59fe44f
treee27030564a1499fffc85b79f59bafb7d536a8230
parent07bbdf45645b1b87713931d851c7547a47d834b7
[Remarks] Add string deduplication using a string table

* Add support for uniquing strings in the remark streamer and emitting the string table in the remarks section.

* Add parsing support for the string table in the RemarkParser.

From this remark:

```
--- !Missed
Pass:     inline
Name:     NoDefinition
DebugLoc: { File: 'test-suite/SingleSource/UnitTests/2002-04-17-PrintfChar.c',
            Line: 7, Column: 3 }
Function: printArgsNoRet
Args:
  - Callee:   printf
  - String:   ' will not be inlined into '
  - Caller:   printArgsNoRet
    DebugLoc: { File: 'test-suite/SingleSource/UnitTests/2002-04-17-PrintfChar.c',
                Line: 6, Column: 0 }
  - String:   ' because its definition is unavailable'
...
```

to:

```
--- !Missed
Pass: 0
Name: 1
DebugLoc: { File: 3, Line: 7, Column: 3 }
Function: 2
Args:
  - Callee:   4
  - String:   5
  - Caller:   2
    DebugLoc: { File: 3, Line: 6, Column: 0 }
  - String:   6
...
```

And the string table in the .remarks/__remarks section containing:

```
inline\0NoDefinition\0printArgsNoRet\0
test-suite/SingleSource/UnitTests/2002-04-17-PrintfChar.c\0printf\0
will not be inlined into \0 because its definition is unavailable\0
```

This is mostly supposed to be used for testing purposes, but it gives us
a 2x reduction in the remark size, and is an incremental change for the
updates to the remarks file format.

Differential Revision: https://reviews.llvm.org/D60227

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359050 91177308-0d34-0410-b5e6-96231b3b80d8
19 files changed:
docs/CodeGenerator.rst
include/llvm/IR/RemarkStreamer.h
include/llvm/Remarks/RemarkParser.h
include/llvm/Remarks/RemarkStringTable.h [new file with mode: 0644]
include/llvm/Support/YAMLTraits.h
lib/CodeGen/AsmPrinter/AsmPrinter.cpp
lib/CodeGen/AsmPrinter/LLVMBuild.txt
lib/IR/DiagnosticInfo.cpp
lib/IR/LLVMBuild.txt
lib/IR/RemarkStreamer.cpp
lib/Remarks/CMakeLists.txt
lib/Remarks/RemarkParser.cpp
lib/Remarks/RemarkStringTable.cpp [new file with mode: 0644]
lib/Remarks/YAMLRemarkParser.cpp
lib/Remarks/YAMLRemarkParser.h
test/CodeGen/X86/remarks-section.ll
unittests/Remarks/CMakeLists.txt
unittests/Remarks/RemarksStrTabParsingTest.cpp [new file with mode: 0644]
unittests/Remarks/YAMLRemarksParsingTest.cpp