| Age | Commit message (Expand) | Author | Files | Lines |
| 2005-04-07 | Start updating the copyright license comments to the OSL, | Linus Torvalds | 1 | -1/+3 |
| 2005-04-07 | Evaluate initializer entry offsets, and add them back into | Linus Torvalds | 1 | -8/+40 |
| 2005-04-07 | Don't show bad expression types. | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Remove unused symbol list. We'll soon re-introduce it in another form, | Linus Torvalds | 1 | -8/+0 |
| 2005-04-07 | Show expressions with no type as a separate | Linus Torvalds | 1 | -0/+8 |
| 2005-04-07 | Make symbol addressing do something half-way sane. | Linus Torvalds | 1 | -1/+10 |
| 2005-04-07 | Show switch- and case-statements in some half-way sane | Linus Torvalds | 1 | -9/+10 |
| 2005-04-07 | Show if/label/asm statements in a saner format. | Linus Torvalds | 1 | -18/+34 |
| 2005-04-07 | Show iterators and goto's properly as pseudo-assembler. | Linus Torvalds | 1 | -38/+38 |
| 2005-04-07 | Turn 'break'/'continue' statements into goto's with | Linus Torvalds | 1 | -9/+5 |
| 2005-04-07 | Make symbol debugging print out the symbol address too. | Linus Torvalds | 1 | -2/+3 |
| 2005-04-07 | Add "debug_symbol()" function that prints out the full | Linus Torvalds | 1 | -0/+25 |
| 2005-04-07 | Fix the direct-call case. A call is a direct call if the | Linus Torvalds | 1 | -6/+18 |
| 2005-04-07 | Make the initializer show routine output a dummy instead | Linus Torvalds | 1 | -2/+7 |
| 2005-04-07 | Add function to show types as strings (instead of just printing them out). | Linus Torvalds | 1 | -8/+41 |
| 2005-04-07 | Evaluate and show return statement with proper type promotion. | Linus Torvalds | 1 | -3/+14 |
| 2005-04-07 | Fix bitfield access code. | Linus Torvalds | 1 | -7/+2 |
| 2005-04-07 | Show the expression parse tree as a sick kind of assembly language, which | Linus Torvalds | 1 | -69/+147 |
| 2005-04-07 | Make statement and expression printouts be more "linearized", and | Linus Torvalds | 1 | -87/+205 |
| 2005-04-07 | Evaluate logical expressions, and short-circuit it. | Linus Torvalds | 1 | -0/+1 |
| 2005-04-07 | Remove extra '<..>' in pretty-printing of expressions. | Linus Torvalds | 1 | -2/+1 |
| 2005-04-07 | Don't bother showing the full type of a symbol in an expression, | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Evaluating a symbol turns into a dereference of the address | Linus Torvalds | 1 | -9/+2 |
| 2005-04-07 | Clean up address-of evaluation, and mark symbols so evaluated | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Prinout of the "inline", "nocast" and "noderef" attributes | Linus Torvalds | 1 | -1/+2 |
| 2005-04-07 | Check address spaces when comparing types. They should match: | Linus Torvalds | 1 | -1/+4 |
| 2005-04-07 | Show type names more readably | Linus Torvalds | 1 | -3/+3 |
| 2005-04-07 | Move symbol alignment into the "ctype" part of the symbol, | Linus Torvalds | 1 | -2/+2 |
| 2005-04-07 | Change the copyright to Transmeta Corp, that's likely to be | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Make sure unhandled types show up in type expansions. | Linus Torvalds | 1 | -0/+5 |
| 2005-04-07 | Show symbol types in a more C-like fashion, to avoid confusion. | Linus Torvalds | 1 | -43/+88 |
| 2005-04-07 | Separate scopes for blocks and functions. Function scopes | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Make labels be symbols in their own namespace (NS_LABEL). | Linus Torvalds | 1 | -5/+10 |
| 2005-04-07 | Remove last user of "struct token" from "struct expression". | Linus Torvalds | 1 | -6/+13 |
| 2005-04-07 | Make structure/union declaration printout prettier. | Linus Torvalds | 1 | -2/+0 |
| 2005-04-07 | Parse initializers properly. We parsed them before, but we didn't | Linus Torvalds | 1 | -5/+25 |
| 2005-04-07 | Start doing constant strings right: do proper concatenation of strings, | Linus Torvalds | 1 | -0/+3 |
| 2005-04-07 | A structure member is just an identifier, not a random token. | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Introduce a "struct position", and have the different types refer | Linus Torvalds | 1 | -8/+8 |
| 2005-04-07 | Show more statement types. | Linus Torvalds | 1 | -2/+23 |
| 2005-04-07 | Evaluate pointer subtractions correctly: handle the valid | Linus Torvalds | 1 | -5/+8 |
| 2005-04-07 | Evaluate bitfields into bitfield expressions. | Linus Torvalds | 1 | -1/+5 |
| 2005-04-07 | Add bitfield type examination and printout. | Linus Torvalds | 1 | -0/+2 |
| 2005-04-07 | Give comma expressions and comparison expressions different types, | Linus Torvalds | 1 | -0/+7 |
| 2005-04-07 | Make a function call point an expression type of its own, and | Linus Torvalds | 1 | -0/+24 |
| 2005-04-07 | Print out array sizes correctly. | Linus Torvalds | 1 | -5/+1 |
| 2005-04-07 | Fix structure debug printouts after the type changeover. | Linus Torvalds | 1 | -2/+2 |
| 2005-04-07 | Add tree evaluation to a few more statement types (iterators, | Linus Torvalds | 1 | -0/+2 |
| 2005-04-07 | Fix indirect type parsing (functions, arrays, bitfields). Update | Linus Torvalds | 1 | -3/+23 |
| 2005-04-07 | Make 'show_type()' just show the type, while 'show_symbol()' | Linus Torvalds | 1 | -5/+21 |
| 2005-04-07 | Fix typename parsing (incorrect ctype usage), and correct | Linus Torvalds | 1 | -23/+18 |
| 2005-04-07 | Clean up type handling in a big way. Don't leave those | Linus Torvalds | 1 | -75/+70 |
| 2005-04-07 | Start doing type evaluation for binops - integer promotion rules | Linus Torvalds | 1 | -4/+3 |
| 2005-04-07 | Handle undefined identifiers "gracefully", and improve printout | Linus Torvalds | 1 | -8/+6 |
| 2005-04-07 | Start "evaluating" expression trees. That is, evaluate the types of | Linus Torvalds | 1 | -1/+3 |
| 2005-04-07 | Replace for/while/do-while loops with a generic internal | Linus Torvalds | 1 | -24/+44 |
| 2005-04-07 | Add debug output to show union/struct member sizes, alignments | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Add type size and alignment information to 'struct symbol'. | Linus Torvalds | 1 | -2/+3 |
| 2005-04-07 | Fix up more stupidities in the type parsing. It might even be getting close | Linus Torvalds | 1 | -10/+31 |
| 2005-04-07 | Fix confusion between symbol types and modifier bit-names. | Linus Torvalds | 1 | -17/+44 |
| 2005-04-07 | Oops. Remove empty printf that causes warnings. | Linus Torvalds | 1 | -1/+0 |
| 2005-04-07 | Make storage class specifiers move correctly up the chain of | Linus Torvalds | 1 | -8/+10 |
| 2005-04-07 | Split up the printout functions into a file of their own. | Linus Torvalds | 1 | -0/+313 |