Clean up ProfileDataLoader a bit.

- Overloading operator<< for raw_ostream and pointers is dangerous, it alters
  the behavior of code that includes the header.
- Remove unused ID.
- Use LLVM's byte swapping helpers instead of a hand-coded.
- Make ReadProfilingData work directly on a pointer.

No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162992 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2012-08-31 12:43:07 +00:00
parent 2a1b0e7864
commit cb5f63d7fa
2 changed files with 25 additions and 55 deletions

View File

@ -28,11 +28,9 @@ class ModulePass;
class Function; class Function;
class BasicBlock; class BasicBlock;
// Helpers for dumping edges to dbgs(). // Helper for dumping edges to dbgs().
raw_ostream& operator<<(raw_ostream &O, std::pair<const BasicBlock *, raw_ostream& operator<<(raw_ostream &O, std::pair<const BasicBlock *,
const BasicBlock *> E); const BasicBlock *> E);
raw_ostream& operator<<(raw_ostream &O, const BasicBlock *BB);
raw_ostream& operator<<(raw_ostream &O, const Function *F);
/// \brief The ProfileDataT<FType, BType> class is used to store the mapping of /// \brief The ProfileDataT<FType, BType> class is used to store the mapping of
/// profiling data to control flow edges. /// profiling data to control flow edges.
@ -56,10 +54,6 @@ class ProfileDataT {
DenseMap<const FType*, EdgeWeights> EdgeInformation; DenseMap<const FType*, EdgeWeights> EdgeInformation;
public: public:
static char ID; // Class identification, replacement for typeinfo
ProfileDataT() {};
~ProfileDataT() {};
/// getFunction() - Returns the Function for an Edge. /// getFunction() - Returns the Function for an Edge.
static const FType *getFunction(Edge e) { static const FType *getFunction(Edge e) {
// e.first may be NULL // e.first may be NULL
@ -136,7 +130,7 @@ public:
/// getRawEdgeCounts - Return the raw profiling data, this is just a list of /// getRawEdgeCounts - Return the raw profiling data, this is just a list of
/// numbers with no mappings to edges. /// numbers with no mappings to edges.
const SmallVector<unsigned, 32> &getRawEdgeCounts() const { return EdgeCounts; } ArrayRef<unsigned> getRawEdgeCounts() const { return EdgeCounts; }
}; };
/// createProfileMetadataLoaderPass - This function returns a Pass that loads /// createProfileMetadataLoaderPass - This function returns a Pass that loads

View File

@ -24,49 +24,25 @@
#include <cstdlib> #include <cstdlib>
using namespace llvm; using namespace llvm;
namespace llvm { raw_ostream &llvm::operator<<(raw_ostream &O, std::pair<const BasicBlock *,
template<>
char ProfileDataT<Function,BasicBlock>::ID = 0;
raw_ostream& operator<<(raw_ostream &O, const Function *F) {
return O << F->getName();
}
raw_ostream& operator<<(raw_ostream &O, const BasicBlock *BB) {
return O << BB->getName();
}
raw_ostream& operator<<(raw_ostream &O, std::pair<const BasicBlock *,
const BasicBlock *> E) { const BasicBlock *> E) {
O << "("; O << "(";
if (E.first) if (E.first)
O << E.first; O << E.first->getName();
else else
O << "0"; O << "0";
O << ","; O << ",";
if (E.second) if (E.second)
O << E.second; O << E.second->getName();
else else
O << "0"; O << "0";
return O << ")"; return O << ")";
} }
} // namespace llvm
/// ByteSwap - Byteswap 'Var'. Required when the compiler host and target have
/// different endianness.
static inline unsigned ByteSwap(unsigned Var) {
return ((Var & (255U<< 0U)) << 24U) |
((Var & (255U<< 8U)) << 8U) |
((Var & (255U<<16U)) >> 8U) |
((Var & (255U<<24U)) >> 24U);
}
/// AddCounts - Add 'A' and 'B', accounting for the fact that the value of one /// AddCounts - Add 'A' and 'B', accounting for the fact that the value of one
/// (or both) may not be defined. /// (or both) may not be defined.
static unsigned AddCounts(unsigned A, unsigned B) { static unsigned AddCounts(unsigned A, unsigned B) {
@ -85,22 +61,21 @@ static unsigned AddCounts(unsigned A, unsigned B) {
} }
/// ReadProfilingData - Load 'NumEntries' items of type 'T' from file 'F' /// ReadProfilingData - Load 'NumEntries' items of type 'T' from file 'F'
template <typename T, unsigned N> template <typename T>
static void ReadProfilingData(const char *ToolName, FILE *F, static void ReadProfilingData(const char *ToolName, FILE *F,
SmallVector<T, N> &Data, size_t NumEntries) { T *Data, size_t NumEntries) {
// Read in the block of data... // Read in the block of data...
if (fread(&Data[0], sizeof(T), NumEntries, F) != NumEntries) { if (fread(Data, sizeof(T), NumEntries, F) != NumEntries)
report_fatal_error(std::string(ToolName) + ": Profiling data truncated"); report_fatal_error(Twine(ToolName) + ": Profiling data truncated");
}
} }
/// ReadProfilingNumEntries - Read how many entries are in this profiling data /// ReadProfilingNumEntries - Read how many entries are in this profiling data
/// packet. /// packet.
static unsigned ReadProfilingNumEntries(const char *ToolName, FILE *F, static unsigned ReadProfilingNumEntries(const char *ToolName, FILE *F,
bool ShouldByteSwap) { bool ShouldByteSwap) {
SmallVector<unsigned, 1> NumEntries(1); unsigned Entry;
ReadProfilingData<unsigned, 1>(ToolName, F, NumEntries, 1); ReadProfilingData<unsigned>(ToolName, F, &Entry, 1);
return ShouldByteSwap ? ByteSwap(NumEntries[0]) : NumEntries[0]; return ShouldByteSwap ? ByteSwap_32(Entry) : Entry;
} }
/// ReadProfilingBlock - Read the number of entries in the next profiling data /// ReadProfilingBlock - Read the number of entries in the next profiling data
@ -113,16 +88,17 @@ static void ReadProfilingBlock(const char *ToolName, FILE *F,
// Read in the data. // Read in the data.
SmallVector<unsigned, 8> TempSpace(NumEntries); SmallVector<unsigned, 8> TempSpace(NumEntries);
ReadProfilingData<unsigned, 8>(ToolName, F, TempSpace, (size_t)NumEntries); ReadProfilingData<unsigned>(ToolName, F, TempSpace.data(), NumEntries);
// Make sure we have enough space ... // Make sure we have enough space ...
if (Data.size() < NumEntries) if (Data.size() < NumEntries)
Data.resize(NumEntries, ProfileDataLoader::Uncounted); Data.resize(NumEntries, ProfileDataLoader::Uncounted);
// Accumulate the data we just read into the existing data. // Accumulate the data we just read into the existing data.
for (unsigned i = 0; i < NumEntries; ++i) for (unsigned i = 0; i < NumEntries; ++i) {
Data[i] = AddCounts(ShouldByteSwap ? ByteSwap(TempSpace[i]) : TempSpace[i], unsigned Entry = ShouldByteSwap ? ByteSwap_32(TempSpace[i]) : TempSpace[i];
Data[i]); Data[i] = AddCounts(Entry, Data[i]);
}
} }
/// ReadProfilingArgBlock - Read the command line arguments that the progam was /// ReadProfilingArgBlock - Read the command line arguments that the progam was
@ -137,7 +113,7 @@ static void ReadProfilingArgBlock(const char *ToolName, FILE *F,
// the nearest 4-byte multiple. // the nearest 4-byte multiple.
SmallVector<char, 8> Args(ArgLength+4); SmallVector<char, 8> Args(ArgLength+4);
if (ArgLength) if (ArgLength)
ReadProfilingData<char, 8>(ToolName, F, Args, (ArgLength+3) & ~3); ReadProfilingData<char>(ToolName, F, Args.data(), (ArgLength+3) & ~3);
// Store the arguments. // Store the arguments.
CommandLines.push_back(std::string(&Args[0], &Args[ArgLength])); CommandLines.push_back(std::string(&Args[0], &Args[ArgLength]));
@ -153,7 +129,7 @@ ProfileDataLoader::ProfileDataLoader(const char *ToolName,
: Filename(Filename) { : Filename(Filename) {
FILE *F = fopen(Filename.c_str(), "rb"); FILE *F = fopen(Filename.c_str(), "rb");
if (F == 0) if (F == 0)
report_fatal_error(std::string(ToolName) + ": Error opening '" + report_fatal_error(Twine(ToolName) + ": Error opening '" +
Filename + "': "); Filename + "': ");
// Keep reading packets until we run out of them. // Keep reading packets until we run out of them.
@ -164,7 +140,7 @@ ProfileDataLoader::ProfileDataLoader(const char *ToolName,
// information. This can happen when the compiler host and target have // information. This can happen when the compiler host and target have
// different endianness. // different endianness.
bool ShouldByteSwap = (char)PacketType == 0; bool ShouldByteSwap = (char)PacketType == 0;
PacketType = ShouldByteSwap ? ByteSwap(PacketType) : PacketType; PacketType = ShouldByteSwap ? ByteSwap_32(PacketType) : PacketType;
switch (PacketType) { switch (PacketType) {
case ArgumentInfo: case ArgumentInfo: