| Commit message (Expand) | Author | Age | Files | Lines |
* | Add ArrayRef constructor from None, and do the cleanups that this constructor... | Dmitri Gribenko | 2013-05-05 | 1 | -2/+2 |
* | In MC asm parsing, account for the possibility of whitespace within | John McCall | 2013-05-03 | 1 | -18/+22 |
* | [ms-inline asm] Removed this unnecessary check. In the current implementation, | Chad Rosier | 2013-04-22 | 1 | -1/+1 |
* | [ms-inline asm] Add the OpDecl to the InlineAsmIdentifierInfo struct and in turn | Chad Rosier | 2013-04-22 | 1 | -13/+18 |
* | Fix unused variable warning. | Chad Rosier | 2013-04-22 | 1 | -1/+1 |
* | [ms-inline asm] Remove the identifier parsing logic from the AsmParser. This is | Chad Rosier | 2013-04-22 | 1 | -61/+55 |
* | [ms-inline asm] Refactor/clean up the SemaLookup interface. No functional | Chad Rosier | 2013-04-22 | 1 | -34/+23 |
* | [ms-inline asm] Make code layout more canonical with iniline asm handled last. | Chad Rosier | 2013-04-19 | 1 | -13/+13 |
* | [ms-inline asm] Refactor the parsing of identifiers. No functional change | Chad Rosier | 2013-04-19 | 1 | -39/+33 |
* | [ms-inline asm] Remove these asserts. C++ variables that use namespace | Chad Rosier | 2013-04-19 | 1 | -2/+0 |
* | [ms-inline asm] Move this variable into the scope in which it is used. | Chad Rosier | 2013-04-19 | 1 | -1/+1 |
* | [ms-inline asm] Make this a hard error. | Chad Rosier | 2013-04-19 | 1 | -4/+4 |
* | [ms-inline asm] Cleanup the dot operator implementation. | Chad Rosier | 2013-04-19 | 1 | -29/+15 |
* | [ms-inline asm] Simplify some logic and add a FIXME for unhandled unary minus. | Chad Rosier | 2013-04-18 | 1 | -10/+13 |
* | Make this private method. | Chad Rosier | 2013-04-18 | 1 | -4/+4 |
* | [ms-inline asm] These should be int64_t, not uint64_t. | Chad Rosier | 2013-04-17 | 1 | -6/+6 |
* | [ms-inline asm] Add support for the minus unary operator. Previously, we were | Chad Rosier | 2013-04-17 | 1 | -72/+106 |
* | [ms-inline asm] Add support for parsing complex immediate expressions. Test | Chad Rosier | 2013-04-17 | 1 | -32/+51 |
* | Remove unused variable from previous refactor. | Chad Rosier | 2013-04-16 | 1 | -3/+0 |
* | [ms-inline asm] Refactor. No functional change intended. | Chad Rosier | 2013-04-16 | 1 | -405/+419 |
* | [ms-inline asm] Remove some dead code. | Chad Rosier | 2013-04-16 | 1 | -8/+0 |
* | [ms-inline asm] Simplify the logic by using parsePrimaryExpr. No functional | Chad Rosier | 2013-04-12 | 1 | -1/+1 |
* | [ms-inline asm] Move this logic into a static function as it's only applicable | Chad Rosier | 2013-04-12 | 1 | -63/+67 |
* | [ms-inline asm] Address the FIXME for ImmDisp before brackets. This | Chad Rosier | 2013-04-12 | 1 | -18/+29 |
* | [ms-inline asm] Have the [ Symbol ] case fall into the more general logic. This | Chad Rosier | 2013-04-12 | 1 | -46/+24 |
* | [ms-inline asm] Add support for operands that include both a symbol and an | Chad Rosier | 2013-04-12 | 1 | -41/+103 |
* | [ms-inline asm] Add support for using the LENGTH, TYPE, and SIZE operators with | Chad Rosier | 2013-04-11 | 1 | -2/+11 |
* | [ms-inline asm] Add support for using offsetof operator with variables that use | Chad Rosier | 2013-04-11 | 1 | -3/+6 |
* | [ms-inline asm] Pass a StringRef reference to ParseIntelVarWithQualifier so we | Chad Rosier | 2013-04-11 | 1 | -15/+15 |
* | [ms-inline asm] Remove brackets from around a symbol reference in the target | Chad Rosier | 2013-04-11 | 1 | -0/+10 |
* | Tidy up, fix and simplify a few of the SMLocs. Prior to r179109 the Start SMLoc | Chad Rosier | 2013-04-10 | 1 | -11/+13 |
* | Remove unused variable. | Chad Rosier | 2013-04-10 | 1 | -1/+0 |
* | Reapply r179115, but use parsePrimaryExpression a little more judiciously. | Chad Rosier | 2013-04-10 | 1 | -3/+3 |
* | Cleanup. No functional change intended. | Chad Rosier | 2013-04-09 | 1 | -5/+5 |
* | Cleanup. No functional change intended. | Chad Rosier | 2013-04-09 | 1 | -16/+16 |
* | Revert r179115 as it looks to have killed the ASan tests. | Chad Rosier | 2013-04-09 | 1 | -5/+5 |
* | [ms-inline asm] Use parsePrimaryExpr in lieu of parseExpression if we need to | Chad Rosier | 2013-04-09 | 1 | -5/+5 |
* | [ms-inline asm] Maintain a StringRef to reference a symbol in a parsed operand, | Chad Rosier | 2013-04-09 | 1 | -24/+38 |
* | [ms-inline asm] Add support for ImmDisp [ Symbol ] memory operands. | Chad Rosier | 2013-04-08 | 1 | -12/+6 |
* | [ms-inline asm] Add support for numeric displacement expressions in bracketed | Chad Rosier | 2013-04-05 | 1 | -64/+246 |
* | [ms-inline asm] Add support for parsing variables with namespace alias | Chad Rosier | 2013-04-02 | 1 | -0/+54 |
* | [ms-inline asm] Add support of imm displacement before bracketed memory | Chad Rosier | 2013-03-27 | 1 | -15/+52 |
* | [ms-inline asm] Move the immediate asm rewrite into the target specific | Chad Rosier | 2013-03-19 | 1 | -10/+4 |
* | [ms-inline asm] Create a helper function, CreateMemForInlineAsm, that creates | Chad Rosier | 2013-03-19 | 1 | -36/+49 |
* | [ms-inline asm] Move the size directive asm rewrite into the target specific | Chad Rosier | 2013-03-19 | 1 | -44/+33 |
* | [ms-inline asm] Avoid emitting a redundant sizing directive, if we've already | Chad Rosier | 2013-03-18 | 1 | -2/+3 |
* | Post process ADC/SBB and use a shorter encoding if they use a sign extended i... | Craig Topper | 2013-03-18 | 1 | -0/+6 |
* | Refactor some duplicated code into helper functions. | Craig Topper | 2013-03-18 | 1 | -229/+55 |
* | Silence anonymous type in anonymous union warnings. | Eric Christopher | 2013-03-15 | 1 | -23/+28 |
* | GCC thinks that this variable might be used uninitialized (it isn't). | Duncan Sands | 2013-03-01 | 1 | -1/+1 |