aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExprScalar.cpp
AgeCommit message (Expand)Author
2013-04-20C++1y: Allow aggregates to have default initializers.Richard Smith
2013-04-16Standardize accesses to the TargetInfo in IR-gen.John McCall
2013-03-27UBSan: Don't diagnose inf/nan conversions between floating-point types. It's ...Richard Smith
2013-03-19PR15383: When -fsanitize=float-cast-overflow checks a float-to-int conversion,Richard Smith
2013-03-07Change hasAggregateLLVMType, which conflates complex andJohn McCall
2013-03-03Improve C11 atomics support:David Chisnall
2013-02-28Use the actual ABI-determined C calling convention for runtimeJohn McCall
2013-02-25[ubsan] Emit single check for left shift.Will Dietz
2013-02-23ubsan: Emit bounds checks for array indexing, vector indexing, and (in really...Richard Smith
2013-02-21Add support to Sema and CodeGen for floating point vector types in OpenCL.Joey Gouly
2013-02-13ubsan: Add checking for invalid downcasts. Per [expr.static.cast]p2 and p11,Richard Smith
2013-01-29[ubsan] Implement the -fcatch-undefined-behavior flag using a trappingChad Rosier
2013-01-23Add a new LangOpt NativeHalfType. This option allows for native half/fp16Joey Gouly
2013-01-20Implement OpenCL event_t as Clang builtin type, including event_t related Ope...Guy Benyei
2013-01-18[ubsan] Add support for -fsanitize-blacklistWill Dietz
2013-01-12Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko
2013-01-10Testing with a full OpenCL compiler (based on clang) reveals r71734 missedDavid Tweed
2013-01-07[ubsan] Use correct type for compound assignment ops.Will Dietz
2013-01-07Scalar shifts in the OpenCL specification (as of v. 1.2) are defined to beDavid Tweed
2013-01-02Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate toChandler Carruth
2013-01-01Simplify vector splat code. No functionality change.Benjamin Kramer
2012-12-21Reinstate r170806, reverted in r170835, with a fix use i1 instead of i8 for a...Richard Smith
2012-12-21Revert r170806, "Fix some bugs where we would sometimes use 0, not -1, when e...NAKAMURA Takumi
2012-12-20Fix some bugs where we would sometimes use 0, not -1, when emitting a null co...Richard Smith
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-12-02[ubsan] Add flag to enable recovery from checks when possible.Will Dietz
2012-11-27Add -fsanitize=integer for reporting suspicious integer behaviors.Will Dietz
2012-11-15Make -ffp-contract a codegen option, rather than a laguage option. This makesLang Hames
2012-11-06Classify the INT_MIN/-1 check as -fsanitize=signed-integer-overflow, not as -...Richard Smith
2012-11-05Use the individual -fsanitize=<...> arguments to control which of the UBSanRichard Smith
2012-11-01Simplify: replace getContext().getLangOpts() with just getLangOpts().Richard Smith
2012-11-01Clean up misapplication of diff.Richard Smith
2012-11-01Split emission of -ftrapv checks and -fcatch-undefined-behavior checks intoRichard Smith
2012-11-01Remove divison-by-zero checks from -ftrapv. These checks were incompatible withRichard Smith
2012-10-23Switch CodeGenOptions over to a .def file, like we do with LangOptions.Douglas Gregor
2012-10-12-fcatch-undefined-behavior: Trap undefined behavior due to conversions to orRichard Smith
2012-10-09-fcatch-undefined-behavior: emit calls to the runtime library whenever one of...Richard Smith
2012-10-08Move TargetData to DataLayout.Micah Villmow
2012-10-04Fail early with a clear assert if an operation with multiple uses somehow endsLang Hames
2012-10-03Always initialize FPContractable.Benjamin Kramer
2012-10-03Teach getCXXRecordDeclForPointerType about references.Jordan Rose
2012-10-02Add FP_CONTRACT support for clang.Lang Hames
2012-09-08-fcatch-undefined-behavior: Factor emission of the creation of, and branch to,Richard Smith
2012-08-31Change the representation of builtin functions in the ASTEli Friedman
2012-08-28Fix PR13704Michael Liao
2012-08-25Remove spurious string literal for bool argument.Richard Smith
2012-08-25-fcatch-undefined-behavior: add the -ftrapv checks to the set of things caughtRichard Smith
2012-08-24New -fcatch-undefined-behavior features:Richard Smith
2012-07-04Remove get(V)BaseClassOffsetInBits, the CharUnit functions should be used ins...Benjamin Kramer
2012-06-16Fix Sema and IRGen for atomic compound assignment so it has the right semanti...Eli Friedman