aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGStmt.cpp
AgeCommit message (Expand)Author
2009-11-13Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated.Daniel Dunbar
2009-11-12 "Attach debug info with llvm instructions" mode was enabled a month ago. Now...Devang Patel
2009-11-06update comment, pointed out by GaborChris Lattner
2009-11-06indirectbr seems to work! Rip out the old code.Chris Lattner
2009-10-28Implement clang support for indirect branch and address of labelChris Lattner
2009-10-13reimplement codegen for indirect goto with the following advantages:Chris Lattner
2009-10-06Add support to attach debug info to an instruction.Devang Patel
2009-09-27CodeGen for try statements. (We just emit the body for now).Anders Carlsson
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-08-13Update for LLVM API change.Owen Anderson
2009-08-05Update for LLVM API change.Owen Anderson
2009-08-04Revert the fix for PR3800, it broke things.Anders Carlsson
2009-08-02Remove old code that was causing the new test to fail.Anders Carlsson
2009-08-02Don't evaluate inout constraints twice. Fixes PR3800.Anders Carlsson
2009-07-30Canonicalize else spacing.Mike Stump
2009-07-24Update for LLVM API change.Owen Anderson
2009-07-19Detect when the current generation point is unreachable after emittingDaniel Dunbar
2009-07-19Fix thinko.Daniel Dunbar
2009-07-19Avoid generation of dead code in a few more situations.Daniel Dunbar
2009-07-16Update for LLVM API change.Owen Anderson
2009-05-27Add IRGen support for return statements in functions with reference Eli Friedman
2009-05-26Fixup codegen for volatile structs in the trivial cases (a a=a and a=a=a).Mike Stump
2009-05-21Use v.data() instead of &v[0] when SmallVector v might be empty.Jay Foad
2009-05-04"Fix" a problem with debug info in the presence of always_inlineChris Lattner
2009-05-04Remove unnecessary copy of constraint info.Daniel Dunbar
2009-05-04Remove unnecessary push_back (at least, I think it's unnecessary); Eli Friedman
2009-05-03look at the right operand when increasing the size of an asm output,Chris Lattner
2009-05-03don't shadow 'i'Chris Lattner
2009-05-03add support for tying asm operands where the result is smaller thanChris Lattner
2009-05-03implement support for asm outputs targetting non-simple lvalue destinationsChris Lattner
2009-05-03handle codegen of asms where a small input is tied to a large output.Chris Lattner
2009-05-03refactor some code to get the input/output constraint info beforeChris Lattner
2009-05-01Don't use indirect memory destinations for inline asm. Fixes 6841383.Anders Carlsson
2009-04-26pull operands names "[foo]" into ConstraintInfo.Chris Lattner
2009-04-26pull the constraint string into the ConstraintInfo structChris Lattner
2009-04-26change TargetInfo::ConstraintInfo to be a struct that containsChris Lattner
2009-04-13Minor simplification.Eli Friedman
2009-04-01Fix a subtle bug where the cleanup scope entries had a dangling block referenceDaniel Dunbar
2009-03-13introduce a new -fheinous-gnu-extensions flag that enables reallyChris Lattner
2009-03-10add plumbing to report diagnostics back through sema for malformed asmstrings.Chris Lattner
2009-03-10move the asm string analysis code out of codegen into common Chris Lattner
2009-03-10Fix PR3682 by just disabling a broken assertion. This check should beChris Lattner
2009-03-10reduce duplication of parsing code between %0 and %x0 andChris Lattner
2009-03-10move matching of named operands into AsmStmt class. At the sameChris Lattner
2009-03-10reduce nesting, use memchr instead of explicit loop, eliminate aChris Lattner
2009-03-10Expand %= into ${:uid} so that the code generator emits a unique ID for theChris Lattner
2009-03-10add some helper methods to AsmStmt and add some comments.Chris Lattner
2009-03-10slightly simplify some code, pull the 'is simple asm' case up inChris Lattner
2009-03-05if we die in IR generation of a compound statement, include Chris Lattner
2009-03-04add a special case for codegen that improves the case where we haveChris Lattner