Age | Commit message (Expand) | Author |
2007-10-10 | resolve a fixme, by moving __builtin_va_list to a more logical | Chris Lattner |
2007-10-09 | Add a dummy for the id typedef. Steve, plz fill this in. :) | Chris Lattner |
2007-10-09 | Make a significant change to invert the control flow handling | Chris Lattner |
2007-10-09 | Switch lexer/pp over to new Token::is/isNot api | Chris Lattner |
2007-10-07 | move IdentifierTable.h from liblex to libbasic. | Chris Lattner |
2007-10-07 | implement the Token class in the Lexer.cpp file instead of IdentifierInfo.cpp | Chris Lattner |
2007-10-07 | improve layering: | Chris Lattner |
2007-10-07 | change calls to getMacroInfo into hasMacroDefinition() where possible. | Chris Lattner |
2007-10-07 | add a hasMacroDefinition() method to IdentifierInfo, strength reduce a | Chris Lattner |
2007-10-07 | Remove the PPID bitfield from IdentifierInfo, shrinking it by a word | Chris Lattner |
2007-10-07 | First step to fixing a long lived layering violation: this | Chris Lattner |
2007-10-07 | simplify the interfaces to create selectors: getSelector can take any | Chris Lattner |
2007-10-07 | simplify some Selector interfaces. | Chris Lattner |
2007-10-05 | Implement DenseMapInfo for Selector, allowing use of DenseMap/DenseSet of | Chris Lattner |
2007-10-05 | Layering refinements for selectors (suggested by Chris). Specifics... | Steve Naroff |
2007-09-28 | Add some comments to MultiKeywordSelector, make all methods private, add a fr... | Steve Naroff |
2007-09-28 | Yesterday I discovered that 78% of all selectors in "Cocoa.h" take 0/1 argument. | Steve Naroff |
2007-09-27 | Fix bug in SelectorInfo::getName() - method buffer needs to be passed by refe... | Steve Naroff |
2007-09-27 | Add SelectorInfo (similar in spirit to IdentifierInfo). The key difference is... | Steve Naroff |
2007-09-24 | If we see an invalid #ifdef directive, enter a conditional compilation region | Chris Lattner |
2007-09-22 | work around bugs and missing features in apfloat. | Chris Lattner |
2007-09-22 | Use APFloat for the representation of FP immediates, ask the target | Chris Lattner |
2007-09-19 | Remove SelectorTable/SelectorInfo, simply store all selectors in the central ... | Steve Naroff |
2007-09-17 | Add support for ObjC keyword selectors. | Steve Naroff |
2007-09-04 | Silence VC++ warnings, patch by Hartmut Kaiser | Chris Lattner |
2007-09-03 | Add #include required on win32. | Chris Lattner |
2007-09-03 | Eliminate some VC++ warnings, patch by Hartmut Kaiser! | Chris Lattner |
2007-08-29 | Spaces not tabs. | Neil Booth |
2007-08-29 | Ensure we diagnose long long literals in C90 mode. | Neil Booth |
2007-08-26 | 1.0 is double, 1.0F is a float. | Chris Lattner |
2007-08-26 | 1) refactor some code. | Chris Lattner |
2007-08-23 | Add helper functions Token::isObjCAtKeyword() and Token::getObjCKeywordID(). | Steve Naroff |
2007-08-23 | Update to match the API from LLVM mainline. | Chris Lattner |
2007-07-24 | Use a smallstring instead of an std::string in FileChanged to avoid some mall... | Chris Lattner |
2007-07-23 | Fix a scoping bug that apple gcc doesn't catch for some reason. | Chris Lattner |
2007-07-23 | implement a missing feature in the #include handler, where | Chris Lattner |
2007-07-23 | refactor the interface to Preprocessor::GetIncludeFilenameSpelling, | Chris Lattner |
2007-07-22 | fix a bug getting the spelling of an identifier token | Chris Lattner |
2007-07-22 | Change hte lexer to start a start pointer to the underlying | Chris Lattner |
2007-07-22 | split the slow path out of Lexer::getSourceLocation and do not let the | Chris Lattner |
2007-07-22 | Implement a simple cache in headersearch. This speeds up | Chris Lattner |
2007-07-22 | avoid recursion between SkipBCPLComment and SkipWhitespace. In cases like this: | Chris Lattner |
2007-07-22 | Fix a really subtle bug in the macro expander caching code, where | Chris Lattner |
2007-07-21 | Fix a lexer bug where we incorrectly rejected | Chris Lattner |
2007-07-20 | At one point there were going to be lexer and parser tokens. | Chris Lattner |
2007-07-20 | simplify the lexer ctor to take a SLoc instead of a sloc and a redundant buff... | Chris Lattner |
2007-07-20 | Reimplement SourceLocation. Instead of having a | Chris Lattner |
2007-07-19 | Fix a stringizing bug that Neil noticed. We should preprocess this: | Chris Lattner |
2007-07-19 | Make sure to initialize an ivar, patch by Benoit Boissinot. | Chris Lattner |
2007-07-19 | Correctly respect C99 5.1.1.2p4 when searching for the first '(' of | Chris Lattner |