| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | strong-in-c-struct.m | 5 } Strong; typedef 10 Strong t; 11 …callee_variadic("s", t); // expected-error {{cannot pass non-trivial C object of type 'Strong' by … 18 …Strong x; // expected-note {{jump bypasses initialization of variable of non-trivial C struct type… 30 Strong x; // expected-note {{jump exits scope of variable with non-trivial destructor}} 36 void func2(Strong); 39 …Strong x; // expected-note {{jump enters lifetime of block which captures a C struct that is non-t… 53 …Strong x; // expected-note {{jump exits scope of variable with non-trivial destructor}} expected-n… 61 …(void)(Strong){ .a = x }; // expected-note {{jump enters lifetime of a compound literal that is no… 72 …(void)(Strong){ .a = x }; // expected-note {{jump exits lifetime of a compound literal that is non…
|
| /llvm-project-15.0.7/llvm/unittests/ExecutionEngine/JITLink/ |
| H A D | LinkGraphTests.cpp | 270 auto &S1 = G.addExternalSymbol("S1", 4, Linkage::Strong); in TEST() 288 G.makeDefined(S1, B1, 0, 4, Linkage::Strong, Scope::Default, false); in TEST() 321 auto &S1 = G.addDefinedSymbol(B1, 0, "S1", B1.getSize(), Linkage::Strong, in TEST() 388 G.addDefinedSymbol(B1, 1, "S2", B1.getSize() - 1, Linkage::Strong, in TEST() 394 G.addDefinedSymbol(B2, 1, "S4", B2.getSize() - 1, Linkage::Strong, in TEST() 518 auto &S4 = G.addDefinedSymbol(B1, 12, "S4", 4, Linkage::Strong, in TEST() 521 auto &S5 = G.addDefinedSymbol(B1, 0, "S5", 16, Linkage::Strong, in TEST() 528 auto &ES1 = G.addDefinedSymbol(EB, 0, "TS1", 4, Linkage::Strong, in TEST() 530 auto &ES2 = G.addDefinedSymbol(EB, 4, "TS2", 4, Linkage::Strong, in TEST() 532 auto &ES3 = G.addDefinedSymbol(EB, 8, "TS3", 4, Linkage::Strong, in TEST() [all …]
|
| /llvm-project-15.0.7/clang/test/CodeGenObjCXX/ |
| H A D | inheriting-constructor-cleanup.mm | 4 struct Strong { struct 10 Base(Strong s, ...) {} argument 31 // CHECK: call void @_ZN6StrongD1Ev(%struct.Strong* {{.*}}) 36 // CHECK-LABEL: define linkonce_odr void @_ZN6StrongD1Ev(%struct.Strong* {{.*}}) 37 // CHECK: call void @_ZN6StrongD2Ev(%struct.Strong* {{.*}}) 39 // CHECK-LABEL: define linkonce_odr void @_ZN6StrongD2Ev(%struct.Strong* {{.*}})
|
| H A D | objc-struct-cxx-abi.mm | 43 struct __attribute__((trivial_abi)) Strong { 45 struct Strong { 74 - (void)passStrong:(Strong)a; 133 void testParamStrong(Strong a) { 148 void testCallStrong(Strong *a) { 163 Strong testReturnStrong(Strong *a) { 203 virtual Strong m0(); 207 virtual Strong m0(); 211 Strong m0() override; 214 Strong D0::m0() { return {}; } [all …]
|
| H A D | msabi-objc-extensions.mm | 46 // CHECK-LABEL: "?f@@YAXU?$S@U?$Strong@PAUobjc_object@@@__ObjC@@@@@Z" 79 // CHECK-LABEL: "?f@@YAXU?$S@U?$Strong@PAUI@@@__ObjC@@@@@Z" 82 // CHECK-LABEL: "?f@@YAXU?$S@U?$Strong@PAU?$KindOf@UI@@@__ObjC@@@__ObjC@@@@@Z" 85 // CHECK-LABEL: "?f@@YAXU?$S@U?$Strong@PAU?$KindOf@U?$I@U?$Protocol@UP@@@__ObjC@@@@@__ObjC@@@__ObjC…
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | StackProtector.cpp | 118 bool Strong, in ContainsProtectableArray() argument 128 if (!Strong && (InStruct || !Trip.isOSDarwin())) in ContainsProtectableArray() 139 if (Strong) in ContainsProtectableArray() 150 if (ContainsProtectableArray(ET, IsLarge, Strong, true)) { in ContainsProtectableArray() 279 bool Strong = false; in RequiresStackProtector() local 298 Strong = true; // Use the same heuristic as strong to determine SSPLayout in RequiresStackProtector() 300 Strong = true; in RequiresStackProtector() 324 } else if (Strong) { in RequiresStackProtector() 342 if (ContainsProtectableArray(AI->getAllocatedType(), IsLarge, Strong)) { in RequiresStackProtector() 357 if (Strong && HasAddressTaken(AI, M->getDataLayout().getTypeAllocSize( in RequiresStackProtector()
|
| H A D | SpillPlacement.h | 124 void addPrefSpill(ArrayRef<unsigned> Blocks, bool Strong);
|
| H A D | SpillPlacement.cpp | 281 void SpillPlacement::addPrefSpill(ArrayRef<unsigned> Blocks, bool Strong) { in addPrefSpill() argument 284 if (Strong) in addPrefSpill()
|
| /llvm-project-15.0.7/clang/test/CodeGenObjC/ |
| H A D | objc-dispatch-null-check.m | 7 } Strong; typedef 9 Strong getStrong(void); 12 - (void)passStrong:(Strong)a; argument
|
| H A D | nontrivial-c-struct-exception.m | 9 } Strong; typedef 34 Strong genStrong(void); 35 void calleeStrong(Strong, Strong);
|
| H A D | objc-non-trivial-struct-nrvo.m | 18 } Strong; typedef 67 Strong testStrong(void) { 68 Strong a;
|
| H A D | strong-in-c-struct.m | 18 } Strong; typedef 26 Strong f0; 33 Strong f1; 52 Strong f0[2][2]; 95 void func(Strong *); 583 void test_copy_constructor_StrongVolatile1(Strong *s) { 584 volatile Strong t = *s; 603 Strong t; 645 Strong a[n];
|
| H A D | fragile-arc.m | 18 // Strong layout: scan the first word. 120 // Strong layout: skip five, scan four, skip three, scan seven
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | TypePrinter.cpp | 402 IncludeStrongLifetimeRAII Strong(Policy); in printPointerBefore() local 413 IncludeStrongLifetimeRAII Strong(Policy); in printPointerAfter() local 445 IncludeStrongLifetimeRAII Strong(Policy); in printLValueReferenceBefore() local 458 IncludeStrongLifetimeRAII Strong(Policy); in printLValueReferenceAfter() local 470 IncludeStrongLifetimeRAII Strong(Policy); in printRValueReferenceBefore() local 483 IncludeStrongLifetimeRAII Strong(Policy); in printRValueReferenceAfter() local 495 IncludeStrongLifetimeRAII Strong(Policy); in printMemberPointerBefore() local 512 IncludeStrongLifetimeRAII Strong(Policy); in printMemberPointerAfter() local 523 IncludeStrongLifetimeRAII Strong(Policy); in printConstantArrayBefore() local 545 IncludeStrongLifetimeRAII Strong(Policy); in printIncompleteArrayBefore() local [all …]
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | COFFLinkGraphBuilder.cpp | 236 &G->addExternalSymbol(SymbolName, Sym->getValue(), Linkage::Strong); in graphifySymbols() 394 Linkage::Strong, Scope::Local, false); in createDefinedSymbol() 418 *B, Symbol.getValue(), SymbolName, 0, Linkage::Strong, Scope::Default, in createDefinedSymbol() 436 *B, Symbol.getValue(), SymbolName, 0, Linkage::Strong, Scope::Local, in createDefinedSymbol() 442 *B, Symbol.getValue(), SymbolName, 0, Linkage::Strong, Scope::Local, in createDefinedSymbol() 476 Linkage L = Linkage::Strong; in createCOMDATExportRequest() 479 L = Linkage::Strong; in createCOMDATExportRequest()
|
| H A D | DefineExternalSectionStartAndEndSymbols.h | 57 G.makeDefined(*Sym, *SR.getFirstBlock(), 0, 0, Linkage::Strong, in operator() 64 SR.getLastBlock()->getSize(), 0, Linkage::Strong, in operator()
|
| H A D | ELF_x86_64.cpp | 316 Linkage::Strong, Scope::Local, true); in getOrCreateGOTSymbol() 320 Linkage::Strong, Scope::Local, false, true); in getOrCreateGOTSymbol()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/Inputs/ |
| H A D | dwarfdump-objc.m | 14 @property (strong) NSObject *Strong; property
|
| /llvm-project-15.0.7/llvm/unittests/ExecutionEngine/Orc/ |
| H A D | ObjectLinkingLayerTest.cpp | 49 G->addDefinedSymbol(B1, 4, "_X", 4, Linkage::Strong, Scope::Default, false, in TEST_F()
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | StackProtector.h | 93 bool ContainsProtectableArray(Type *Ty, bool &IsLarge, bool Strong = false,
|
| /llvm-project-15.0.7/mlir/lib/IR/ |
| H A D | AsmPrinter.cpp | 1493 Strong, // All other binary operators. enumerator 2393 if (enclosingTightness == BindingStrength::Strong) in printAffineExprInternal() 2402 if (enclosingTightness == BindingStrength::Strong) in printAffineExprInternal() 2412 if (enclosingTightness == BindingStrength::Strong) in printAffineExprInternal() 2418 if (enclosingTightness == BindingStrength::Strong) in printAffineExprInternal() 2432 printAffineExprInternal(rhs.getLHS(), BindingStrength::Strong, in printAffineExprInternal() 2439 if (enclosingTightness == BindingStrength::Strong) in printAffineExprInternal() 2448 printAffineExprInternal(rhs.getLHS(), BindingStrength::Strong, in printAffineExprInternal() 2451 if (enclosingTightness == BindingStrength::Strong) in printAffineExprInternal() 2464 if (enclosingTightness == BindingStrength::Strong) in printAffineExprInternal() [all …]
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/ |
| H A D | dwarfdump-objc.test | 49 CHECK: DW_AT_APPLE_property_name {{.*}} "Strong"
|
| /llvm-project-15.0.7/clang/lib/ARCMigrate/ |
| H A D | TransGCAttrs.cpp | 102 Kind = MigrationContext::GCAttrOccurrence::Strong; in handleAttr() 335 << (Attr.Kind == GCAttrOccurrence::Strong ? "strong" : "weak"); in dumpGCAttrs()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | CommentHTMLTags.td | 8 def Strong : Tag<"strong">;
|
| /llvm-project-15.0.7/lld/MachO/ |
| H A D | LTO.cpp | 99 RefState::Strong); in add()
|