|  | Commit message (Collapse) | Author | Age | Files | Lines | 
|---|
| | 
| 
| 
| 
| 
| | double, make sure to use the objc_msgSend_fp2ret function which ensures that the return value will be {0, 0} if the receiver is nil.
llvm-svn: 143350 | 
| | 
| 
| 
| 
| 
| | Lack of half FP was a regression compared to llvm-gcc.
llvm-svn: 142016 | 
| | 
| 
| 
| 
| 
| | _Atomic types.
llvm-svn: 142002 | 
| | 
| 
| 
| | llvm-svn: 140368 | 
| | 
| 
| 
| | llvm-svn: 140367 | 
| | 
| 
| 
| | llvm-svn: 139291 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | alignment.  This fixes cases where the anonymous bitfield is followed by a 
non-bitfield member.  E.g.,
struct t4
{
  int foo : 1;
  long : 0;
  char bar;
};
Part of rdar://9859156
llvm-svn: 136858 | 
| | 
| 
| 
| 
| 
| | the preferred alignment.  Thus, revert r135934, r135935, and r135940.
llvm-svn: 136062 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| | care of
FIXME: Override "preferred align" for double and long long for ARM apcs-gnu ABI. 
Also part of rdar://9802874
llvm-svn: 135940 | 
| | 
| 
| 
| 
| 
| 
| 
| | LLVM.h imports
them into the clang namespace.
llvm-svn: 135852 | 
| | 
| 
| 
| 
| 
| | Fixes rdar://9281377
llvm-svn: 134016 | 
| | 
| 
| 
| 
| 
| 
| 
| | register aliases. Fixes unnecessary renames of clobbers.
Fixes part of rdar://9425559
llvm-svn: 133485 | 
| | 
| 
| 
| 
| 
| | Luis Felipe Strano Moraes!
llvm-svn: 129559 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | which versions of an OS provide a certain facility. For example,
  void foo()
  __attribute__((availability(macosx,introduced=10.2,deprecated=10.4,obsoleted=10.6)));
says that the function "foo" was introduced in 10.2, deprecated in
10.4, and completely obsoleted in 10.6. This attribute ties in with
the deployment targets (e.g., -mmacosx-version-min=10.1 specifies that
we want to deploy back to Mac OS X 10.1). There are several concrete
behaviors that this attribute enables, as illustrated with the
function foo() above:
  - If we choose a deployment target >= Mac OS X 10.4, uses of "foo"
    will result in a deprecation warning, as if we had placed
    attribute((deprecated)) on it (but with a better diagnostic)
  - If we choose a deployment target >= Mac OS X 10.6, uses of "foo"
    will result in an "unavailable" warning (in C)/error (in C++), as
    if we had placed attribute((unavailable)) on it
  - If we choose a deployment target prior to 10.2, foo() is
    weak-imported (if it is a kind of entity that can be weak
    imported), as if we had placed the weak_import attribute on it.
Naturally, there can be multiple availability attributes on a
declaration, for different platforms; only the current platform
matters when checking availability attributes.
The only platforms this attribute currently works for are "ios" and
"macosx", since we already have -mxxxx-version-min flags for them and we
have experience there with macro tricks translating down to the
deprecated/unavailable/weak_import attributes. The end goal is to open
this up to other platforms, and even extension to other "platforms"
that are really libraries (say, through a #pragma clang
define_system), but that hasn't yet been designed and we may want to
shake out more issues with this narrower problem first.
Addresses <rdar://problem/6690412>.
As a drive-by bug-fix, if an entity is both deprecated and
unavailable, we only emit the "unavailable" diagnostic.
llvm-svn: 128127 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| | add support for the OpenCL __private, __local, __constant and
__global address spaces, as well as the __read_only, _read_write and
__write_only image access specifiers.  Patch originally by ARM;
language-specific address space support by myself.
llvm-svn: 127915 | 
| | 
| 
| 
| | llvm-svn: 125282 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | Fix the width and align of bool type on Darwin to be 32bits
while keeping it 8 everywhere else.
Change the definition of va_list to default to SV4 ABI one
and let darwin subtarget override this.
Both changes submitted by Nathan Whitehorn and reviewed
by Rafael Espindola.
llvm-svn: 122956 | 
| | 
| 
| 
| 
| 
| 
| | 16-bits in size.  Implement this by splitting WChar into two enums, like we have
for char.  This fixes a miscompmilation of XULRunner, PR8856.
llvm-svn: 122558 | 
| | 
| 
| 
| | llvm-svn: 122194 | 
| | 
| 
| 
| 
| 
| | constraint it's invalid. Fixes PR3905.
llvm-svn: 118146 | 
| | 
| 
| 
| 
| 
| | constraint. Fixes PR3904.
llvm-svn: 118145 | 
| | 
| 
| 
| | llvm-svn: 116699 | 
| | 
| 
| 
| | llvm-svn: 114490 | 
| | 
| 
| 
| 
| 
| | for Clang side of support.
llvm-svn: 114253 | 
| | 
| 
| 
| 
| 
| | Allow '<' and '>' as constraints for input or output.
llvm-svn: 113246 | 
| | 
| 
| 
| 
| 
| 
| | it deserves its own enumerator.  Obviously the implementations should
closely follow the Itanium ABI except in cases of divergence.
llvm-svn: 111749 | 
| | 
| 
| 
| | llvm-svn: 110870 | 
| | 
| 
| 
| | llvm-svn: 110764 | 
| | 
| 
| 
| 
| 
| | we have the full fix.
llvm-svn: 110706 | 
| | 
| 
| 
| 
| 
| 
| 
| | whether to use objc_msgSend_fpret; the choice is target dependent, not Obj-C ABI
dependent.
 - <rdar://problem/8139758> arm objc _objc_msgSend_fpret bug
llvm-svn: 108379 | 
| | 
| 
| 
| 
| 
| | constraints, per pr7338.
llvm-svn: 108028 | 
| | 
| 
| 
| | llvm-svn: 105500 | 
| | 
| 
| 
| | llvm-svn: 104789 | 
| | 
| 
| 
| 
| 
| | variants.  This fixes neon inline asm which my patch for PR6780 broke.
llvm-svn: 102181 | 
| | 
| 
| 
| | llvm-svn: 101370 | 
| | 
| 
| 
| | llvm-svn: 101369 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | - Used to determine whether the alignment of the type in a bit-field is
   respected when laying out structures. The default is true, targets can
   override this as needed.
 - This is designed to correspond to the PCC_BITFIELD_TYPE_MATTERS macro in
   gcc. The AST/Sema implementation only affects one line, unless I have
   forgotten something. I'd appreciate further review.
 - IRgen still needs to be updated to fully support this (which is effectively
   PR5591).
llvm-svn: 101356 | 
| | 
| 
| 
| | llvm-svn: 94917 | 
| | 
| 
| 
| | llvm-svn: 91540 | 
| | 
| 
| 
| 
| 
| | Ken Dyck.
llvm-svn: 89520 | 
| | 
| 
| 
| 
| 
| 
| | into TargetInfo, just derive this based on the underlying type.
This prevents them from getting out of synch, patch by Ken Dyck!
llvm-svn: 86976 | 
| | 
| 
| 
| | llvm-svn: 86395 | 
| | 
| 
| 
| | llvm-svn: 86183 | 
| | 
| 
| 
| | llvm-svn: 86177 | 
| | 
| 
| 
| | llvm-svn: 86167 | 
| | 
| 
| 
| | llvm-svn: 85076 | 
| | 
| 
| 
| 
| 
| | patch by Ken Dyck!
llvm-svn: 84746 | 
| | 
| 
| 
| | llvm-svn: 84740 | 
| | 
| 
| 
| 
| 
| | previously we only recognized it on inputs.
llvm-svn: 83939 | 
| | 
| 
| 
| | llvm-svn: 81346 |