summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* AliasAnalysis wants sizes in address-units, not bits.Dan Gohman2009-07-241-1/+1
| | | | llvm-svn: 77009
* Forgot this test earlier.Evan Cheng2009-07-241-0/+29
| | | | llvm-svn: 77007
* Fix these tests.Evan Cheng2009-07-242-2/+2
| | | | llvm-svn: 77006
* Fix assert assembling zero-argument constant GEP.Eli Friedman2009-07-242-2/+8
| | | | | | | There's still a strict-aliasing violation here, but I don't feel like dealing with that right now... llvm-svn: 77005
* Uh. It would be useful to actually print the operand.Evan Cheng2009-07-241-1/+1
| | | | llvm-svn: 77004
* Template instantiation for static data members that are defined out-of-line.Douglas Gregor2009-07-2411-18/+255
| | | | | | | | Note that this also fixes a bug that affects non-template code, where we were not treating out-of-line static data members are "file-scope" variables, and therefore not checking their initializers. llvm-svn: 77002
* Fixes broken test by accident.Fariborz Jahanian2009-07-241-1/+2
| | | | llvm-svn: 77001
* More Sema check for constructor's member initializer along Fariborz Jahanian2009-07-243-2/+19
| | | | | | with type conversion to fix ir-gen crash. llvm-svn: 77000
* fix some predicatesChris Lattner2009-07-242-6/+5
| | | | llvm-svn: 76999
* In the "use of floating point variable as loop counter" check, checkTed Kremenek2009-07-241-5/+7
| | | | | | if the DeclRefExpr is a float, not just either argument. llvm-svn: 76998
* change SectionKindForGlobal from being a public (andChris Lattner2009-07-242-23/+9
| | | | | | | previously virtual) function to being a static function in the .cpp file. llvm-svn: 76997
* Have 'clang --analyze' run syntactic static analysis security checks.Ted Kremenek2009-07-241-0/+1
| | | | llvm-svn: 76996
* Disable my constant island pass optimization (to make use soimm more ↵Evan Cheng2009-07-242-4/+7
| | | | | | effectively). It caused infinite looping on lencod. llvm-svn: 76995
* Move insertps tests to sse41 combo test file, convert to filecheckEric Christopher2009-07-242-13/+31
| | | | | | format and add an extract/insert test. llvm-svn: 76994
* make SectionKindForGlobal target independent, and therefore non-virtual.Chris Lattner2009-07-246-54/+73
| | | | | | | | It's classifications now include elf-specific discriminators. Targets that don't have these features (like darwin and pecoff) simply treat data.rel like data, etc. llvm-svn: 76993
* Fix 80-col violations, reflow a few comments and zap some extraMike Stump2009-07-241-159/+158
| | | | | | whitespace at ends of lines. llvm-svn: 76992
* Add a workaround for Darwin assembler bug where it's not setting the thumb ↵Evan Cheng2009-07-241-2/+20
| | | | | | bit in Thumb2 jumptable entries. We now pass Olden. llvm-svn: 76991
* we already know the sectionkind when invoking SelectSectionForGlobal,Chris Lattner2009-07-248-17/+20
| | | | | | pass it in instead of recomputing it. llvm-svn: 76990
* make SectionForGlobal non-virtual, add a hook for pic16 to do its "address=" ↵Chris Lattner2009-07-244-22/+43
| | | | | | hack. llvm-svn: 76989
* Fix this condition I accidentally inverted.Dan Gohman2009-07-241-1/+1
| | | | llvm-svn: 76988
* Add support for promoting SETCC operations.Jakob Stoklund Olesen2009-07-245-15/+25
| | | | llvm-svn: 76987
* Make sure thumb2 jumptable entries are aligned.Evan Cheng2009-07-243-15/+19
| | | | llvm-svn: 76986
* Fix a release build warning.Anders Carlsson2009-07-241-1/+1
| | | | llvm-svn: 76985
* Clean up.Evan Cheng2009-07-241-3/+1
| | | | llvm-svn: 76984
* Replace use of std::set with SmallPtrSet.Evan Cheng2009-07-241-3/+5
| | | | llvm-svn: 76983
* Convert several more passes to use getAnalysisIfAvailable<TargetData>()Dan Gohman2009-07-245-32/+33
| | | | | | instead of getAnalysis<TargetData>(). llvm-svn: 76982
* Add specific classes for Add, Sub, and Mul, for convenience.Dan Gohman2009-07-241-0/+51
| | | | llvm-svn: 76981
* More work toward initialization of objectsFariborz Jahanian2009-07-244-23/+35
| | | | | | in constructors. llvm-svn: 76980
* Allow front-end 'isa' access on object's of type 'id'.Steve Naroff2009-07-2411-7/+117
| | | | | | | | Enhance test case to cover 'isa' access on interface types (clang produces an error, GCC produces a warning). Still need back-end CodeGen for ObjCIsaExpr. llvm-svn: 76979
* Don't use getLLVMFieldNo for bitfields when constructing the ivar layout ↵Anders Carlsson2009-07-242-4/+20
| | | | | | maps for GC. llvm-svn: 76978
* start refactoring pic16 section selection logic.Chris Lattner2009-07-242-16/+13
| | | | llvm-svn: 76977
* move ELF-specific code into ELFTargetAsmInfo.Chris Lattner2009-07-244-26/+40
| | | | llvm-svn: 76976
* tidy upChris Lattner2009-07-241-3/+4
| | | | llvm-svn: 76975
* split the ELF-specific section flag inference-from-name code outChris Lattner2009-07-241-25/+32
| | | | | | into its own helper function. llvm-svn: 76974
* make SectionFlagsForGlobal a private static function instead of a publicChris Lattner2009-07-242-13/+6
| | | | | | virtual one. llvm-svn: 76973
* move a method up in the file, GV is always non-null, so remove a check.Chris Lattner2009-07-241-61/+62
| | | | llvm-svn: 76972
* There is no need to pass the name into lib/Target/TargetAsmInfo.cppChris Lattner2009-07-241-1/+1
| | | | | | when we have a global with no section explicitly specified. llvm-svn: 76971
* remove a use of SectionFlagsForGlobal.Chris Lattner2009-07-241-3/+4
| | | | llvm-svn: 76970
* Check in a half finished new constant struct builder (Obviously not used yet).Anders Carlsson2009-07-242-2/+148
| | | | llvm-svn: 76969
* Another getName -> getNameStrDaniel Dunbar2009-07-241-1/+1
| | | | llvm-svn: 76967
* More move to raw_ostream.Daniel Dunbar2009-07-241-4/+3
| | | | llvm-svn: 76966
* Move more to raw_ostream, provide support for writing MachineBasicBlock,Daniel Dunbar2009-07-248-8/+67
| | | | | | LiveInterval, etc to raw_ostream. llvm-svn: 76965
* Move more to raw_ostream.Daniel Dunbar2009-07-242-7/+8
| | | | llvm-svn: 76964
* Move to raw_ostream.Daniel Dunbar2009-07-244-74/+77
| | | | llvm-svn: 76963
* Switch to getNameStr().Daniel Dunbar2009-07-2412-36/+36
| | | | llvm-svn: 76962
* Allow llvm_report_error to accept a Twine.Daniel Dunbar2009-07-242-3/+16
| | | | llvm-svn: 76961
* Remove unused member functions.Eli Friedman2009-07-2417-496/+0
| | | | llvm-svn: 76960
* Fix declaration of obc_enumerationMutation function, for GNU runtime.Daniel Dunbar2009-07-242-8/+11
| | | | llvm-svn: 76959
* Fix constructor typesDaniel Dunbar2009-07-241-2/+2
| | | | llvm-svn: 76958
* Update CMakeDaniel Dunbar2009-07-241-0/+1
| | | | llvm-svn: 76957
OpenPOWER on IntegriCloud