summaryrefslogtreecommitdiffstats
path: root/llvm/lib/AsmParser/llvmAsmParser.h.cvs
Commit message (Collapse)AuthorAgeFilesLines
* Apply feedback from previous patch.Dale Johannesen2007-09-071-335/+145
| | | | llvm-svn: 41774
* Next round of APFloat changes.Dale Johannesen2007-09-061-1/+1
| | | | | | | | | | | | | | Use APFloat in UpgradeParser and AsmParser. Change all references to ConstantFP to use the APFloat interface rather than double. Remove the ConstantFP double interfaces. Use APFloat functions for constant folding arithmetic and comparisons. (There are still way too many places APFloat is just a wrapper around host float/double, but we're getting there.) llvm-svn: 41747
* Update generated files.David Greene2007-09-041-145/+335
| | | | llvm-svn: 41706
* regenerateChris Lattner2007-08-061-347/+146
| | | | llvm-svn: 40875
* Regenerating.Chandler Carruth2007-08-041-146/+347
| | | | llvm-svn: 40808
* Long double, part 1 of N. Support in IR.Dale Johannesen2007-08-031-329/+145
| | | | llvm-svn: 40774
* Update generated files.David Greene2007-08-011-8/+7
| | | | llvm-svn: 40663
* Regenerate.Reid Spencer2007-07-311-138/+330
| | | | llvm-svn: 40611
* update the .cvs filesChris Lattner2007-07-051-320/+138
| | | | llvm-svn: 37918
* Regenerate.Reid Spencer2007-05-221-3/+3
| | | | llvm-svn: 37292
* RegenerateReid Spencer2007-05-191-136/+320
| | | | llvm-svn: 37258
* regenerateChris Lattner2007-05-041-329/+137
| | | | llvm-svn: 36740
* RegenerateAnton Korobeynikov2007-04-291-22/+33
| | | | llvm-svn: 36566
* Fix MemoryBuffer breakage correctly.Jeff Cohen2007-04-291-14/+15
| | | | llvm-svn: 36561
* Regenerate.Reid Spencer2007-04-281-25/+15
| | | | llvm-svn: 36543
* RegenerateAnton Korobeynikov2007-04-281-136/+327
| | | | llvm-svn: 36538
* regenChris Lattner2007-04-261-327/+136
| | | | llvm-svn: 36470
* RegenerateAnton Korobeynikov2007-04-251-135/+327
| | | | llvm-svn: 36437
* RegeneratedChristopher Lamb2007-04-221-314/+134
| | | | llvm-svn: 36350
* Revert Christopher Lamb's load/store alignment changes.Reid Spencer2007-04-211-134/+314
| | | | llvm-svn: 36309
* add support for alignment attributes on load/store instructionsChristopher Lamb2007-04-211-314/+134
| | | | llvm-svn: 36301
* Regenerate.Reid Spencer2007-04-161-25/+15
| | | | llvm-svn: 36122
* Implement the "thread_local" keyword.Lauro Ramos Venancio2007-04-121-219/+231
| | | | llvm-svn: 35950
* RegenerateReid Spencer2007-04-091-2/+2
| | | | llvm-svn: 35813
* RegenerateReid Spencer2007-04-091-230/+228
| | | | llvm-svn: 35795
* Regenerate.Reid Spencer2007-03-291-2/+2
| | | | llvm-svn: 35473
* Regenerate.Reid Spencer2007-03-281-2/+2
| | | | llvm-svn: 35411
* Regenerate.Reid Spencer2007-03-221-5/+7
| | | | llvm-svn: 35259
* Regenerate.Reid Spencer2007-03-201-1/+1
| | | | llvm-svn: 35199
* Regenerate.Reid Spencer2007-03-191-1/+1
| | | | llvm-svn: 35174
* Regenerate.Reid Spencer2007-02-281-131/+313
| | | | llvm-svn: 34716
* remove dead methodsChris Lattner2007-02-191-308/+131
| | | | llvm-svn: 34419
* For PR1195:Reid Spencer2007-02-151-131/+308
| | | | | | | Rename PackedType -> VectorType, ConstantPacked -> ConstantVector, and PackedTyID -> VectorTyID. No functional changes. llvm-svn: 34293
* eliminate use of vector ctorsChris Lattner2007-02-131-319/+132
| | | | llvm-svn: 34221
* regenerateChris Lattner2007-02-131-132/+319
| | | | llvm-svn: 34212
* regenerateChris Lattner2007-02-111-308/+131
| | | | llvm-svn: 34188
* For PR411:Reid Spencer2007-02-051-1/+1
| | | | | | | | | | This patch replaces the SymbolTable class with ValueSymbolTable which does not support types planes. This means that all symbol names in LLVM must now be unique. The patch addresses the necessary changes to deal with this and removes code no longer needed as a result. This completes the bulk of the changes for this PR. Some cleanup patches will follow. llvm-svn: 33918
* Changes to support making the shift instructions be true BinaryOperators.Reid Spencer2007-02-021-131/+308
| | | | | | | | | | | | This feature is needed in order to support shifts of more than 255 bits on large integer types. This changes the syntax for llvm assembly to make shl, ashr and lshr instructions look like a binary operator: shl i32 %X, 1 instead of shl i32 %X, i8 1 Additionally, this should help a few passes perform additional optimizations. llvm-svn: 33776
* regenerateChris Lattner2007-01-311-308/+131
| | | | llvm-svn: 33696
* For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoidReid Spencer2007-01-301-25/+15
| | | | | | confusion with external linkage types. llvm-svn: 33663
* RegenerateAnton Korobeynikov2007-01-281-167/+179
| | | | llvm-svn: 33599
* Regenerate for PR645 and PR761Reid Spencer2007-01-261-258/+252
| | | | llvm-svn: 33525
* Fix this error:Jeff Cohen2007-01-211-14/+15
| | | | | | | | llvm[2]: Compiling llvmAsmParser.cpp for Debug build /usr/home/jeffc/llvm/lib/AsmParser/llvmAsmParser.y: In function 'int llvmAsmparse()': /usr/home/jeffc/llvm/lib/AsmParser/llvmAsmParser.y:1846: error: expected `;' before '}' token llvm-svn: 33425
* Regenerate.Reid Spencer2007-01-171-132/+310
| | | | llvm-svn: 33284
* regenerateChris Lattner2007-01-151-310/+132
| | | | llvm-svn: 33224
* Regenerate.Reid Spencer2007-01-131-275/+263
| | | | llvm-svn: 33182
* RegenerateAnton Korobeynikov2007-01-121-132/+324
| | | | llvm-svn: 33137
* regenerateChris Lattner2007-01-121-310/+131
| | | | llvm-svn: 33131
* For PR1064:Reid Spencer2007-01-121-254/+248
| | | | | | | | | | | | | | | | | | | | | | | Implement the arbitrary bit-width integer feature. The feature allows integers of any bitwidth (up to 64) to be defined instead of just 1, 8, 16, 32, and 64 bit integers. This change does several things: 1. Introduces a new Derived Type, IntegerType, to represent the number of bits in an integer. The Type classes SubclassData field is used to store the number of bits. This allows 2^23 bits in an integer type. 2. Removes the five integer Type::TypeID values for the 1, 8, 16, 32 and 64-bit integers. These are replaced with just IntegerType which is not a primitive any more. 3. Adjust the rest of LLVM to account for this change. Note that while this incremental change lays the foundation for arbitrary bit-width integers, LLVM has not yet been converted to actually deal with them in any significant way. Most optimization passes, for example, will still only deal with the byte-width integer types. Future increments will rectify this situation. llvm-svn: 33113
* Rename BoolTy as Int1Ty. Patch by Sheng Zhou.Reid Spencer2007-01-111-1/+1
| | | | llvm-svn: 33076
OpenPOWER on IntegriCloud