llvm-6502/lib/AsmParser
Chris Lattner 58d74910c6 Reimplement the parameter attributes support, phase #1. hilights:
1. There is now a "PAListPtr" class, which is a smart pointer around
   the underlying uniqued parameter attribute list object, and manages
   its refcount.  It is now impossible to mess up the refcount.
2. PAListPtr is now the main interface to the underlying object, and
   the underlying object is now completely opaque.
3. Implementation details like SmallVector and FoldingSet are now no
   longer part of the interface.
4. You can create a PAListPtr with an arbitrary sequence of
   ParamAttrsWithIndex's, no need to make a SmallVector of a specific 
   size (you can just use an array or scalar or vector if you wish).
5. All the client code that had to check for a null pointer before
   dereferencing the pointer is simplified to just access the 
   PAListPtr directly.
6. The interfaces for adding attrs to a list and removing them is a
   bit simpler.

Phase #2 will rename some stuff (e.g. PAListPtr) and do other less 
invasive changes.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48289 91177308-0d34-0410-b5e6-96231b3b80d8
2008-03-12 17:45:29 +00:00
..
LLLexer.cpp Turn unwind_to into "unwinds to". 2008-03-10 02:20:00 +00:00
LLLexer.h Remove attribution from file headers, per discussion on llvmdev. 2007-12-29 20:36:04 +00:00
llvmAsmParser.cpp.cvs Reimplement the parameter attributes support, phase #1. hilights: 2008-03-12 17:45:29 +00:00
llvmAsmParser.h.cvs Reimplement the parameter attributes support, phase #1. hilights: 2008-03-12 17:45:29 +00:00
llvmAsmParser.y Reimplement the parameter attributes support, phase #1. hilights: 2008-03-12 17:45:29 +00:00
llvmAsmParser.y.cvs Reimplement the parameter attributes support, phase #1. hilights: 2008-03-12 17:45:29 +00:00
Makefile remove attribution from lib Makefiles. 2007-12-29 20:09:26 +00:00
Parser.cpp Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. 2008-02-20 11:08:44 +00:00
ParserInternals.h Forgot a file, goes with 47342. 2008-02-19 21:40:10 +00:00