summaryrefslogtreecommitdiffstats
path: root/clang/lib/Basic
Commit message (Collapse)AuthorAgeFilesLines
* Implement support for -w, which silences all warnings. PR2384.Chris Lattner2008-05-291-4/+9
| | | | llvm-svn: 51683
* Make sure to define __sparc__ on Solaris; this should "fix" Eli Friedman2008-05-251-0/+1
| | | | | | test/Codegen/mandel.c on Solaris. :-) llvm-svn: 51554
* Missed an include.Eli Friedman2008-05-201-0/+1
| | | | llvm-svn: 51321
* Minor correction for PPC targets.Eli Friedman2008-05-201-1/+4
| | | | llvm-svn: 51320
* Some small changes to make the target info a bit more accurate.Eli Friedman2008-05-202-11/+30
| | | | llvm-svn: 51319
* set long/pointers to 64-bits on ppc64/x86-64Chris Lattner2008-05-091-2/+6
| | | | llvm-svn: 50891
* parameterize pointer size/align better without doing virtual method calls in ↵Chris Lattner2008-05-092-4/+3
| | | | | | normal case. llvm-svn: 50890
* parameterize long long.Chris Lattner2008-05-091-1/+2
| | | | llvm-svn: 50887
* correctly parameterize long, patch by Nate.Chris Lattner2008-05-091-0/+1
| | | | llvm-svn: 50886
* Add basic support for the pic-* target triples and add support forChris Lattner2008-05-082-0/+34
| | | | | | | | | targets that do not support recursion (and thus codegen stack variables as globals). Patch contributed by Alireza Moshtaghi! llvm-svn: 50844
* Add -fobjc-gc and -fobjc-gc-only options to the driver.Ted Kremenek2008-04-291-1/+3
| | | | | | Add corresponding enum in LangOptions. llvm-svn: 50387
* Have ValidateOutputConstraint return false instead of firing an assertionTed Kremenek2008-04-241-2/+2
| | | | | | | when processing a constraint we don't understand. This allows the frontend to gracefully fail. llvm-svn: 50213
* Add some basic ARM asm constraintsNate Begeman2008-04-221-1/+10
| | | | llvm-svn: 50085
* Fix pasto, thanks to Anders for pointing this out.Chris Lattner2008-04-211-1/+1
| | | | llvm-svn: 50055
* add arm supportChris Lattner2008-04-211-0/+132
| | | | llvm-svn: 50049
* Tabs -> spacesNate Begeman2008-04-181-2/+2
| | | | llvm-svn: 49909
* Initialize default double width and alignmentNate Begeman2008-04-181-0/+2
| | | | llvm-svn: 49899
* Fix regression in Diagnostic that caused it to not register the numberTed Kremenek2008-04-141-2/+3
| | | | | | of errors. llvm-svn: 49686
* Added "getCanonicalID()", "isFromSameFile", and "isFromMainFile" to compareTed Kremenek2008-04-141-0/+4
| | | | | | | | the files of different SourceLocations. These methods correctly handle the case where a file may have multiple FileIDs due to it being large enough to be spread across several chunks. llvm-svn: 49682
* Only increment the number of diagnostics when the DiagnosticClient usedTed Kremenek2008-04-141-2/+6
| | | | | | is the one attached to the Diagnostic object. llvm-svn: 49677
* add a missing #includeChris Lattner2008-04-061-0/+1
| | | | llvm-svn: 49256
* Added "getLogicalLineNumber" and "getLogicalColumnNumber" to FullSourceLoc.Ted Kremenek2008-04-031-2/+13
| | | | llvm-svn: 49177
* Update to match simplified llvm MemoryBuffer interfaces for files.Chris Lattner2008-04-011-2/+1
| | | | llvm-svn: 49042
* prune dead #includesChris Lattner2008-04-011-2/+0
| | | | llvm-svn: 49033
* MemoryBuffer::getFile got smarter, obviating the need for readfilefast.Chris Lattner2008-04-011-60/+3
| | | | | | | The new MemoryBuffer doesn't "leak" file descriptors and handles the small file case efficiently. llvm-svn: 49032
* Hack ReadFileFast() to raise the threshold of memory mapped files (from ↵Steve Naroff2008-03-311-1/+1
| | | | | | | | | | 4->12 pages). This is a temporary solution to avoid running out of file descriptors (which defaults to 256). Need to benchmark to understand the speed benefit. If the benefit is small, the simple solution is to avoid memory mapping files. If the benefit is significant, more thought is necessary. llvm-svn: 48991
* Added variation of the "Report" method in the class Diagnostic that takesTed Kremenek2008-03-311-3/+7
| | | | | | | an optional DiagnosticClient argument that differs from the client stored internally in the Diagnostic object. llvm-svn: 48986
* Make a major restructuring of the clang tree: introduce a top-levelChris Lattner2008-03-1510-0/+2787
lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. llvm-svn: 48402
OpenPOWER on IntegriCloud