Extend the ValuesAtScope cache to cover all expressions, not just
[oota-llvm.git] / lib / Analysis / ProfileInfoLoader.cpp
1 //===- ProfileInfoLoad.cpp - Load profile information from disk -----------===//
2 //
3 //                      The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // The ProfileInfoLoader class is used to load and represent profiling
11 // information read in from the dump file.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/Analysis/ProfileInfoLoader.h"
16 #include "llvm/Analysis/ProfileInfoTypes.h"
17 #include "llvm/Module.h"
18 #include "llvm/InstrTypes.h"
19 #include "llvm/Support/raw_ostream.h"
20 #include <cstdio>
21 #include <cstdlib>
22 #include <map>
23 using namespace llvm;
24
25 // ByteSwap - Byteswap 'Var' if 'Really' is true.
26 //
27 static inline unsigned ByteSwap(unsigned Var, bool Really) {
28   if (!Really) return Var;
29   return ((Var & (255<< 0)) << 24) |
30          ((Var & (255<< 8)) <<  8) |
31          ((Var & (255<<16)) >>  8) |
32          ((Var & (255<<24)) >> 24);
33 }
34
35 static void ReadProfilingBlock(const char *ToolName, FILE *F,
36                                bool ShouldByteSwap,
37                                std::vector<unsigned> &Data) {
38   // Read the number of entries...
39   unsigned NumEntries;
40   if (fread(&NumEntries, sizeof(unsigned), 1, F) != 1) {
41     errs() << ToolName << ": data packet truncated!\n";
42     perror(0);
43     exit(1);
44   }
45   NumEntries = ByteSwap(NumEntries, ShouldByteSwap);
46
47   // Read the counts...
48   std::vector<unsigned> TempSpace(NumEntries);
49
50   // Read in the block of data...
51   if (fread(&TempSpace[0], sizeof(unsigned)*NumEntries, 1, F) != 1) {
52     errs() << ToolName << ": data packet truncated!\n";
53     perror(0);
54     exit(1);
55   }
56
57   // Make sure we have enough space...
58   if (Data.size() < NumEntries)
59     Data.resize(NumEntries);
60
61   // Accumulate the data we just read into the data.
62   if (!ShouldByteSwap) {
63     for (unsigned i = 0; i != NumEntries; ++i)
64       Data[i] += TempSpace[i];
65   } else {
66     for (unsigned i = 0; i != NumEntries; ++i)
67       Data[i] += ByteSwap(TempSpace[i], true);
68   }
69 }
70
71 // ProfileInfoLoader ctor - Read the specified profiling data file, exiting the
72 // program if the file is invalid or broken.
73 //
74 ProfileInfoLoader::ProfileInfoLoader(const char *ToolName,
75                                      const std::string &Filename,
76                                      Module &TheModule) :
77                                      Filename(Filename), 
78                                      M(TheModule), Warned(false) {
79   FILE *F = fopen(Filename.c_str(), "rb");
80   if (F == 0) {
81     errs() << ToolName << ": Error opening '" << Filename << "': ";
82     perror(0);
83     exit(1);
84   }
85
86   // Keep reading packets until we run out of them.
87   unsigned PacketType;
88   while (fread(&PacketType, sizeof(unsigned), 1, F) == 1) {
89     // If the low eight bits of the packet are zero, we must be dealing with an
90     // endianness mismatch.  Byteswap all words read from the profiling
91     // information.
92     bool ShouldByteSwap = (char)PacketType == 0;
93     PacketType = ByteSwap(PacketType, ShouldByteSwap);
94
95     switch (PacketType) {
96     case ArgumentInfo: {
97       unsigned ArgLength;
98       if (fread(&ArgLength, sizeof(unsigned), 1, F) != 1) {
99         errs() << ToolName << ": arguments packet truncated!\n";
100         perror(0);
101         exit(1);
102       }
103       ArgLength = ByteSwap(ArgLength, ShouldByteSwap);
104
105       // Read in the arguments...
106       std::vector<char> Chars(ArgLength+4);
107
108       if (ArgLength)
109         if (fread(&Chars[0], (ArgLength+3) & ~3, 1, F) != 1) {
110           errs() << ToolName << ": arguments packet truncated!\n";
111           perror(0);
112           exit(1);
113         }
114       CommandLines.push_back(std::string(&Chars[0], &Chars[ArgLength]));
115       break;
116     }
117
118     case FunctionInfo:
119       ReadProfilingBlock(ToolName, F, ShouldByteSwap, FunctionCounts);
120       break;
121
122     case BlockInfo:
123       ReadProfilingBlock(ToolName, F, ShouldByteSwap, BlockCounts);
124       break;
125
126     case EdgeInfo:
127       ReadProfilingBlock(ToolName, F, ShouldByteSwap, EdgeCounts);
128       break;
129
130     case BBTraceInfo:
131       ReadProfilingBlock(ToolName, F, ShouldByteSwap, BBTrace);
132       break;
133
134     default:
135       errs() << ToolName << ": Unknown packet type #" << PacketType << "!\n";
136       exit(1);
137     }
138   }
139
140   fclose(F);
141 }
142