/external/clang/test/ARCMT/ |
D | cxx-checking.mm | 4 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 8 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 12 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 29 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 33 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 41 …ween ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}} \ 42 …ot be shared between ARC and non-ARC code; add a non-trivial destructor to make it ABI-compatible}} 47 …ween ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}} \ 48 …ot be shared between ARC and non-ARC code; add a non-trivial destructor to make it ABI-compatible}} 53 …ween ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}} \ [all …]
|
/external/clang/test/SemaObjCXX/ |
D | arc-non-pod.mm | 4 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 8 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 12 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 29 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 33 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 41 …ween ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}} \ 42 …ot be shared between ARC and non-ARC code; add a non-trivial destructor to make it ABI-compatible}} 47 …ween ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}} \ 48 …ot be shared between ARC and non-ARC code; add a non-trivial destructor to make it ABI-compatible}} 53 …ween ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}} \ [all …]
|
/external/clang/test/SemaObjC/ |
D | sizeof-interface.m | 26 …(I0) // expected-error {{invalid application of 'sizeof' to interface 'I0' in non-fragile ABI}} 35 …of(I0) // expected-error {{invalid application of 'sizeof' to interface 'I0' in non-fragile ABI}} 46 …truct { @defs(I1); } I1_defs; // expected-error {{invalid application of @defs in non-fragile ABI}} 54 …-error {{arithmetic on pointer to interface 'I0', which is not a constant size in non-fragile ABI}} 55 …-error {{arithmetic on pointer to interface 'I0', which is not a constant size in non-fragile ABI}} 56 …-error {{arithmetic on pointer to interface 'I0', which is not a constant size in non-fragile ABI}} 58 …ected-error {{subscript requires size of interface 'I0', which is not constant in non-fragile ABI}} 67 …zeof(I)]; // expected-error {{invalid application of 'sizeof' to interface 'I' in non-fragile ABI}} 88 …error {{arithmetic on pointer to interface 'Foo', which is not a constant size in non-fragile ABI}} 89 …error {{arithmetic on pointer to interface 'Foo', which is not a constant size in non-fragile ABI}}
|
D | deref-interface.m | 9 …)self = *(NSView *)realView; // expected-error {{cannot assign to class object in non-fragile ABI}}
|
/external/libpng/scripts/ |
D | makefile.sgi | 47 ABI= 52 CFLAGS=$(ABI) -I$(ZLIBINC) -O $(WARNMORE) -DPNG_NO_MMX_CODE 53 LDFLAGS_A=$(ABI) -L. -L$(ZLIBLIB) -lpng12 -lz -lm 54 LDFLAGS=$(ABI) -L. -L$(ZLIBLIB) -lpng -lz -lm 55 LDSHARED=cc $(ABI) -shared -soname $(LIBSOMAJ) \ 57 LDLEGACY=cc $(ABI) -shared -soname $(OLDSOMAJ) \
|
D | makefile.sggcc | 47 ABI= 50 CFLAGS=$(ABI) -I$(ZLIBINC) -O $(WARNMORE) -fPIC -mabi=n32 -DPNG_NO_MMX_CODE 51 LDFLAGS=$(ABI) -L. -L$(ZLIBLIB) -lpng -lz -lm 52 LDSHARED=cc $(ABI) -shared -soname $(LIBSOMAJ) \ 54 LDLEGACY=cc $(ABI) -shared -soname $(OLDSOMAJ) \
|
/external/clang/test/CodeGenObjC/ |
D | next-objc-dispatch.m | 21 // (1) fragile ABI, legacy dispatch 22 // (2) non-fragile ABI, legacy dispatch 23 // (2) non-fragile ABI, non-legacy dispatch 24 // (2) non-fragile ABI, mixed dispatch 26 // Note that fragile ABI and non-fragile ABI legacy dispatch are not the same,
|
/external/libpng/contrib/gregbook/ |
D | Makefile.sgi | 56 ABI= 57 CFLAGS = $(ABI) -O -fullwarn $(INCS) 58 LDFLAGS = $(ABI)
|
/external/dbus/ |
D | README | 6 - ABI stability policy 59 Development snapshots make no ABI stability guarantees for new ABI 126 API/ABI Policy 154 major.minor.micro) are devel snapshots for testing, and any new ABI 158 Any ABI found in a stable release, however, is frozen. 160 ABI will not be added in a stable series if we can help it. i.e. the 161 ABI of 1.2.0 and 1.2.5 you can expect to be the same, while the ABI of 184 maturity, and ABI stability policies. Please consult the documentation
|
/external/clang/test/Analysis/ |
D | rdar-7168531.m | 5 // fragile Objective-C ABI. 15 return ++p; // This is only valid for the fragile ABI.
|
/external/clang/include/clang/Basic/ |
D | TargetInfo.h | 494 TargetCXXABI ABI = llvm::StringSwitch<TargetCXXABI>(Name) in setCXXABI() local 499 if (ABI == Unknown) return false; in setCXXABI() 500 return setCXXABI(ABI); in setCXXABI() 506 virtual bool setCXXABI(TargetCXXABI ABI) { in setCXXABI() argument 507 CXXABI = ABI; in setCXXABI()
|
D | TargetOptions.h | 29 std::string ABI; variable
|
D | DiagnosticCommonKinds.td | 81 def err_target_unknown_abi : Error<"unknown target ABI '%0'">; 82 def err_target_unknown_cxxabi : Error<"unknown C++ ABI '%0'">;
|
/external/llvm/docs/ |
D | ExtendedIntegerResults.txt | 16 to implement the ABI correctly. If we need to sign extend the result according 17 to the ABI, we really really do need to do this to preserve correctness. 2) 90 I suggest that we have the front-end fully lower out the ABI issues here to 115 specify/infer the guarantees provided by the ABI to allow other optimizations. 124 The major disadvantage of doing this sort of thing is that it makes the ABI
|
/external/clang/docs/ |
D | Block-ABI-Apple.txt | 36 This document describes the Apple ABI implementation specification of Blocks. 38 …ABI is found in Mac OS X 10.6, and shall be referred to as 10.6.ABI. As of 2010/3/16, the followin… 40 Since the Apple ABI references symbols from other elements of the system, any attempt to use this A… 44 The ABI of blocks consist of their layout and the runtime functions required by the compiler. 58 // required ABI.2010.3.16 64 The following flags bits are in use thusly for a possible ABI.2010.3.16: 74 In 10.6.ABI the (1<<29) was usually set and was always ignored by the runtime - it had been a trans… 77 case (0<<29): 10.6.ABI, no signature field available 78 case (1<<29): 10.6.ABI, no signature field available 79 case (2<<29): ABI.2010.3.16, regular calling convention, presence of signature field [all …]
|
/external/llvm/test/CodeGen/CellSPU/ |
D | v2i32.ll | 65 ;Alignment of <2 x i32> is not *directly* defined in the ABI 67 ;alignment (according to ABI). This tests that the size of
|
/external/clang/lib/Basic/ |
D | Targets.cpp | 1913 std::string ABI, CPU; member in __anon180de62a1911::ARMTargetInfo 1927 : TargetInfo(TripleStr), ABI("aapcs-linux"), CPU("arm1136j-s") in ARMTargetInfo() 1956 virtual const char *getABI() const { return ABI.c_str(); } in getABI() 1958 ABI = Name; in setABI() 2090 if (ABI == "aapcs" || ABI == "aapcs-linux") in getTargetDefines() 2661 std::string ABI, CPU; member in __anon180de62a2111::MipsTargetInfo 2665 MipsTargetInfo(const std::string& triple) : TargetInfo(triple), ABI("o32") { in MipsTargetInfo() 2671 virtual const char *getABI() const { return ABI.c_str(); } in getABI() 2675 ABI = Name; in setABI() 2686 Features[ABI] = true; in getDefaultFeatures() [all …]
|
/external/clang/test/Preprocessor/ |
D | non_fragile_feature1.m | 7 #error Non-fragile ABI not used for compilation but feature macro set.
|
D | non_fragile_feature.m | 7 #error Non-fragile ABI used for compilation but feature macro not set.
|
/external/clang/docs/tools/ |
D | clang.pod | 211 Select the Objective-C ABI version to use. Available versions are 1 (legacy 212 "fragile" ABI), 2 (non-fragile ABI 1), and 3 (non-fragile ABI 2). 216 Select the Objective-C non-fragile ABI version to use by default. This will only 217 be used as the Objective-C ABI when the non-fragile ABI is enabled (either via 222 Enable use of the Objective-C non-fragile ABI. On platforms for which this is 223 the default ABI, it can be disabled with B<-fno-objc-nonfragile-abi>.
|
/external/llvm/lib/Target/Mips/ |
D | Mips.td | 40 "Enable o32 ABI">; 42 "Enable eabi ABI">;
|
/external/libvpx/vpx_ports/ |
D | x86_abi_support.asm | 80 ; Return the proper symbol name for the target ABI. 101 ; 64 bit ABI passes arguments in registers. This is a workaround to get up 258 ; must keep XMM6:XMM15 (libvpx uses XMM6 and XMM7) on Win64 ABI
|
/external/llvm/test/CodeGen/X86/ |
D | fast-isel-tailcall.ll | 4 ; On x86, -tailcallopt changes the ABI so the caller shouldn't readjust
|
/external/llvm/test/Transforms/InstCombine/ |
D | align-external.ll | 4 ; alignment. They may only have the ABI minimum alignment.
|
/external/llvm/lib/Target/MBlaze/ |
D | MBlazeCallingConv.td | 17 // MBlaze ABI Calling Convention
|