- Jan 28, 2013
-
-
Michael Gottesman authored
Since ObjCARC has been refactored into its own library with its own declaration header, we need to include the declaration header alongside Scalar.h in BackendUtil. llvm-svn: 173648
-
- Jan 27, 2013
-
-
Bill Wendling authored
In the future, AttributeWithIndex won't be used anymore. Besides, it exposes the internals of the AttributeSet to outside users, which isn't goodness. llvm-svn: 173605
-
- Jan 26, 2013
-
-
David Blaikie authored
One of the gotchas (see changes to CodeGenFunction) was due to the fix in r139416 (for PR10829). This only worked previously because the top level lexical block would set the location to the end of the function, the debug location would be updated (as per r139416), the location would be set to the end of the function again (but that would no-op, since it was the same as the previous location), then the return instruction would be emitted using the debug location. Once the top level lexical block was no longer emitted, the end-of-function location change was causing the debug loc to be updated, regressing that bug. llvm-svn: 173593
-
rdar://11861085Fariborz Jahanian authored
Title: [PR9027] volatile struct bug: member is not loaded at -O; This is caused by last flag passed to @llvm.memcpy being false, not honoring that aggregate has at least one 'volatile' data member (even though aggregate itself has not been qualified as 'volatile'. As a result, optimization optimizes away the memcpy altogether. Patch review by John MaCall (I still need to fix up a test though). llvm-svn: 173535
-
John McCall authored
ARM is not thinking about over-aligned structures. Overrule ARM in both our generic-ARM and iOS ABI implementations. llvm-svn: 173531
-
John McCall authored
the family-specific files. llvm-svn: 173530
-
- Jan 25, 2013
-
-
John McCall authored
never key functions. We did not implement that rule for the iOS ABI, which was driven by what was implemented in gcc-4.2. However, implement it now for other ARM-based platforms. llvm-svn: 173515
-
John McCall authored
llvm-svn: 173514
-
- Jan 24, 2013
-
-
Akira Hatanaka authored
to pass floating point arguments to be passed in integer registers. llvm-svn: 173375
-
- Jan 23, 2013
-
-
Joey Gouly authored
operations (as opposed to storage only half/fp16). Also add some semantic checks for OpenCL half types. llvm-svn: 173254
-
Bill Wendling authored
Collections of attributes are handled via the AttributeSet class now. This finally frees us up to make significant changes to how attributes are structured. llvm-svn: 173229
-
Bill Wendling authored
when adding a single attribute to the function. llvm-svn: 173211
-
- Jan 22, 2013
-
-
John McCall authored
We were previously hard-coding a particular field index. This was fine before (because we were obviously guaranteed the presence of a copy/dispose member) except for (1) alignment padding and (2) future extensions adding extra members to the header, such as the extended-layout pointer. Note that we only introduce the extended-layout pointer in the presence of structs. (We also seem to be introducing it even in the presence of an all-non-object layout, but that's a different potential issue.) llvm-svn: 173122
-
- Jan 21, 2013
-
-
Bill Wendling authored
This further restricts the use of the Attribute class to the Attribute family of classes. llvm-svn: 173099
-
Bill Wendling authored
This is more code to isolate the use of the Attribute class to that of just holding one attribute instead of a collection of attributes. llvm-svn: 173095
-
Timur Iskhodzhanov authored
llvm-svn: 173035
-
NAKAMURA Takumi authored
llvm-svn: 173022
-
David Blaikie authored
Looks like r161368 fixed this for one case but not all. This change generalizes the solution over all the unwrapping cases. Now that preserving the qualifiers is done independent of the particular type being unwrapped I won't bother adding test cases for each one but at least demonstrate that this change was necessary & sufficient to fix the bug. llvm-svn: 173002
-
- Jan 20, 2013
-
-
Alexey Samsonov authored
Add top-level Clang flag -f(no-)sanitize-address-zero-base-shadow that makes AddressSanitizer use bottom of the address space for the shadow memory. On Linux it can be used with -fPIE/-pie to improve performance. llvm-svn: 172974
-
Guy Benyei authored
Implement OpenCL event_t as Clang builtin type, including event_t related OpenCL restrictions (OpenCL 1.2 spec 6.9) llvm-svn: 172973
-
David Blaikie authored
llvm-svn: 172942
-
- Jan 19, 2013
-
-
David Blaikie authored
Adding the pseudo first parameter to a member function pointer's function type and mark it as artificial. Combined with a fix to GDB ( http://sourceware.org/bugzilla/show_bug.cgi?id=14998 ) this fixes gdb.cp/member-ptr.exp with Clang. llvm-svn: 172911
-
Chandler Carruth authored
Manually fix the order of UnwrappedLineParser.cpp as that one didn't have its associated header as the first header. This also uncovered a subtle inclusion order dependency as CLog.h didn't include LLVM.h to pick up using declarations it relied upon. llvm-svn: 172892
-
- Jan 18, 2013
-
-
Bill Wendling authored
llvm-svn: 172849
-
Will Dietz authored
llvm-svn: 172808
-
- Jan 17, 2013
-
-
Daniel Dunbar authored
in the LangRef). llvm-svn: 172692
-
Richard Smith authored
it apart from [[gnu::noreturn]] / __attribute__((noreturn)), since their semantics are not equivalent (for instance, we treat [[gnu::noreturn]] as affecting the function type, whereas [[noreturn]] does not). llvm-svn: 172691
-
Fariborz Jahanian authored
produce more inline layout metadata. // rdar://12752901 llvm-svn: 172683
-
- Jan 16, 2013
-
-
Tim Northover authored
llvm-svn: 172650
-
Reed Kotler authored
Waiting for new llvm attribute code for the next step. llvm-svn: 172626
-
Douglas Gregor authored
users can explicitly enable/disable modules autolinking. llvm-svn: 172592
-
Eric Christopher authored
order. Describe static data members to metadata using new interfaces. Part of PR14471. Patch by Paul Robinson! llvm-svn: 172591
-
David Greene authored
Do some casting to avoid a signed/unsigned compare. llvm-svn: 172571
-
David Greene authored
Cast arithmetic results to avoid comparison of an unsigned to an int. llvm-svn: 172570
-
- Jan 15, 2013
-
-
David Greene authored
Do proper casting to avoid a cast-away-const error. llvm-svn: 172559
-
- Jan 14, 2013
-
-
Michael Gottesman authored
We lower these into 2x chained usub.with.overflow intrinsics. llvm-svn: 172476
-
Douglas Gregor authored
module-import dependencies, so we'll get the link order correct for those silly linkers that need it. llvm-svn: 172459
-
Douglas Gregor authored
link options for the modules it imports. llvm-svn: 172448
-
Douglas Gregor authored
!0 = metadata !{metadata !"-lautolink"} !1 = metadata !{metadata !"-framework", metadata !"autolink_framework"} referenced from llvm.module.linkoptions, e.g., !llvm.module.linkoptions = !{!0, !1, !2, !3} This conceptually moves the logic for figuring out the syntax the linker will accept from LLVM into Clang. Moreover, it makes it easier to support MSVC's #pragma comment(linker, "some option") in the future, should anyone care to do so. llvm-svn: 172441
-
Bill Schmidt authored
the 64-bit PowerPC ELF ABI. The ABI requires that the real and imaginary parts of a complex argument each occupy their own doubleword. Arguments smaller than 8 bytes are right-adjusted within the doubleword. Clang expects EmitVAARG() to return a pointer to a structure in which the real and imaginary parts are packed adjacently in memory. To accomplish this, we generate code to load the code appropriately from the varargs location and pack the values into a temporary variable in the form Clang expects, returning a pointer to that structure. The test case demonstrates correct code generation for all "small" complex types on PPC64: int, short, char, and float. llvm-svn: 172438
-