<div dir="ltr">Is there documentation for the hooks used by compiler-rt somewhere?</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Jul 5, 2019 at 7:30 PM Carter Cheng <<a href="mailto:cartercheng@gmail.com">cartercheng@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Great, thanks for the info! <br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Jul 5, 2019 at 4:25 PM Tim Northover <<a href="mailto:t.p.northover@gmail.com" target="_blank">t.p.northover@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi Carter,<br>
<br>
On Fri, 5 Jul 2019 at 09:05, Carter Cheng via llvm-dev<br>
<<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br>
> I have been working on a llvm instrumentation pass as an exercise to get up to speed on how llvm operates. I am curious about what the best way would be to create a shadow table at a fixed address in low memory starting at 0x10000 and extending upwards.<br>
<br>
Normally you'd put your data into a custom named section and then tell<br>
the linker to put that section at a specific address through either<br>
command-line options or a linker script.<br>
<br>
> I am uncertain how the code ensures that the runtime metadata doesnt get overwritten by alloca calls for the stack.<br>
<br>
If the value is a global it'll pretty much automatically be handled by<br>
the linker and OS. The stack is usually pretty small and can be placed<br>
out of the way of any allocation the OS knows about (and it knows<br>
about all of them because it has to actually do the allocation at the<br>
end of the day).<br>
<br>
I think some sanitizers have a runtime that takes over the stack and<br>
heap though and allocate both the "real" memory and its shadow<br>
together. See compiler-rt/lib/asan for example.<br>
<br>
Cheers.<br>
<br>
Tim.<br>
><br>
> Thanks in advance,<br>
><br>
> Carter.<br>
> _______________________________________________<br>
> LLVM Developers mailing list<br>
> <a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
> <a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div>
</blockquote></div>