blob: f0641cf2de105b91d28f97ad6596c6dd2c2e7b73 [file] [log] [blame]
Chris Lattnerbc44aa62004-02-11 05:54:25 +00001//===- ProfileInfoLoad.cpp - Load profile information from disk -----------===//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00002//
Chris Lattnerbc44aa62004-02-11 05:54:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00007//
Chris Lattnerbc44aa62004-02-11 05:54:25 +00008//===----------------------------------------------------------------------===//
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"
Brian Gaeke660ef702004-05-04 16:53:07 +000016#include "llvm/Analysis/ProfileInfoTypes.h"
Chris Lattnerbc44aa62004-02-11 05:54:25 +000017#include "llvm/Module.h"
Chris Lattner01945c12004-03-08 18:20:18 +000018#include "llvm/InstrTypes.h"
Chris Lattnera81d29b2009-08-23 07:33:14 +000019#include "llvm/Support/raw_ostream.h"
Chris Lattnerbc44aa62004-02-11 05:54:25 +000020#include <cstdio>
Dan Gohmand68a0762009-01-05 17:59:02 +000021#include <cstdlib>
Chris Lattnerdbbbfef2004-03-08 20:03:52 +000022#include <map>
Chris Lattnerbc44aa62004-02-11 05:54:25 +000023using namespace llvm;
24
Chris Lattnerbc44aa62004-02-11 05:54:25 +000025// ByteSwap - Byteswap 'Var' if 'Really' is true.
26//
27static inline unsigned ByteSwap(unsigned Var, bool Really) {
28 if (!Really) return Var;
Misha Brukman2b37d7c2005-04-21 21:13:18 +000029 return ((Var & (255<< 0)) << 24) |
30 ((Var & (255<< 8)) << 8) |
31 ((Var & (255<<16)) >> 8) |
Chris Lattnerbc44aa62004-02-11 05:54:25 +000032 ((Var & (255<<24)) >> 24);
33}
34
35static 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) {
Chris Lattnera81d29b2009-08-23 07:33:14 +000041 errs() << ToolName << ": data packet truncated!\n";
Chris Lattnerbc44aa62004-02-11 05:54:25 +000042 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) {
Chris Lattnera81d29b2009-08-23 07:33:14 +000052 errs() << ToolName << ": data packet truncated!\n";
Chris Lattnerbc44aa62004-02-11 05:54:25 +000053 perror(0);
54 exit(1);
55 }
56
57 // Make sure we have enough space...
58 if (Data.size() < NumEntries)
59 Data.resize(NumEntries);
Misha Brukman2b37d7c2005-04-21 21:13:18 +000060
Chris Lattnerbc44aa62004-02-11 05:54:25 +000061 // 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//
74ProfileInfoLoader::ProfileInfoLoader(const char *ToolName,
75 const std::string &Filename,
Daniel Dunbaree166382009-08-05 15:55:56 +000076 Module &TheModule) :
77 Filename(Filename),
78 M(TheModule), Warned(false) {
Andreas Neustiftercf48efc2009-08-25 12:53:27 +000079 FILE *F = fopen(Filename.c_str(), "rb");
Chris Lattnerbc44aa62004-02-11 05:54:25 +000080 if (F == 0) {
Chris Lattnera81d29b2009-08-23 07:33:14 +000081 errs() << ToolName << ": Error opening '" << Filename << "': ";
Chris Lattnerbc44aa62004-02-11 05:54:25 +000082 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) {
Chris Lattnera81d29b2009-08-23 07:33:14 +000099 errs() << ToolName << ": arguments packet truncated!\n";
Chris Lattnerbc44aa62004-02-11 05:54:25 +0000100 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) {
Chris Lattnera81d29b2009-08-23 07:33:14 +0000110 errs() << ToolName << ": arguments packet truncated!\n";
Chris Lattnerbc44aa62004-02-11 05:54:25 +0000111 perror(0);
112 exit(1);
113 }
114 CommandLines.push_back(std::string(&Chars[0], &Chars[ArgLength]));
115 break;
116 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000117
Chris Lattnerbc44aa62004-02-11 05:54:25 +0000118 case FunctionInfo:
119 ReadProfilingBlock(ToolName, F, ShouldByteSwap, FunctionCounts);
120 break;
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000121
Chris Lattnerbc44aa62004-02-11 05:54:25 +0000122 case BlockInfo:
123 ReadProfilingBlock(ToolName, F, ShouldByteSwap, BlockCounts);
124 break;
125
Chris Lattner01945c12004-03-08 18:20:18 +0000126 case EdgeInfo:
127 ReadProfilingBlock(ToolName, F, ShouldByteSwap, EdgeCounts);
128 break;
129
Brian Gaekeb171d792004-05-04 17:11:14 +0000130 case BBTraceInfo:
131 ReadProfilingBlock(ToolName, F, ShouldByteSwap, BBTrace);
132 break;
133
Chris Lattnerbc44aa62004-02-11 05:54:25 +0000134 default:
Chris Lattnera81d29b2009-08-23 07:33:14 +0000135 errs() << ToolName << ": Unknown packet type #" << PacketType << "!\n";
Chris Lattnerbc44aa62004-02-11 05:54:25 +0000136 exit(1);
137 }
138 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +0000139
Chris Lattnerbc44aa62004-02-11 05:54:25 +0000140 fclose(F);
141}
142