OSDN Git Service

[YAML] Add support for non-printable characters
authorFrancis Visoiu Mistrih <francisvm@yahoo.com>
Mon, 18 Dec 2017 17:38:03 +0000 (17:38 +0000)
committerFrancis Visoiu Mistrih <francisvm@yahoo.com>
Mon, 18 Dec 2017 17:38:03 +0000 (17:38 +0000)
commit65ad22d969c8ddab46ce3661ca9eeec971c230e0
tree43dfcc69994866f39ff42817e6315ded2a00594b
parentd6be2143517ce73716e991b7d4ebe1ec431900d9
[YAML] Add support for non-printable characters

LLVM IR function names which disable mangling start with '\01'
(https://www.llvm.org/docs/LangRef.html#identifiers).

When an identifier like "\01@abc@" gets dumped to MIR, it is quoted, but
only with single quotes.

http://www.yaml.org/spec/1.2/spec.html#id2770814:

"The allowed character range explicitly excludes the C0 control block
allowed), the surrogate block #xD800-#xDFFF, #xFFFE, and #xFFFF."

http://www.yaml.org/spec/1.2/spec.html#id2776092:

"All non-printable characters must be escaped.
[...]
Note that escape sequences are only interpreted in double-quoted scalars."

This patch adds support for printing escaped non-printable characters
between double quotes if needed.

Should also fix PR31743.

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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@320996 91177308-0d34-0410-b5e6-96231b3b80d8
17 files changed:
docs/YamlIO.rst
include/llvm/CodeGen/MIRYamlMapping.h
include/llvm/ObjectYAML/CodeViewYAMLTypeHashing.h
include/llvm/ObjectYAML/CodeViewYAMLTypes.h
include/llvm/ObjectYAML/MachOYAML.h
include/llvm/ObjectYAML/YAML.h
include/llvm/Support/YAMLTraits.h
lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
lib/ObjectYAML/CodeViewYAMLSymbols.cpp
lib/ObjectYAML/CodeViewYAMLTypes.cpp
lib/ObjectYAML/MachOYAML.cpp
lib/Support/Statistic.cpp
lib/Support/Timer.cpp
lib/Support/YAMLTraits.cpp
test/CodeGen/MIR/X86/escape-function-name.ll [new file with mode: 0644]
tools/dsymutil/DebugMap.h
unittests/Support/YAMLIOTest.cpp