Home
last modified time | relevance | path

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

12345

/external/llvm-project/lld/test/ELF/linkerscript/
Dsort-init.s2 ## Test SORT_BY_INIT_PRIORITY can be used to convert .ctors into .init_array
20 .section .ctors.65435, "a"
27 .section .ctors.65529,"a"
34 .section .ctors, "a"
40 *(SORT_BY_INIT_PRIORITY(.init_array.* .ctors.*) SORT_BY_INIT_PRIORITY(foo*))
41 *(.init_array .ctors)
/external/llvm-project/lld/test/ELF/
Dctors_dtors_priority.s31 .section .ctors, "aw", @progbits
33 .section .ctors.100, "aw", @progbits
35 .section .ctors.005, "aw", @progbits
37 .section .ctors, "aw", @progbits
39 .section .ctors, "aw", @progbits
Dgc-sections.s17 # NOGC: Name: .ctors
38 # GC1: Name: .ctors
59 # GC2: Name: .ctors
121 .section .ctors,"aw",@progbits
/external/llvm-project/llvm/test/CodeGen/X86/
Dconstructor.ll2 ; RUN: llc -mtriple x86_64-pc-linux -use-ctors < %s | FileCheck --check-prefix=CTOR %s
3 ; RUN: llc -mtriple x86_64-unknown-freebsd -use-ctors < %s | FileCheck --check-prefix=CTOR %s
4 ; RUN: llc -mtriple x86_64-pc-solaris2.11 -use-ctors < %s | FileCheck --check-prefix=CTOR %s
9 ; RUN: llc -mtriple i586-intel-elfiamcu -use-ctors < %s | FileCheck %s --check-prefix=MCU-CTORS
31 ; CTOR: .section .ctors.65520,"aGw",@progbits,v,comdat
34 ; CTOR-NEXT: .section .ctors.09980,"aGw",@progbits,v,comdat
37 ; CTOR-NEXT: .section .ctors,"aw",@progbits
61 ; MCU-CTORS: .section .ctors,"aw",@progbits
64 ; COFF-CTOR: .section .ctors.65520,"dw",associative,v
67 ; COFF-CTOR-NEXT: .section .ctors.09980,"dw",associative,v
[all …]
D2011-08-29-InitOrder.ll1 ; RUN: llc < %s -mtriple=i386-linux-gnu -use-ctors | FileCheck %s --check-prefix=CHECK-DEFAULT
6 ; CHECK-DEFAULT: .section .ctors.64535,"aw",@progbits
8 ; CHECK-DEFAULT: .section .ctors.63535,"aw",@progbits
10 ; CHECK-DEFAULT: .section .ctors.62535,"aw",@progbits
/external/llvm-project/llvm/test/CodeGen/RISCV/
Dinit-array.ll10 ; RUN: llc -mtriple=riscv32-unknown-linux-gnu -verify-machineinstrs -use-ctors -o - %s \
12 ; RUN: llc -mtriple=riscv32-unknown-elf -verify-machineinstrs -use-ctors -o - %s \
14 ; RUN: llc -mtriple=riscv64-unknown-linux-gnu -verify-machineinstrs -use-ctors -o - %s \
16 ; RUN: llc -mtriple=riscv64-unknown-elf -verify-machineinstrs -use-ctors -o - %s \
26 ;INITARRAY-NOT: .section .ctors
28 ;CTOR: .section .ctors
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DAnnotatedCreatorCollector.java102 List<ClassUtil.Ctor> ctors = null; in _findPotentialConstructors() local
118 if (ctors == null) { in _findPotentialConstructors()
119 ctors = new ArrayList<>(); in _findPotentialConstructors()
121 ctors.add(ctor); in _findPotentialConstructors()
127 if (ctors == null) { in _findPotentialConstructors()
135 ctorCount = ctors.size(); in _findPotentialConstructors()
153 if (ctors != null) { in _findPotentialConstructors()
157 ctorKeys[i] = new MemberKey(ctors.get(i).getConstructor()); in _findPotentialConstructors()
165 constructNonDefaultConstructor(ctors.get(i), mixinCtor)); in _findPotentialConstructors()
180 constructNonDefaultConstructor(ctors.get(i), null)); in _findPotentialConstructors()
/external/llvm-project/llvm/test/Linker/
Donly-needed-ctors1.ll1 ; RUN: llvm-link -S %s %p/Inputs/only-needed-ctors.ll | FileCheck %s --ch…
2 ; RUN: llvm-link -S -internalize %s %p/Inputs/only-needed-ctors.ll | FileCheck %s --ch…
3 ; RUN: llvm-link -S -only-needed %s %p/Inputs/only-needed-ctors.ll | FileCheck %s --ch…
4 ; RUN: llvm-link -S -only-needed -internalize %s %p/Inputs/only-needed-ctors.ll | FileCheck %s --ch…
Donly-needed-ctors2.ll1 ; RUN: llvm-link -S %s %p/Inputs/only-needed-ctors.ll | FileCheck %s --ch…
2 ; RUN: llvm-link -S -internalize %s %p/Inputs/only-needed-ctors.ll | FileCheck %s --ch…
3 ; RUN: llvm-link -S -only-needed %s %p/Inputs/only-needed-ctors.ll | FileCheck %s --ch…
4 ; RUN: llvm-link -S -only-needed -internalize %s %p/Inputs/only-needed-ctors.ll | FileCheck %s --ch…
Dctors.ll1 ; RUN: llvm-link %s %p/Inputs/ctors.ll -S -o - | \
3 ; RUN: llvm-link %p/Inputs/ctors.ll %s -S -o - | \
7 ; RUN: llvm-link %s %p/Inputs/ctors.ll -o %t.bc
/external/llvm/test/CodeGen/Hexagon/
Dctor.ll2 ; RUN: llc -march=hexagon < %s -use-ctors | FileCheck -check-prefix=CTOR %s
10 ;CTOR: .section .ctors
14 ;INITARRAY-NOT: .section .ctors
/external/llvm-project/llvm/test/CodeGen/Hexagon/
Dctor.ll2 ; RUN: llc -march=hexagon < %s -use-ctors | FileCheck -check-prefix=CTOR %s
10 ;CTOR: .section .ctors
14 ;INITARRAY-NOT: .section .ctors
/external/llvm/test/CodeGen/X86/
D2011-08-29-InitOrder.ll1 ; RUN: llc < %s -mtriple=i386-linux-gnu -use-ctors | FileCheck %s --check-prefix=CHECK-DEFAULT
6 ; CHECK-DEFAULT: .section .ctors.64535,"aw",@progbits
8 ; CHECK-DEFAULT: .section .ctors.63535,"aw",@progbits
10 ; CHECK-DEFAULT: .section .ctors.62535,"aw",@progbits
Dconstructor.ll1 ; RUN: llc -mtriple x86_64-pc-linux -use-ctors < %s | FileCheck --check-prefix=CTOR %s
18 ; CTOR: .section .ctors.65520,"aGw",@progbits,v,comdat
21 ; CTOR-NEXT: .section .ctors,"aw",@progbits
/external/llvm/test/Linker/
Dctors.ll1 ; RUN: llvm-link %s %p/Inputs/ctors.ll -S -o - | \
3 ; RUN: llvm-link %p/Inputs/ctors.ll %s -S -o - | \
7 ; RUN: llvm-link %s %p/Inputs/ctors.ll -o %t.bc
/external/llvm-project/lld/test/COFF/
Dctors_dtors_priority.s15 .section .ctors.00005, "w"
17 .section .ctors, "w"
19 .section .ctors.00100, "w"
/external/llvm-project/llvm/test/CodeGen/SPARC/
Dconstructor.ll1 ; RUN: llc -mtriple sparc-sun-solaris2.11 -use-ctors < %s | FileCheck --check-prefix=CTOR %s
17 ; CTOR: .section .ctors.65520,#alloc,#write
20 ; CTOR-NEXT: .section .ctors,#alloc,#write
/external/toolchain-utils/crosperf/
Dgenerate_report_unittest.py137 ctors = [ctor for ctor, _ in mock_run_actions.call_args[0][0]]
138 self.assertEqual(ctors, [
150 ctors = [ctor for ctor, _ in mock_run_actions.call_args[0][0]]
151 self.assertEqual(ctors, [results_report.HTMLResultsReport])
/external/llvm/test/MC/COFF/
Dglobal_ctors_dtors.ll1 ; Test that global ctors are emitted into the proper COFF section for the
2 ; target. Mingw uses .ctors, whereas MSVC uses .CRT$XC*.
59 ; MINGW32: .section .ctors,"dw"
61 ; MINGW32: .section .ctors,"dw",associative,{{_?}}b
/external/llvm-project/llvm/test/MC/COFF/
Dglobal_ctors_dtors.ll1 ; Test that global ctors are emitted into the proper COFF section for the
2 ; target. Mingw uses .ctors, whereas MSVC uses .CRT$XC*.
59 ; MINGW32: .section .ctors,"dw"
61 ; MINGW32: .section .ctors,"dw",associative,{{_?}}b
/external/llvm-project/lld/test/ELF/lto/
Dctors.ll16 ; On x86-64 (linux) we should always emit .init_array and never .ctors.
18 ; CHECK-NOT: Name: .ctors
/external/llvm-project/llvm/test/Instrumentation/SanitizerCoverage/
Dtrace-pc-guard-inline-bool-flag.ll4 ; Module ctors should have stable names across modules, not something like
5 ; @sancov.module_ctor.3 that may cause duplicate ctors after linked together.
Dtrace-pc-guard-inline-8bit-counters.ll4 ; Module ctors should have stable names across modules, not something like
5 ; @sancov.module_ctor.3 that may cause duplicate ctors after linked together.
/external/llvm/test/CodeGen/ARM/
Dctor_order.ll9 ; ELF: .section .ctors.65384,"aw",%progbits
11 ; ELF: .section .ctors.65383,"aw",%progbits
/external/elfutils/tests/
Drun-strip-remove-keep.sh56 [17] .ctors PROGBITS 080494f8 0004f8 000008 0 WA 0 0 4
91 [17] .ctors NOBITS 080494f8 000120 000008 0 WA 0 0 4
142 [17] .ctors PROGBITS 080494f8 0004f8 000008 0 WA 0 0 4
178 [17] .ctors NOBITS 080494f8 000120 000008 0 WA 0 0 4
229 [15] .ctors PROGBITS 0000000000200648 00000648 00000010 0 WA 0 0 8
264 [15] .ctors NOBITS 0000000000200648 000001c0 00000010 0 WA 0 0 8
308 [15] .ctors PROGBITS 0000000000200648 00000648 00000010 0 WA 0 0 8
343 [15] .ctors NOBITS 0000000000200648 000001c0 00000010 0 WA 0 0 8
388 [17] .ctors PROGBITS 080494f8 0004f8 000008 0 WA 0 0 4
424 [17] .ctors NOBITS 080494f8 000120 000008 0 WA 0 0 4
[all …]

12345