| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | AliasAnalysis wants sizes in address-units, not bits. | Dan Gohman | 2009-07-24 | 1 | -1/+1 | |
| | | | | | llvm-svn: 77009 | |||||
| * | Forgot this test earlier. | Evan Cheng | 2009-07-24 | 1 | -0/+29 | |
| | | | | | llvm-svn: 77007 | |||||
| * | Fix these tests. | Evan Cheng | 2009-07-24 | 2 | -2/+2 | |
| | | | | | llvm-svn: 77006 | |||||
| * | Fix assert assembling zero-argument constant GEP. | Eli Friedman | 2009-07-24 | 2 | -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 Cheng | 2009-07-24 | 1 | -1/+1 | |
| | | | | | llvm-svn: 77004 | |||||
| * | Template instantiation for static data members that are defined out-of-line. | Douglas Gregor | 2009-07-24 | 11 | -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 Jahanian | 2009-07-24 | 1 | -1/+2 | |
| | | | | | llvm-svn: 77001 | |||||
| * | More Sema check for constructor's member initializer along | Fariborz Jahanian | 2009-07-24 | 3 | -2/+19 | |
| | | | | | | | with type conversion to fix ir-gen crash. llvm-svn: 77000 | |||||
| * | fix some predicates | Chris Lattner | 2009-07-24 | 2 | -6/+5 | |
| | | | | | llvm-svn: 76999 | |||||
| * | In the "use of floating point variable as loop counter" check, check | Ted Kremenek | 2009-07-24 | 1 | -5/+7 | |
| | | | | | | | if the DeclRefExpr is a float, not just either argument. llvm-svn: 76998 | |||||
| * | change SectionKindForGlobal from being a public (and | Chris Lattner | 2009-07-24 | 2 | -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 Kremenek | 2009-07-24 | 1 | -0/+1 | |
| | | | | | llvm-svn: 76996 | |||||
| * | Disable my constant island pass optimization (to make use soimm more ↵ | Evan Cheng | 2009-07-24 | 2 | -4/+7 | |
| | | | | | | | effectively). It caused infinite looping on lencod. llvm-svn: 76995 | |||||
| * | Move insertps tests to sse41 combo test file, convert to filecheck | Eric Christopher | 2009-07-24 | 2 | -13/+31 | |
| | | | | | | | format and add an extract/insert test. llvm-svn: 76994 | |||||
| * | make SectionKindForGlobal target independent, and therefore non-virtual. | Chris Lattner | 2009-07-24 | 6 | -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 extra | Mike Stump | 2009-07-24 | 1 | -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 Cheng | 2009-07-24 | 1 | -2/+20 | |
| | | | | | | | bit in Thumb2 jumptable entries. We now pass Olden. llvm-svn: 76991 | |||||
| * | we already know the sectionkind when invoking SelectSectionForGlobal, | Chris Lattner | 2009-07-24 | 8 | -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 Lattner | 2009-07-24 | 4 | -22/+43 | |
| | | | | | | | hack. llvm-svn: 76989 | |||||
| * | Fix this condition I accidentally inverted. | Dan Gohman | 2009-07-24 | 1 | -1/+1 | |
| | | | | | llvm-svn: 76988 | |||||
| * | Add support for promoting SETCC operations. | Jakob Stoklund Olesen | 2009-07-24 | 5 | -15/+25 | |
| | | | | | llvm-svn: 76987 | |||||
| * | Make sure thumb2 jumptable entries are aligned. | Evan Cheng | 2009-07-24 | 3 | -15/+19 | |
| | | | | | llvm-svn: 76986 | |||||
| * | Fix a release build warning. | Anders Carlsson | 2009-07-24 | 1 | -1/+1 | |
| | | | | | llvm-svn: 76985 | |||||
| * | Clean up. | Evan Cheng | 2009-07-24 | 1 | -3/+1 | |
| | | | | | llvm-svn: 76984 | |||||
| * | Replace use of std::set with SmallPtrSet. | Evan Cheng | 2009-07-24 | 1 | -3/+5 | |
| | | | | | llvm-svn: 76983 | |||||
| * | Convert several more passes to use getAnalysisIfAvailable<TargetData>() | Dan Gohman | 2009-07-24 | 5 | -32/+33 | |
| | | | | | | | instead of getAnalysis<TargetData>(). llvm-svn: 76982 | |||||
| * | Add specific classes for Add, Sub, and Mul, for convenience. | Dan Gohman | 2009-07-24 | 1 | -0/+51 | |
| | | | | | llvm-svn: 76981 | |||||
| * | More work toward initialization of objects | Fariborz Jahanian | 2009-07-24 | 4 | -23/+35 | |
| | | | | | | | in constructors. llvm-svn: 76980 | |||||
| * | Allow front-end 'isa' access on object's of type 'id'. | Steve Naroff | 2009-07-24 | 11 | -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 Carlsson | 2009-07-24 | 2 | -4/+20 | |
| | | | | | | | maps for GC. llvm-svn: 76978 | |||||
| * | start refactoring pic16 section selection logic. | Chris Lattner | 2009-07-24 | 2 | -16/+13 | |
| | | | | | llvm-svn: 76977 | |||||
| * | move ELF-specific code into ELFTargetAsmInfo. | Chris Lattner | 2009-07-24 | 4 | -26/+40 | |
| | | | | | llvm-svn: 76976 | |||||
| * | tidy up | Chris Lattner | 2009-07-24 | 1 | -3/+4 | |
| | | | | | llvm-svn: 76975 | |||||
| * | split the ELF-specific section flag inference-from-name code out | Chris Lattner | 2009-07-24 | 1 | -25/+32 | |
| | | | | | | | into its own helper function. llvm-svn: 76974 | |||||
| * | make SectionFlagsForGlobal a private static function instead of a public | Chris Lattner | 2009-07-24 | 2 | -13/+6 | |
| | | | | | | | virtual one. llvm-svn: 76973 | |||||
| * | move a method up in the file, GV is always non-null, so remove a check. | Chris Lattner | 2009-07-24 | 1 | -61/+62 | |
| | | | | | llvm-svn: 76972 | |||||
| * | There is no need to pass the name into lib/Target/TargetAsmInfo.cpp | Chris Lattner | 2009-07-24 | 1 | -1/+1 | |
| | | | | | | | when we have a global with no section explicitly specified. llvm-svn: 76971 | |||||
| * | remove a use of SectionFlagsForGlobal. | Chris Lattner | 2009-07-24 | 1 | -3/+4 | |
| | | | | | llvm-svn: 76970 | |||||
| * | Check in a half finished new constant struct builder (Obviously not used yet). | Anders Carlsson | 2009-07-24 | 2 | -2/+148 | |
| | | | | | llvm-svn: 76969 | |||||
| * | Another getName -> getNameStr | Daniel Dunbar | 2009-07-24 | 1 | -1/+1 | |
| | | | | | llvm-svn: 76967 | |||||
| * | More move to raw_ostream. | Daniel Dunbar | 2009-07-24 | 1 | -4/+3 | |
| | | | | | llvm-svn: 76966 | |||||
| * | Move more to raw_ostream, provide support for writing MachineBasicBlock, | Daniel Dunbar | 2009-07-24 | 8 | -8/+67 | |
| | | | | | | | LiveInterval, etc to raw_ostream. llvm-svn: 76965 | |||||
| * | Move more to raw_ostream. | Daniel Dunbar | 2009-07-24 | 2 | -7/+8 | |
| | | | | | llvm-svn: 76964 | |||||
| * | Move to raw_ostream. | Daniel Dunbar | 2009-07-24 | 4 | -74/+77 | |
| | | | | | llvm-svn: 76963 | |||||
| * | Switch to getNameStr(). | Daniel Dunbar | 2009-07-24 | 12 | -36/+36 | |
| | | | | | llvm-svn: 76962 | |||||
| * | Allow llvm_report_error to accept a Twine. | Daniel Dunbar | 2009-07-24 | 2 | -3/+16 | |
| | | | | | llvm-svn: 76961 | |||||
| * | Remove unused member functions. | Eli Friedman | 2009-07-24 | 17 | -496/+0 | |
| | | | | | llvm-svn: 76960 | |||||
| * | Fix declaration of obc_enumerationMutation function, for GNU runtime. | Daniel Dunbar | 2009-07-24 | 2 | -8/+11 | |
| | | | | | llvm-svn: 76959 | |||||
| * | Fix constructor types | Daniel Dunbar | 2009-07-24 | 1 | -2/+2 | |
| | | | | | llvm-svn: 76958 | |||||
| * | Update CMake | Daniel Dunbar | 2009-07-24 | 1 | -0/+1 | |
| | | | | | llvm-svn: 76957 | |||||

