aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExpr.cpp
AgeCommit message (Expand)Author
2012-05-09update calls to objectsize intrinsic to match LLVM r156473Nuno Lopes
2012-05-08add -fbounds-checking option.Nuno Lopes
2012-05-07remove code to add bound checks for simple array accesses, since those are al...Nuno Lopes
2012-05-01Push variable declaration into nested scope (the only place where it is used)...Ted Kremenek
2012-05-01Abstract the emission of global destructors into ABI-specific codeJohn McCall
2012-04-16Adjust for LLVM name tweaks requested by Chandler.Duncan Sands
2012-04-16Propagate alignment on lvalues through EmitLValueForField. PR12395.Eli Friedman
2012-04-15Use MDBuilder to help with metadata creation.Duncan Sands
2012-04-14Rename "fpaccuracy" metadata to the more generic "fpmath". That's because I'mDuncan Sands
2012-04-13Step forward with supporting of ARM homogenous aggregates:Anton Korobeynikov
2012-04-13Implement __atomic_fetch_nand and __atomic_nand_fetch to complete our set ofRichard Smith
2012-04-13Implement the missing pieces needed to support libstdc++4.7's <atomic>:Richard Smith
2012-04-12Fix some i1/i8 confusion within _Atomic(bool) in IR generation, bothDouglas Gregor
2012-04-12Implement support for 18 of the GNU-compatible __atomic builtins.Richard Smith
2012-04-11Make __atomic_init() (soon to be __c11_atomic_init()) work with non-scalar ty...David Chisnall
2012-04-10Express the number of ULPs in fpaccuracy metadata as a real rather than a Duncan Sands
2012-03-29Call out to GCC-compatible runtime functions for atomic ops that we can't useDavid Chisnall
2012-03-29Revert r153613 as it's causing large compile-time regressions on the nightly ...Chad Rosier
2012-03-28When we can't prove that the target of an aggregate copy isJohn McCall
2012-03-27Move the emission of strict enum range metadata behind a flag (the sameChandler Carruth
2012-03-24Add back r153360 with a fix for enums that cover all the 32 bit values.Rafael Espindola
2012-03-24Revert r153360 (and r153380), "Second part of PR12251. Produce the range meta...NAKAMURA Takumi
2012-03-24Second part of PR12251. Produce the range metadata in clang for booleans andRafael Espindola
2012-03-22Make sure we correctly set the alignment for vector loads and stores associat...Eli Friedman
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-03-10Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr toJohn McCall
2012-03-10Unify the BlockDeclRefExpr and DeclRefExpr paths so thatJohn McCall
2012-03-07AST representation for user-defined literals, plus just enough of semanticRichard Smith
2012-02-22Generate an AST for the conversion from a lambda closure type to aDouglas Gregor
2012-02-18Fix wrong-code bug: __imag on a scalar lvalue should produce a zero rvalue,Richard Smith
2012-02-17Whether an argument is required (in contrast with being anJohn McCall
2012-02-15Split reinterpret_casts of member pointers out from CK_BitCast; thisJohn McCall
2012-02-14Use a simpler (and more efficient) pattern to pad vectors.Benjamin Kramer
2012-02-11Basic support for referring to captured variables from lambdas. Some simple ...Eli Friedman
2012-02-09Refactor lambda IRGen so AggExprEmitter::VisitLambdaExpr does the right thing.Eli Friedman
2012-02-09Basic IRGen for LambdaExprs with captures.Eli Friedman
2012-02-08A little bit of lambda IRGen.Eli Friedman
2012-02-07simplify a bunch of code to use the well-known LLVM IR types computed by Code...Chris Lattner
2012-02-05Basic: import SmallString<> into clang namespaceDylan Noblesmith
2012-01-30Simplify code by using the new getAggregateElement method that got addedChris Lattner
2012-01-26Use function pointers, rather than references, to pass DestroyersPeter Collingbourne
2012-01-25Fixup r148926, for -Asserts.NAKAMURA Takumi
2012-01-25reapply r148902:Chris Lattner
2012-01-25Fix a crash for an edge case of the GNU ?: extension.Eli Friedman
2012-01-25Revert 148902 which was part of 148901 which was reverted in r148906.Argyrios Kyrtzidis
2012-01-25use the new ConstantVector::getSplat method where it makes sense.Chris Lattner
2012-01-21Add an assertion that our use-marking actually covers all uses of a variable....Eli Friedman
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2012-01-16Some improvements to the handling of C11 atomic types:David Chisnall
2012-01-04implement rdar://10639962 by keeping track of increased alignment Chris Lattner