OSDN Git Service

[Profile] PE binary coverage bug fix
authorXinliang David Li <davidxl@google.com>
Tue, 11 Apr 2017 15:51:32 +0000 (15:51 +0000)
committerXinliang David Li <davidxl@google.com>
Tue, 11 Apr 2017 15:51:32 +0000 (15:51 +0000)
PR/32584

Differential Revision: https://reviews.llvm.org/D31939

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299953 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ProfileData/InstrProfData.inc

index 6ef1625..5f3540a 100644 (file)
@@ -622,6 +622,19 @@ serializeValueProfDataFrom(ValueProfRecordClosure *Closure,
  * specified via command line. */
 #define INSTR_PROF_PROFILE_NAME_VAR __llvm_profile_filename
 
+#ifdef _WIN32
+/* Runtime section names and name strings.  */
+#define INSTR_PROF_DATA_SECT_NAME .lprfd
+#define INSTR_PROF_NAME_SECT_NAME .lprfn
+#define INSTR_PROF_CNTS_SECT_NAME .lprfc
+/* Array of pointers. Each pointer points to a list
+ * of value nodes associated with one value site.
+ */
+#define INSTR_PROF_VALS_SECT_NAME .lprfv
+/* Value profile nodes section. */
+#define INSTR_PROF_VNODES_SECT_NAME .lprfnd
+#define INSTR_PROF_COVMAP_SECT_NAME .lcovmap
+#else
 /* Runtime section names and name strings.  */
 #define INSTR_PROF_DATA_SECT_NAME __llvm_prf_data
 #define INSTR_PROF_NAME_SECT_NAME __llvm_prf_names
@@ -633,6 +646,7 @@ serializeValueProfDataFrom(ValueProfRecordClosure *Closure,
 /* Value profile nodes section. */
 #define INSTR_PROF_VNODES_SECT_NAME __llvm_prf_vnds
 #define INSTR_PROF_COVMAP_SECT_NAME __llvm_covmap
+#endif
 
 #define INSTR_PROF_DATA_SECT_NAME_STR                                          \
   INSTR_PROF_QUOTE(INSTR_PROF_DATA_SECT_NAME)