diff options
author | Philip Reames <listmail@philipreames.com> | 2016-01-19 03:57:18 +0000 |
---|---|---|
committer | Philip Reames <listmail@philipreames.com> | 2016-01-19 03:57:18 +0000 |
commit | 31955002975b5ae9e4130d0fbeb954bbeb0f95f0 (patch) | |
tree | 3e04060270c70ddd2ec9d4dc2062006ea8174940 /llvm/lib/CodeGen/ShadowStackGCLowering.cpp | |
parent | e708747129f89eb8ff4500f6284c420c63f77302 (diff) | |
download | bcm5719-llvm-31955002975b5ae9e4130d0fbeb954bbeb0f95f0.tar.gz bcm5719-llvm-31955002975b5ae9e4130d0fbeb954bbeb0f95f0.zip |
[GC] Consolidate all built in GCs into a single file [NFC]
Combine a bunch of small files into a single, still rather small, file. The primary purpose of this is to get all of the static initializers into a single file so as to have a well defined order of initialization.
llvm-svn: 258109
Diffstat (limited to 'llvm/lib/CodeGen/ShadowStackGCLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ShadowStackGCLowering.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/ShadowStackGCLowering.cpp b/llvm/lib/CodeGen/ShadowStackGCLowering.cpp index 878eeeed0f6..1efc440cd70 100644 --- a/llvm/lib/CodeGen/ShadowStackGCLowering.cpp +++ b/llvm/lib/CodeGen/ShadowStackGCLowering.cpp @@ -8,7 +8,11 @@ //===----------------------------------------------------------------------===// // // This file contains the custom lowering code required by the shadow-stack GC -// strategy. +// strategy. +// +// This pass implements the code transformation described in this paper: +// "Accurate Garbage Collection in an Uncooperative Environment" +// Fergus Henderson, ISMM, 2002 // //===----------------------------------------------------------------------===// |