Home
last modified time | relevance | path

Searched refs:ctors (Results 1 – 25 of 30) sorted by relevance

12

/freebsd-14.2/sys/conf/
H A Dldscript.i38633 .rel.ctors : { *(.rel.ctors) }
34 .rela.ctors : { *(.rela.ctors) }
103 .ctors :
114 KEEP (*crtbegin.o(.ctors))
115 KEEP (*crtbegin?.o(.ctors))
117 the crtend.o file until after the sorted ctors.
119 end of ctors marker and it must be last */
120 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
121 KEEP (*(SORT(.ctors.*)))
122 KEEP (*(.ctors))
H A Dldscript.amd6438 .rel.ctors : { *(.rel.ctors) }
39 .rela.ctors : { *(.rela.ctors) }
109 .ctors :
120 KEEP (*crtbegin.o(.ctors))
121 KEEP (*crtbegin?.o(.ctors))
123 the crtend.o file until after the sorted ctors.
125 end of ctors marker and it must be last */
126 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
127 KEEP (*(SORT(.ctors.*)))
128 KEEP (*(.ctors))
H A Dldscript.riscv49 .rel.ctors : { *(.rel.ctors) }
50 .rela.ctors : { *(.rela.ctors) }
90 .ctors :
92 *(.ctors)
H A Dldscript.arm48 .rel.ctors : { *(.rel.ctors) }
49 .rela.ctors : { *(.rela.ctors) }
102 .ctors :
104 *(.ctors)
H A Dldscript.arm6448 .rel.ctors : { *(.rel.ctors) }
49 .rela.ctors : { *(.rela.ctors) }
117 .ctors :
119 *(.ctors)
H A Dldscript.powerpc48 .rela.ctors : { *(.rela.ctors) }
97 /* Put .ctors and .dtors next to the .got2 section, so that the pointers
103 .ctors : { *(.ctors) }
H A Dldscript.powerpcspe48 .rela.ctors : { *(.rela.ctors) }
98 /* Put .ctors and .dtors next to the .got2 section, so that the pointers
104 .ctors : { *(.ctors) }
H A Dldscript.powerpc64le62 .rela.ctors : { *(.rela.ctors) }
122 /* Put .ctors and .dtors next to the .got2 section, so that the pointers
128 .ctors : { *(.ctors) }
H A Dldscript.powerpc6463 .rela.ctors : { *(.rela.ctors) }
123 /* Put .ctors and .dtors next to the .got2 section, so that the pointers
129 .ctors : { *(.ctors) }
H A Dvdso_amd64.ldscript75 *(.ctors)
H A Dvdso_amd64_ia32.ldscript76 *(.ctors)
/freebsd-14.2/stand/uboot/arch/arm/
H A Darm.ldscript39 .rela.ctors : { *(.rela.ctors) }
65 /* Put .ctors and .dtors next to the .got2 section, so that the pointers
71 .ctors : { *(.ctors) }
/freebsd-14.2/stand/kboot/kboot/arch/powerpc64/
H A Dpowerpc64.ldscript27 .rela.ctors : { *(.rela.ctors) }
64 /* Put .ctors and .dtors next to the .got2 section, so that the pointers
70 .ctors : { *(.ctors) }
/freebsd-14.2/stand/powerpc/ofw/
H A Dppc-common.ldscript29 .rela.ctors : { *(.rela.ctors) }
66 /* Put .ctors and .dtors next to the .got2 section, so that the pointers
72 .ctors : { *(.ctors) }
/freebsd-14.2/stand/uboot/arch/powerpc/
H A Dpowerpc.ldscript28 .rela.ctors : { *(.rela.ctors) }
64 /* Put .ctors and .dtors next to the .got2 section, so that the pointers
70 .ctors : { *(.ctors) }
/freebsd-14.2/contrib/llvm-project/libcxx/include/experimental/
H A Dmemory27 // pointer-accepting ctors
31 // copying ctors (in addition to compiler-generated copy ctor)
/freebsd-14.2/stand/common/
H A Dload_elf.c547 Elf_Addr ctors; local
737 ctors = shdr[i].sh_addr;
739 sizeof(ctors), &ctors);
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def53 CODEGENOPT(CXXCtorDtorAliases, 1, 0) ///< Emit complete ctors/dtors as linker
54 ///< aliases to base ctors when possible.
328 ///< .ctors.
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFindingAction.cpp165 for (const auto *CtorDecl : RecordDecl->ctors()) in addUSRsOfCtorDtors()
/freebsd-14.2/contrib/llvm-project/lld/docs/ELF/
H A Dlinker_script.rst69 - Sort ``.ctors.*``/``.dtors.*``/``.init_array.*``/``.fini_array.*`` and
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp2073 auto ctors = builder.beginArray(CtorStructTy); in EmitCtorList() local
2075 auto ctor = ctors.beginStruct(CtorStructTy); in EmitCtorList()
2082 ctor.finishAndAddTo(ctors); in EmitCtorList()
2086 ctors.finishAndCreateGlobal(GlobalName, getPointerAlign(), in EmitCtorList()
H A DCGDebugInfo.cpp2607 for (const CXXConstructorDecl *Ctor : RD->ctors()) { in canUseCtorHoming()
/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DOptions.td747 def: F<"no-ctors-in-init-array">;
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp6879 for (const CXXConstructorDecl *CD : D->ctors()) { in canPassInRegisters()
9760 for (auto *I : RD->ctors()) { in ShouldDeleteSpecialMember()
9897 for (auto *CI : RD->ctors()) { in findTrivialSpecialMember()
9997 for (auto *CI : RD->ctors()) in findUserDeclaredCtor()
10451 for (const CXXConstructorDecl *CD : RD.ctors()) in checkIllFormedTrivialABIStruct()
14969 for (auto *I : RD->ctors()) { in diagnoseDeprecatedCopyOperation()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h680 ctor_range ctors() const { return ctor_range(ctor_begin(), ctor_end()); } in ctors() function

12