summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* A lot of formatting changes.Bill Wendling2009-04-052-1107/+1472
| | | | llvm-svn: 68431
* fix rdar://6757323, where an escaped newline in a // commentChris Lattner2009-04-052-0/+14
| | | | | | was causing the char after the newline to get eaten. llvm-svn: 68430
* CMake: Added notes pointing to the LLVM CMake documentation.Oscar Fuentes2009-04-042-0/+3
| | | | llvm-svn: 68429
* CMake: defines and uses macro add_llvm_definitions for keeping trackOscar Fuentes2009-04-044-12/+35
| | | | | | | | | | | | of compiler parameters explicitly added by the build specification. This macro replaces the cmake built-in `add_definitions'. Detects glibc and defines _GNU_SOURCE accordingly. Resolves bug 3882. llvm-svn: 68428
* Fix some HTML validation errors.Bill Wendling2009-04-041-9/+11
| | | | llvm-svn: 68427
* General clean-up of the bitcode format documentation. Having the paragraphsBill Wendling2009-04-041-150/+207
| | | | | | formatted the same, putting words in <tt> tags, adding &mdash;s, etc. llvm-svn: 68426
* Add some basic support for generating C++ member functions.Anders Carlsson2009-04-044-13/+60
| | | | llvm-svn: 68425
* Extend possible handled regparm(N) valueAnton Korobeynikov2009-04-041-1/+1
| | | | llvm-svn: 68424
* Try SSE2?Nick Lewycky2009-04-041-1/+1
| | | | llvm-svn: 68423
* CloneModule stores the BasicBlock mapping in ValueMap. There's no need toNick Lewycky2009-04-041-17/+6
| | | | | | recompute it. This fixes a O(n^2) in number of blocks when reducing a crash. llvm-svn: 68422
* Remove bogus include.Nick Lewycky2009-04-041-1/+0
| | | | llvm-svn: 68421
* Add support for embedded metadata to LLVM. This introduces two new types ofNick Lewycky2009-04-0417-9/+518
| | | | | | | | Constant, MDString and MDNode which can only be used by globals with a name that starts with "llvm." or as arguments to a function with the same naming restriction. llvm-svn: 68420
* Fix test on non-x86 platforms.Nick Lewycky2009-04-041-1/+1
| | | | llvm-svn: 68419
* Driver: Handle -dumpversion, this is used by some configurationDaniel Dunbar2009-04-042-1/+9
| | | | | | scripts. llvm-svn: 68418
* Driver: Handle properly calling dsymutil when source input isDaniel Dunbar2009-04-042-2/+18
| | | | | | | | | | | | | | | | preceeded by a linker input flag. - <rdar://problem/6757236> clang should make a dSYM when going straight from source to binary - This still matches gcc, but the right way to solve this would be to detect the situation we care about (we are compiling from source and linking in one step), instead of looking at the suffix of the input file. The Tool doesn't quite have enough information to do this yet, however. - Also, find the suffix correctly. llvm-svn: 68417
* Driver: Automatically suppress warnings for duplicate versions ofDaniel Dunbar2009-04-041-1/+21
| | | | | | flags which were used for something. llvm-svn: 68416
* Testcase for regparm codegenAnton Korobeynikov2009-04-041-0/+19
| | | | llvm-svn: 68415
* Basic support for regparm codegenAnton Korobeynikov2009-04-044-8/+23
| | | | llvm-svn: 68414
* Provide sema proper values of maximal number of arguments passed in registers.Anton Korobeynikov2009-04-034-9/+17
| | | | llvm-svn: 68413
* Add support for calling C++ member functions.Anders Carlsson2009-04-033-0/+45
| | | | llvm-svn: 68412
* Add a getFunctionInfo that takes a CXXMethodDecl.Anders Carlsson2009-04-032-0/+19
| | | | llvm-svn: 68411
* Driver: Add -Qunused-arguments option to suppress driver "unusedDaniel Dunbar2009-04-032-2/+5
| | | | | | arguments" warning. llvm-svn: 68410
* Real corener case of a method declared in a protocolFariborz Jahanian2009-04-032-2/+26
| | | | | | | | used in a class which declares a property of the same name. This should not result in an unimplemented method warning. llvm-svn: 68409
* Test commit access to LLVM with some minor narcissism.Stefanus Du Toit2009-04-031-0/+4
| | | | llvm-svn: 68408
* improve the string literal comparison warning to not call @encode's "string ↵Chris Lattner2009-04-033-3/+7
| | | | | | literals". llvm-svn: 68407
* Sentence-case bug type.Ted Kremenek2009-04-031-1/+1
| | | | llvm-svn: 68406
* Wrap some lines to fix indentation problems.Bob Wilson2009-04-031-30/+36
| | | | llvm-svn: 68405
* Fix some comments.Bob Wilson2009-04-031-5/+5
| | | | llvm-svn: 68404
* Driver: Explicitly ignore -fpch-preprocess when using clang, we don'tDaniel Dunbar2009-04-034-0/+22
| | | | | | need to do anything special to support this. llvm-svn: 68403
* Reduce Driver verbosity by suppressing unused warning about anotherDaniel Dunbar2009-04-031-0/+17
| | | | | | | | | | | | cluster of -W options. The list: -Waggregate-return -Wbad-function-cast -Wcast-qual -Wformat-security -Wformat=2 -Wformat -Wmissing-declarations -Wnewline-eof -Wno-parentheses -Wpacked -Wredundant-decls -Wshadow -Wsign-compare -Wstrict-overflow= -Wstrict-overflow -Wuninitialized -Wunknown-pragmas. llvm-svn: 68402
* Duplicate entry.Bill Wendling2009-04-031-10/+0
| | | | llvm-svn: 68401
* "This adds a getName() method to TargetRegisterClass, just like in ↵Chris Lattner2009-04-032-2/+9
| | | | | | | | | | TargetRegisterInfo. This makes debugging register classes a bit easier." Patch by Jakob Stoklund Olesen! llvm-svn: 68400
* "Add documentation about the fix for missing x86Chris Lattner2009-04-031-0/+10
| | | | | | | | target library in windows under the "Common problems" section." Patch by Stefanus Du Toit! llvm-svn: 68399
* Fix a TargetLowering optimization so that it doesn't duplicateDan Gohman2009-04-032-0/+17
| | | | | | loads when an input node has multiple uses. llvm-svn: 68398
* retain/release checker: don't track NSPanel until we have better reasoning aboutTed Kremenek2009-04-032-3/+9
| | | | | | the subtle ownership issues of such objects. llvm-svn: 68397
* Add fast path for raw_ostream output of strings.Daniel Dunbar2009-04-031-1/+11
| | | | | | | | | | | | | - Particularly nice for small constant strings, which get optimized down nicely. On a synthetic benchmark writing out "hello" in a loop, this is about 2x faster with gcc and 3x faster with llvm-gcc. llc on insn-attrtab.bc from 403.gcc is about .5% faster. - I tried for a fancier solution which wouldn't increase code size as much (by trying to match constant arrays), but can't quite make it fly. llvm-svn: 68396
* add fixit advice to an archiac ObjC issue.Chris Lattner2009-04-032-0/+9
| | | | llvm-svn: 68395
* Fix Clang on VC++, patch by Bixia Zheng!Chris Lattner2009-04-031-6/+16
| | | | llvm-svn: 68394
* fix some warnings on VC++, patch by John Thompson!Chris Lattner2009-04-032-3/+4
| | | | llvm-svn: 68391
* initialize an ivar.Chris Lattner2009-04-031-0/+2
| | | | llvm-svn: 68387
* CMake: tools/llvm-config/CMakeLists.txt: Use ! instead of comma asOscar Fuentes2009-04-031-7/+7
| | | | | | separator in sed scripts. Resolves Bug 3881. llvm-svn: 68385
* CMake: removed IA64AsmPrinter.cpp from lib/Target/IA64/CMakeLists.txtOscar Fuentes2009-04-031-1/+0
| | | | llvm-svn: 68384
* Separate MIPS asmprinterAnton Korobeynikov2009-04-035-3/+33
| | | | llvm-svn: 68383
* Fix target library nameAnton Korobeynikov2009-04-031-1/+1
| | | | llvm-svn: 68382
* Fix commentAnton Korobeynikov2009-04-031-1/+1
| | | | llvm-svn: 68381
* Move IA64 asmprinter to separate libraryAnton Korobeynikov2009-04-034-1/+32
| | | | llvm-svn: 68380
* Add a comment/FIXME so Eli can sleep better:-))Steve Naroff2009-04-031-0/+5
| | | | llvm-svn: 68379
* This is the first step to gradually remove the use of loc::SymbolVal. NowZhongxing Xu2009-04-035-21/+64
| | | | | | | | when creating symbolic values, we distinguish between location and non-location values. For location values, we create a symbolic region instead of a loc::SymbolVal. llvm-svn: 68373
* Do we have fixit advice for comments yet?Daniel Dunbar2009-04-031-3/+3
| | | | llvm-svn: 68372
* Ignore plus operands when looking up the operand number from a named ↵Anders Carlsson2009-04-032-4/+7
| | | | | | operand. This matches llvm-gcc and fixes PR3908. llvm-svn: 68371
OpenPOWER on IntegriCloud