<div dir="ltr">AFAIK, this cannot actually work on Apple platforms, because its object file format (Mach-O) doesn't use sections to determine the ranges of code/data to keep together, but instead _infers_ boundaries based on the range between global symbols in the symbol table.<div><div><br></div><div>So, the symbol pointing to the beginning of @main *necessarily* makes that be a section boundary.</div></div><div><br></div><div>I think the best that could be done in LLVM is to not emit the ".subsections_via_symbols" asm directive (effectively disabling dead stripping on that object) if any prefix data exists. Currently it emits that flag unconditionally for MachO.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Mar 6, 2017 at 4:40 AM, Moritz Angermann via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I just came across a rather annoying behavior with llvm 3.9. Assuming the following<br>
samle code in test.ll:<br>
<br>
; Lets have some global int x = 4<br>
@x = global i32 10, align 4<br>
; and two strings "p = %d\n" for the prefix data,<br>
; as well as "x = %d\n" to print the (global) x value.<br>
@.str = private unnamed_addr constant [8 x i8] c"x = %d\0A\00", align 1<br>
@.str2 = private unnamed_addr constant [8 x i8] c"p = %d\0A\00", align 1<br>
<br>
; declare printf, we'll use this later for printf style debugging.<br>
declare i32 @printf(i8*, ...)<br>
<br>
; define a main function.<br>
define i32 @main() prefix i32 123 {<br>
  ; obtain a i32 pointer to the main function.<br>
  ; the prefix data is right before that pointer.<br>
  %main = bitcast i32 ()* @main to i32*<br>
<br>
  ; use the gep, to cmpute the start of the prefix data.<br>
  %prefix_ptr = getelementptr inbounds i32, i32* %main, i32 -1<br>
  ; and load it.<br>
  %prefix_val = load i32, i32* %prefix_ptr<br>
<br>
  ; print that value.<br>
  %ret = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([8 x i8], [8 x i8]* @.str2, i32 0, i32 0), i32 %prefix_val)<br>
<br>
  ; similarly let's do the same with the global x.<br>
  %1 = alloca i32, align 4<br>
  store i32 0, i32* %1, align 4<br>
  %2 = load i32, i32* @x, align 4<br>
  %3 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([8 x i8], [8 x i8]* @.str, i32 0, i32 0), i32 %2)<br>
  ret i32 0<br>
}<br>
<br>
gives the following result (expected)<br>
<br>
   $ clang test.ll<br>
   $ ./a.out<br>
   p = 123<br>
   x = 10<br>
<br>
however, with -dead_strip on macOS, we see the following:<br>
<br>
   $ clang test.ll -dead_strip<br>
   $ ./a.out<br>
   p = 0<br>
   x = 10<br>
<br>
Thus I believe we are incorrectly stripping prefix data when linking with -dead_strip on macOS.<br>
<br>
As I do not have a bugzilla account, and hence cannot post this as a proper bug report.<br>
<br>
Cheers,<br>
 Moritz<br>
______________________________<wbr>_________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/llvm-dev</a><br>
</blockquote></div><br></div>