mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 14:05:49 -04:00

Relanding rL342883 with more fragmented tests to test ELF-specific section emission separately from broad-scope CFString tests. Now this tests the following separately 1). CoreFoundation builds and linkage for ELF while building it. 2). CFString ELF section emission outside CF in assembly output. 3). Broad scope `cfstring3.c` tests which cover all object formats at bitcode level and assembly level (including ELF). This fixes non-bridged CoreFoundation builds on ELF targets that use -fconstant-cfstrings. The original changes from differential for a similar patch to PE/COFF (https://reviews.llvm.org/D44491) did not check for an edge case where the global could be a constant which surfaced as an issue when building for ELF because of different linkage semantics. This patch addresses several issues with crashes related to CF builds on ELF as well as improves data layout by ensuring string literals that back the actual CFConstStrings end up in .rodata in line with Mach-O. Change itself tested with CoreFoundation on Linux x86_64 but should be valid for BSD-like systems as well that use ELF as the native object format. Differential Revision: https://reviews.llvm.org/D52344 llvm-svn: 343038
24 lines
989 B
C
24 lines
989 B
C
// REQUIRES: x86-registered-target
|
|
|
|
// RUN: %clang_cc1 -triple x86_64-elf -S %s -o - | FileCheck %s -check-prefix CHECK-ELF-DATA-SECTION
|
|
|
|
typedef struct __CFString *CFStringRef;
|
|
const CFStringRef one = (CFStringRef)__builtin___CFStringMakeConstantString("one");
|
|
const CFStringRef two = (CFStringRef)__builtin___CFStringMakeConstantString("\xef\xbf\xbd\x74\xef\xbf\xbd\x77\xef\xbf\xbd\x6f");
|
|
|
|
// CHECK-ELF-DATA-SECTION: .type .L.str,@object
|
|
// CHECK-ELF-DATA-SECTION: .section .rodata,"a",@progbits
|
|
// CHECK-ELF-DATA-SECTION: .L.str:
|
|
// CHECK-ELF-DATA-SECTION: .asciz "one"
|
|
|
|
// CHECK-ELF-DATA-SECTION: .type .L.str.1,@object
|
|
// CHECK-ELF-DATA-SECTION: .section .rodata,"a",@progbits
|
|
// CHECK-ELF-DATA-SECTION: .L.str.1:
|
|
// CHECK-ELF-DATA-SECTION: .short 65533
|
|
// CHECK-ELF-DATA-SECTION: .short 116
|
|
// CHECK-ELF-DATA-SECTION: .short 65533
|
|
// CHECK-ELF-DATA-SECTION: .short 119
|
|
// CHECK-ELF-DATA-SECTION: .short 65533
|
|
// CHECK-ELF-DATA-SECTION: .short 111
|
|
// CHECK-ELF-DATA-SECTION: .short 0
|