@@ -349,10 +349,17 @@ TargetLoweringObjectFileELF::getStaticCtorSection(unsigned Priority) const {
349
349
if (Priority == 65535 )
350
350
return StaticCtorSection;
351
351
352
- std::string Name = std::string (" .ctors." ) + utostr (65535 - Priority);
353
- return getContext ().getELFSection (Name, ELF::SHT_PROGBITS,
354
- ELF::SHF_ALLOC |ELF::SHF_WRITE,
355
- SectionKind::getDataRel ());
352
+ if (UseInitArray) {
353
+ std::string Name = std::string (" .init_array." ) + utostr (Priority);
354
+ return getContext ().getELFSection (Name, ELF::SHT_INIT_ARRAY,
355
+ ELF::SHF_ALLOC | ELF::SHF_WRITE,
356
+ SectionKind::getDataRel ());
357
+ } else {
358
+ std::string Name = std::string (" .ctors." ) + utostr (65535 - Priority);
359
+ return getContext ().getELFSection (Name, ELF::SHT_PROGBITS,
360
+ ELF::SHF_ALLOC |ELF::SHF_WRITE,
361
+ SectionKind::getDataRel ());
362
+ }
356
363
}
357
364
358
365
const MCSection *
@@ -362,10 +369,35 @@ TargetLoweringObjectFileELF::getStaticDtorSection(unsigned Priority) const {
362
369
if (Priority == 65535 )
363
370
return StaticDtorSection;
364
371
365
- std::string Name = std::string (" .dtors." ) + utostr (65535 - Priority);
366
- return getContext ().getELFSection (Name, ELF::SHT_PROGBITS,
367
- ELF::SHF_ALLOC |ELF::SHF_WRITE,
368
- SectionKind::getDataRel ());
372
+ if (UseInitArray) {
373
+ std::string Name = std::string (" .fini_array." ) + utostr (Priority);
374
+ return getContext ().getELFSection (Name, ELF::SHT_FINI_ARRAY,
375
+ ELF::SHF_ALLOC | ELF::SHF_WRITE,
376
+ SectionKind::getDataRel ());
377
+ } else {
378
+ std::string Name = std::string (" .dtors." ) + utostr (65535 - Priority);
379
+ return getContext ().getELFSection (Name, ELF::SHT_PROGBITS,
380
+ ELF::SHF_ALLOC |ELF::SHF_WRITE,
381
+ SectionKind::getDataRel ());
382
+ }
383
+ }
384
+
385
+ void
386
+ TargetLoweringObjectFileELF::InitializeELF (bool UseInitArray_) {
387
+ UseInitArray = UseInitArray_;
388
+ if (!UseInitArray)
389
+ return ;
390
+
391
+ StaticCtorSection =
392
+ getContext ().getELFSection (" .init_array" , ELF::SHT_INIT_ARRAY,
393
+ ELF::SHF_WRITE |
394
+ ELF::SHF_ALLOC,
395
+ SectionKind::getDataRel ());
396
+ StaticDtorSection =
397
+ getContext ().getELFSection (" .fini_array" , ELF::SHT_FINI_ARRAY,
398
+ ELF::SHF_WRITE |
399
+ ELF::SHF_ALLOC,
400
+ SectionKind::getDataRel ());
369
401
}
370
402
371
403
// ===----------------------------------------------------------------------===//
0 commit comments