summaryrefslogtreecommitdiffstats
path: root/llvm/lib/AsmParser/llvmAsmParser.cpp.cvs
Commit message (Collapse)AuthorAgeFilesLines
...
* Eliminate ConstantBool::True and ConstantBool::False. Instead, provideChris Lattner2006-09-281-3598/+2759
| | | | | | ConstantBool::getTrue() and ConstantBool::getFalse(). llvm-svn: 30665
* Fix PR902:Reid Spencer2006-09-281-1127/+1064
| | | | | | | | | | | | | | Errors are generated with the YYERROR macro which can only be called from a production (inside yyparse) because of the goto statement in the macro. This lead to several situations where GEN_ERROR was not called but GenerateError was used instead (because it doesn't use YYERROR). However, in such situations, catching the error much later (e.g. at the end of the production) is not sufficient because LLVM can assert on invalid data before the end of the production is reached. The solution is to ensure that the CHECK_FOR_ERROR macro (which invokes YYERROR if there's an error) is used as soon as possible after a call to GenerateError has been made. llvm-svn: 30650
* Added some eye-candy for Subtarget type checkingAnton Korobeynikov2006-09-171-1033/+1055
| | | | | | Added X86 StdCall & FastCall calling conventions. Codegen will follow. llvm-svn: 30446
* Small fixes for supporting dll* linkage typesAnton Korobeynikov2006-09-171-94/+93
| | | | llvm-svn: 30441
* Adding generated files for the last commitAnton Korobeynikov2006-09-141-2667/+3750
| | | | llvm-svn: 30375
* regenerateChris Lattner2006-08-181-3462/+2649
| | | | llvm-svn: 29771
* Add a comment about the mechanisms used to rid AsmParser of exceptions.Reid Spencer2006-08-181-211/+221
| | | | llvm-svn: 29769
* For PR797:Reid Spencer2006-08-181-2723/+3708
| | | | | | | | | | | | | Rid the Assembly Parser of exceptions. This is a really gross hack but it will do until the Assembly Parser is re-written as a recursive descent. The basic premise is that wherever the old "ThrowException" function was called (new name: GenerateError) we set a flag (TriggerError). Every production checks that flag and calls YYERROR if it is set. Additionally, each call to ThrowException in the grammar is replaced with GEN_ERROR which calls GenerateError and then YYERROR immediately. This prevents the remaining production from continuing after an error condition. llvm-svn: 29763
* fix typoChris Lattner2006-06-211-186/+186
| | | | llvm-svn: 28897
* RegenerateChris Lattner2006-05-191-938/+935
| | | | llvm-svn: 28407
* RegenerateChris Lattner2006-04-081-146/+135
| | | | llvm-svn: 27526
* regenerateChris Lattner2006-04-081-729/+767
| | | | llvm-svn: 27521
* regenerateChris Lattner2006-04-081-656/+664
| | | | llvm-svn: 27512
* RegenerateChris Lattner2006-03-041-183/+183
| | | | llvm-svn: 26522
* Convert this over to work with the new makefilesChris Lattner2006-02-151-0/+4249
llvm-svn: 26206
OpenPOWER on IntegriCloud