| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/ |
| H A D | AvoidBindCheck.cpp | 548 LambdaProperties LP; in getLambdaProperties() local 559 LP.Callable.Decl = in getLambdaProperties() 560 getCallMethodDecl(Result, LP.Callable.Type, LP.Callable.Materialization); in getLambdaProperties() 563 LP.Callable.CE = CE_Var; in getLambdaProperties() 577 LP.BindArguments = buildBindArguments(Result, LP.Callable); in getLambdaProperties() 579 LP.IsFixitSupported = isFixitSupported(LP.Callable, LP.BindArguments); in getLambdaProperties() 581 return LP; in getLambdaProperties() 613 CaptureSet, "", LP.Callable.CM, LP.Callable.CE, in emitCaptureList() 614 LP.Callable.CaptureIdentifier, LP.Callable.CaptureInitializer, Stream); in emitCaptureList() 663 if (!LP.IsFixitSupported) in check() [all …]
|
| /llvm-project-15.0.7/lld/MachO/ |
| H A D | ObjC.cpp | 23 template <class LP> static bool objectHasObjCSection(MemoryBufferRef mb) { in objectHasObjCSection() 24 using SectionHeader = typename LP::section; in objectHasObjCSection() 27 reinterpret_cast<const typename LP::mach_header *>(mb.getBufferStart()); in objectHasObjCSection() 28 if (hdr->magic != LP::magic) in objectHasObjCSection() 32 findCommand<typename LP::segment_command>(hdr, LP::segmentLCType)) { in objectHasObjCSection()
|
| H A D | Target.h | 35 template <class LP> TargetInfo(LP) { in TargetInfo() argument 38 magic = LP::magic; in TargetInfo() 39 pageZeroSize = LP::pageZeroSize; in TargetInfo() 40 headerSize = sizeof(typename LP::mach_header); in TargetInfo() 41 wordSize = LP::wordSize; in TargetInfo() 42 p2WordSize = llvm::CTLog2<LP::wordSize>(); in TargetInfo()
|
| H A D | Writer.cpp | 55 template <class LP> void createOutputSections(); 56 template <class LP> void createLoadCommands(); 67 template <class LP> void run(); 227 return sizeof(typename LP::segment_command) + in getSize() 233 using SectionHeader = typename LP::section; in writeTo() 238 c->cmd = LP::segmentLCType; in writeTo() 527 c->cmd = LP::encryptionInfoLCType; in writeTo() 1159 template <class LP> void Writer::run() { in run() 1183 createOutputSections<LP>(); in run() 1191 createLoadCommands<LP>(); in run() [all …]
|
| H A D | InputFiles.h | 161 template <class LP> void parse(); 182 template <class LP> void parseLazy(); 184 template <class LP> 185 void parseSymbols(ArrayRef<typename LP::section> sectionHeaders, 186 ArrayRef<typename LP::nlist> nList, const char *strtab,
|
| /llvm-project-15.0.7/clang/test/Rewriter/ |
| H A D | inner-block-helper-funcs.mm | 2 // RUN: FileCheck -check-prefix CHECK-LP --input-file=%t-rw.cpp %s 29 // CHECK-LP: _Block_object_assign((void*)&dst->innerBlock, (void*)src->innerBlock, 7 30 // CHECK-LP: _Block_object_dispose((void*)src->innerBlock, 7 31 // CHECK-LP: _Block_object_assign((void*)&dst->innerObject, (void*)src->innerObject, 3 32 // CHECK-LP: _Block_object_dispose((void*)src->innerObject, 3
|
| H A D | rewrite-cast-ivar-access.mm | 2 // RUN: FileCheck -check-prefix CHECK-LP --input-file=%t-rw.cpp %s 49 // CHECK-LP: ((struct G_IMPL *)arg)->ivar 51 // CHECK-LP: objc_assign_strongCast((id)value) 53 // CHECK-LP: ((struct RealClass_IMPL *)((RealClass *)((struct Foo_IMPL *)self)->reserved))->f
|
| H A D | rewrite-typeof.mm | 2 // RUN: FileCheck -check-prefix CHECK-LP --input-file=%t-rw.cpp %s 22 // CHECK-LP: ((void (^)(void))_Block_copy((const void *)(b))) 37 // CHECK-LP: int aVal = a; 39 // CHECK-LP: int bVal;
|
| H A D | rewrite-modern-typeof.mm | 2 // RUN: FileCheck -check-prefix CHECK-LP --input-file=%t-rw.cpp %s 24 // CHECK-LP: ((void (^)(void))_Block_copy((const void *)(b))) 45 // CHECK-LP: int aVal = a; 47 // CHECK-LP: int bVal;
|
| H A D | blockcast3.mm | 3 // RUN: FileCheck -check-prefix CHECK-LP --input-file=%t-rw.cpp %s 5 // RUN: FileCheck -check-prefix CHECK-LP --input-file=%t-modern-rw.cpp %s 26 // CHECK-LP: (__Block_byref_q_0 *)&q
|
| H A D | rewrite-category-property.mm | 2 // RUN: FileCheck -check-prefix CHECK-LP --input-file=%t-rw.cpp %s 15 // CHECK-LP: // @property (readonly) Z *z;
|
| H A D | rewrite-line-directive.m | 3 // RUN: FileCheck -check-prefix CHECK-LP --input-file=%t-rw.cpp %s 17 // CHECK-LP-NOT: #line
|
| H A D | rewrite-message-expr.mm | 2 // RUN: FileCheck -check-prefix CHECK-LP --input-file=%t-rw.cpp %s 25 // CHECK-LP: ((struct Foo_IMPL *)x(((id (*)(id, SEL))(void *)objc_msgSend)(objc_getClass("Baz"), se…
|
| /llvm-project-15.0.7/lld/MachO/Arch/ |
| H A D | ARM64Common.h | 23 template <class LP> ARM64Common(LP lp) : TargetInfo(lp) {} in ARM64Common() 103 template <class LP> 111 in.lazyPointers->addr + sym.stubsIndex * LP::wordSize; in writeStub() 118 template <class LP> 132 in.got->addr + in.stubHelper->stubBinder->gotIndex * LP::wordSize; in writeStubHelperHeader()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | MachineFunctionSplitter.cpp | 136 for (const MachineBasicBlock *LP : LandingPads) { in runOnMachineFunction() local 137 if (!isColdBlock(*LP, MBFI, PSI)) in runOnMachineFunction() 141 for (MachineBasicBlock *LP : LandingPads) in runOnMachineFunction() 142 LP->setSectionID(MBBSectionID::ColdSectionID); in runOnMachineFunction()
|
| H A D | DwarfEHPrepare.cpp | 137 for (auto *LP : CleanupLPads) { in pruneUnreachableResumes() local 138 if (isPotentiallyReachable(LP, RI, nullptr, &DTU->getDomTree())) { in pruneUnreachableResumes() 179 if (auto *LP = BB.getLandingPadInst()) in InsertUnwindResumeCalls() local 180 if (LP->isCleanup()) in InsertUnwindResumeCalls() 181 CleanupLPads.push_back(LP); in InsertUnwindResumeCalls() 202 if (auto *LP = BB.getLandingPadInst()) in InsertUnwindResumeCalls() local 203 if (LP->isCleanup()) in InsertUnwindResumeCalls()
|
| H A D | MachineFunction.cpp | 730 LandingPadInfo &LP = LandingPads[i]; in getOrCreateLandingPadInfo() local 731 if (LP.LandingPadBlock == LandingPad) in getOrCreateLandingPadInfo() 732 return LP; in getOrCreateLandingPadInfo() 741 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); in addInvoke() local 742 LP.BeginLabels.push_back(BeginLabel); in addInvoke() 743 LP.EndLabels.push_back(EndLabel); in addInvoke() 748 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); in addLandingPad() local 749 LP.LandingPadLabel = LandingPadLabel; in addLandingPad() 796 LP.TypeIds.push_back(getTypeIDFor(GV)); in addCatchTypeInfo() 805 LP.TypeIds.push_back(getFilterIDFor(IdsInFilter)); in addFilterTypeInfo() [all …]
|
| /llvm-project-15.0.7/llvm/test/Instrumentation/HWAddressSanitizer/ |
| H A D | landingpad.ll | 1 …%s -mtriple aarch64-linux-android29 -passes=hwasan -S | FileCheck %s --check-prefixes=COMMON,LP,ARM 2 …nux -hwasan-instrument-landing-pads -passes=hwasan -S | FileCheck %s --check-prefixes=COMMON,LP,X86 20 ; LP-NEXT: %[[X:[^ ]*]] = call i64 @llvm.read_register.i64(metadata ![[META:[^ ]*]]) 21 ; LP-NEXT: call void @__hwasan_handle_vfork(i64 %[[X]])
|
| /llvm-project-15.0.7/llvm/test/Transforms/SLPVectorizer/X86/ |
| H A D | operandorder.ll | 45 ; CHECK-NEXT: br label [[LP:%.*]] 61 ; SSE2-NEXT: br label [[LP:%.*]] 97 ; CHECK-NEXT: br label [[LP:%.*]] 113 ; SSE2-NEXT: br label [[LP:%.*]] 149 ; CHECK-NEXT: br label [[LP:%.*]] 165 ; SSE2-NEXT: br label [[LP:%.*]] 201 ; CHECK-NEXT: br label [[LP:%.*]] 217 ; SSE2-NEXT: br label [[LP:%.*]] 253 ; CHECK-NEXT: br label [[LP:%.*]] 272 ; SSE2-NEXT: br label [[LP:%.*]] [all …]
|
| /llvm-project-15.0.7/clang/test/SemaCUDA/ |
| H A D | builtins-unsafe-atomics-gfx90a.cu | 7 typedef __attribute__((address_space(3))) float *LP; typedef 11 *rtn = __builtin_amdgcn_ds_faddf((LP)addr, val, 0, 0, 0); in test_ds_atomic_add_f32()
|
| /llvm-project-15.0.7/clang/test/CodeGenCUDA/ |
| H A D | builtins-unsafe-atomics-gfx90a.cu | 6 typedef __attribute__((address_space(3))) float *LP; typedef 19 *rtn = __builtin_amdgcn_ds_faddf((LP)addr, val, 0, 0, 0); in test_ds_atomic_add_f32()
|
| /llvm-project-15.0.7/llvm/test/Transforms/SCCP/ |
| H A D | 2004-11-16-DeadInvoke.ll | 9 to label %T unwind label %LP ; <i32> [#uses=0] 10 LP:
|
| /llvm-project-15.0.7/bolt/lib/Core/ |
| H A D | Exceptions.cpp | 365 const MCSymbol *LP; // landing pad in updateEHRanges() member 392 PreviousEH.LP, PreviousEH.Action}); in updateEHRanges() 413 const MCSymbol *LP = nullptr; in updateEHRanges() local 416 std::tie(LP, Action) = *EHInfo; in updateEHRanges() 419 if (Throws && StartRange && PreviousEH.LP == LP && in updateEHRanges() 456 CallSite{StartRange, EndRange, PreviousEH.LP, PreviousEH.Action}); in updateEHRanges() 463 PreviousEH = EHInfo{LP, Action}; in updateEHRanges() 476 CallSite{StartRange, EndRange, PreviousEH.LP, PreviousEH.Action}); in updateEHRanges()
|
| /llvm-project-15.0.7/llvm/include/llvm/Analysis/ |
| H A D | LoopPass.h | 99 LoopPass *LP = static_cast<LoopPass *>(PassVector[N]); in getContainedPass() local 100 return LP; in getContainedPass()
|
| /llvm-project-15.0.7/bolt/test/runtime/X86/ |
| H A D | pie-exceptions-failed-split.test | 27 CHECK-SAME: [[LP:[^[:space:]]+]] 29 CHECK-NEXT: [[LP]]
|