| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fixup codegen for volatile structs in the trivial cases (a a=a and a=a=a). | Mike Stump | 2009-05-26 | 1 | -1/+1 |
| * | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad | 2009-05-21 | 1 | -1/+1 |
| * | "Fix" a problem with debug info in the presence of always_inline | Chris Lattner | 2009-05-04 | 1 | -2/+9 |
| * | Remove unnecessary copy of constraint info. | Daniel Dunbar | 2009-05-04 | 1 | -1/+1 |
| * | Remove unnecessary push_back (at least, I think it's unnecessary); | Eli Friedman | 2009-05-04 | 1 | -2/+0 |
| * | look at the right operand when increasing the size of an asm output, | Chris Lattner | 2009-05-03 | 1 | -3/+1 |
| * | don't shadow 'i' | Chris Lattner | 2009-05-03 | 1 | -5/+7 |
| * | add support for tying asm operands where the result is smaller than | Chris Lattner | 2009-05-03 | 1 | -15/+64 |
| * | implement support for asm outputs targetting non-simple lvalue destinations | Chris Lattner | 2009-05-03 | 1 | -11/+13 |
| * | handle codegen of asms where a small input is tied to a large output. | Chris Lattner | 2009-05-03 | 1 | -0/+22 |
| * | refactor some code to get the input/output constraint info before | Chris Lattner | 2009-05-03 | 1 | -15/+27 |
| * | Don't use indirect memory destinations for inline asm. Fixes 6841383. | Anders Carlsson | 2009-05-01 | 1 | -15/+27 |
| * | pull operands names "[foo]" into ConstraintInfo. | Chris Lattner | 2009-04-26 | 1 | -14/+11 |
| * | pull the constraint string into the ConstraintInfo struct | Chris Lattner | 2009-04-26 | 1 | -6/+4 |
| * | change TargetInfo::ConstraintInfo to be a struct that contains | Chris Lattner | 2009-04-26 | 1 | -6/+4 |
| * | Minor simplification. | Eli Friedman | 2009-04-13 | 1 | -6/+1 |
| * | Fix a subtle bug where the cleanup scope entries had a dangling block reference | Daniel Dunbar | 2009-04-01 | 1 | -14/+27 |
| * | introduce a new -fheinous-gnu-extensions flag that enables really | Chris Lattner | 2009-03-13 | 1 | -1/+6 |
| * | add plumbing to report diagnostics back through sema for malformed asmstrings. | Chris Lattner | 2009-03-10 | 1 | -1/+2 |
| * | move the asm string analysis code out of codegen into common | Chris Lattner | 2009-03-10 | 1 | -112/+15 |
| * | Fix PR3682 by just disabling a broken assertion. This check should be | Chris Lattner | 2009-03-10 | 1 | -3/+2 |
| * | reduce duplication of parsing code between %0 and %x0 and | Chris Lattner | 2009-03-10 | 1 | -19/+18 |
| * | move matching of named operands into AsmStmt class. At the same | Chris Lattner | 2009-03-10 | 1 | -24/+5 |
| * | reduce nesting, use memchr instead of explicit loop, eliminate a | Chris Lattner | 2009-03-10 | 1 | -93/+86 |
| * | Expand %= into ${:uid} so that the code generator emits a unique ID for the | Chris Lattner | 2009-03-10 | 1 | -13/+5 |
| * | add some helper methods to AsmStmt and add some comments. | Chris Lattner | 2009-03-10 | 1 | -4/+2 |
| * | slightly simplify some code, pull the 'is simple asm' case up in | Chris Lattner | 2009-03-10 | 1 | -24/+30 |
| * | if we die in IR generation of a compound statement, include | Chris Lattner | 2009-03-05 | 1 | -1/+4 |
| * | add a special case for codegen that improves the case where we have | Chris Lattner | 2009-03-04 | 1 | -1/+24 |
| * | inline asm calls should be nounwind. Chris, please review. | Anders Carlsson | 2009-03-02 | 1 | -1/+4 |
| * | Make sure to reset the DidCallStackSave variable before emitting a compound s... | Anders Carlsson | 2009-02-22 | 1 | -0/+1 |
| * | Add CodeGen support for the nodebug attribute. | Anders Carlsson | 2009-02-13 | 1 | -2/+2 |
| * | Handle the case where EmitBlock might be called multiple times for the same b... | Anders Carlsson | 2009-02-10 | 1 | -2/+8 |
| * | Remove the last remnants of the Obj-C EH stack code. | Anders Carlsson | 2009-02-10 | 1 | -113/+1 |
| * | Start removing the old Obj-C EH stack now that the cleanup stack is used inst... | Anders Carlsson | 2009-02-10 | 1 | -43/+12 |
| * | Replace a bunch of EmitBranch calls with EmitBranchThroughCleanup. No functio... | Anders Carlsson | 2009-02-09 | 1 | -5/+5 |
| * | Save and restore the DidCallStackSave variable | Anders Carlsson | 2009-02-09 | 1 | -0/+4 |
| * | When we're at the stack depth we want, there isn't anything to do. | Mike Stump | 2009-02-08 | 1 | -0/+4 |
| * | Wire up break and continue processing to the new stack depth adjuster. | Mike Stump | 2009-02-08 | 1 | -39/+49 |
| * | When emitting blocks, keep track of which cleanup scope they have. Minor fixe... | Anders Carlsson | 2009-02-08 | 1 | -0/+6 |
| * | Add support for emitting cleanup blocks. Make EmitCompoundStatement emit clea... | Anders Carlsson | 2009-02-07 | 1 | -1/+6 |
| * | Ensure we track all the stack depths for all break and continue points | Mike Stump | 2009-02-07 | 1 | -4/+16 |
| * | Format for 80-cols. | Mike Stump | 2009-02-07 | 1 | -2/+2 |
| * | Arrange to have the correct StackDepth for while statements. | Mike Stump | 2009-02-07 | 1 | -8/+8 |
| * | Fit into 80-col. | Mike Stump | 2009-02-07 | 1 | -3/+3 |
| * | Fixup goto codegen in and around VLAs. | Mike Stump | 2009-02-07 | 1 | -19/+65 |
| * | If an input constraint refers to an output constraint, it should have the sam... | Anders Carlsson | 2009-01-27 | 1 | -1/+6 |
| * | silence a couple unused variable 'result' warnings. | Chris Lattner | 2009-01-21 | 1 | -2/+2 |
| * | CG support for inline asm constraints with symbolic names. Fixes PR3345 | Anders Carlsson | 2009-01-18 | 1 | -2/+18 |
| * | Add sema support for symbolic names in inline asm statements. | Anders Carlsson | 2009-01-18 | 1 | -1/+1 |