<div dir="ltr">This is awesome, thanks!<div><br></div><div>-- Sean Silva</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, May 18, 2016 at 10:44 AM, Xinliang David Li via llvm-commits <span dir="ltr"><<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@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">Author: davidxl<br>
Date: Wed May 18 12:44:57 2016<br>
New Revision: 269964<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=269964&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=269964&view=rev</a><br>
Log:<br>
[profile] add runtime variable documentation<br>
<br>
Modified:<br>
    compiler-rt/trunk/lib/profile/InstrProfiling.h<br>
<br>
Modified: compiler-rt/trunk/lib/profile/InstrProfiling.h<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/InstrProfiling.h?rev=269964&r1=269963&r2=269964&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/InstrProfiling.h?rev=269964&r1=269963&r2=269964&view=diff</a><br>
==============================================================================<br>
--- compiler-rt/trunk/lib/profile/InstrProfiling.h (original)<br>
+++ compiler-rt/trunk/lib/profile/InstrProfiling.h Wed May 18 12:44:57 2016<br>
@@ -154,4 +154,33 @@ uint64_t __llvm_profile_get_version(void<br>
 uint64_t __llvm_profile_get_data_size(const __llvm_profile_data *Begin,<br>
                                       const __llvm_profile_data *End);<br>
<br>
+/*!<br>
+ * This variable is defined in InstrProfilingRuntime.c as a hidden<br>
+ * symbol. Its main purpose is to enable profile runtime user to<br>
+ * bypass runtime initialization code -- if the client code explicitly<br>
+ * define this variable, then InstProfileRuntime.o won't be linked in.<br>
+ * Note that this variable's visibility needs to be hidden so that the<br>
+ * definition of this variable in an instrumented shared library won't<br>
+ * affect runtime initialization decision of the main program.<br>
+ */<br>
+COMPILER_RT_VISIBILITY extern int __llvm_profile_runtime;<br>
+/*!<br>
+ * This variable is defined in InstrProfilingFile.c. Its visibility is<br>
+ * not hidden so that instrumented shared libraries and the main program<br>
+ * can share the raw data file with the same name.<br>
+ */<br>
+extern int __llvm_profile_OwnsFilename;<br>
+extern const char *__llvm_profile_CurrentFilename;<br>
+/*!<br>
+ * This variable is defined in InstrProfiling.c. Its main purpose is to<br>
+ * encode the raw profile version value and other format related information<br>
+ * such as whether the profile is from IR based instrumentation. The variable<br>
+ * is defined as weak so that compiler can emit an overriding definition<br>
+ * depending on user option.  Since we don't support mixing FE and IR based<br>
+ * data in the same raw profile data file (in other words, shared libs and<br>
+ * main program are expected to be instrumented in the same way), there is<br>
+ * no need for this variale to be hidden.<br>
+ */<br>
+extern uint64_t __llvm_profile_raw_version;<br>
+<br>
 #endif /* PROFILE_INSTRPROFILING_H_ */<br>
<br>
<br>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits</a><br>
</blockquote></div><br></div>