llvm-6502/lib/Bitcode/Writer
Gordon Henriksen 80a75bfae9 Adding a collector name attribute to Function in the IR. These
methods are new to Function:

  bool hasCollector() const;
  const std::string &getCollector() const;
  void setCollector(const std::string &);
  void clearCollector();

The assembly representation is as such:

  define void @f() gc "shadow-stack" { ...

The implementation uses an on-the-side table to map Functions to 
collector names, such that there is no overhead. A StringPool is 
further used to unique collector names, which are extremely
likely to be unique per process.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44769 91177308-0d34-0410-b5e6-96231b3b80d8
2007-12-10 03:18:06 +00:00
..
BitcodeWriter.cpp Adding a collector name attribute to Function in the IR. These 2007-12-10 03:18:06 +00:00
BitcodeWriterPass.cpp Add explicit keywords. 2007-11-19 15:30:20 +00:00
BitWriter.cpp Applying Anton's binmode fix to the other ofstream too. 2007-12-03 14:50:37 +00:00
Makefile Initial support for writing bitcode files. This currently only writes types, 2007-04-22 06:24:45 +00:00
Serialize.cpp Added typedef "SerializedPtrID" to represent the pointer handle written to disk 2007-11-08 19:50:46 +00:00
SerializeAPFloat.cpp Implemented generic serialization of APFloat. 2007-11-07 18:39:22 +00:00
SerializeAPInt.cpp Added serialization support for APInt. 2007-10-26 21:50:10 +00:00
ValueEnumerator.cpp Fix PR1146: parameter attributes are longer part of 2007-11-27 13:23:08 +00:00
ValueEnumerator.h Fix a nasty problem where we would miss enumeration of some types. This fixes 2007-05-06 08:35:19 +00:00