mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-12 22:17:47 +00:00
Move ProfileInfo::Edge's operator<< out of line. Among other benefits,
this eliminates the ATTRIBUTE_USED, which wasn't being used in a manner acceptable to some GCC versions, according to the buildbots. llvm-svn: 80103
This commit is contained in:
parent
13640d4582
commit
bd9174cad0
@ -22,8 +22,6 @@
|
|||||||
#define LLVM_ANALYSIS_PROFILEINFO_H
|
#define LLVM_ANALYSIS_PROFILEINFO_H
|
||||||
|
|
||||||
#include "llvm/BasicBlock.h"
|
#include "llvm/BasicBlock.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
|
||||||
#include "llvm/Support/Compiler.h"
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <map>
|
#include <map>
|
||||||
@ -31,6 +29,7 @@
|
|||||||
namespace llvm {
|
namespace llvm {
|
||||||
class Function;
|
class Function;
|
||||||
class Pass;
|
class Pass;
|
||||||
|
class raw_ostream;
|
||||||
|
|
||||||
/// ProfileInfo Class - This class holds and maintains profiling
|
/// ProfileInfo Class - This class holds and maintains profiling
|
||||||
/// information for some unit of code.
|
/// information for some unit of code.
|
||||||
@ -106,16 +105,7 @@ namespace llvm {
|
|||||||
/// it available to the optimizers.
|
/// it available to the optimizers.
|
||||||
Pass *createProfileLoaderPass(const std::string &Filename);
|
Pass *createProfileLoaderPass(const std::string &Filename);
|
||||||
|
|
||||||
static raw_ostream& operator<<(raw_ostream &O,
|
raw_ostream& operator<<(raw_ostream &O, ProfileInfo::Edge E);
|
||||||
ProfileInfo::Edge E) ATTRIBUTE_USED;
|
|
||||||
static raw_ostream& operator<<(raw_ostream &O,
|
|
||||||
ProfileInfo::Edge E) {
|
|
||||||
O<<"(";
|
|
||||||
O<<(E.first?E.first->getNameStr():"0");
|
|
||||||
O<<",";
|
|
||||||
O<<(E.second?E.second->getNameStr():"0");
|
|
||||||
return O<<")";
|
|
||||||
}
|
|
||||||
|
|
||||||
} // End llvm namespace
|
} // End llvm namespace
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#include "llvm/Pass.h"
|
#include "llvm/Pass.h"
|
||||||
#include "llvm/Support/CFG.h"
|
#include "llvm/Support/CFG.h"
|
||||||
#include "llvm/Support/Compiler.h"
|
#include "llvm/Support/Compiler.h"
|
||||||
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include <set>
|
#include <set>
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
@ -81,6 +82,13 @@ double ProfileInfo::getExecutionCount(const Function *F) {
|
|||||||
return Count;
|
return Count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
raw_ostream& llvm::operator<<(raw_ostream &O, ProfileInfo::Edge E) {
|
||||||
|
O << "(";
|
||||||
|
O << (E.first ? E.first->getNameStr() : "0");
|
||||||
|
O << ",";
|
||||||
|
O << (E.second ? E.second->getNameStr() : "0");
|
||||||
|
return O << ")";
|
||||||
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// NoProfile ProfileInfo implementation
|
// NoProfile ProfileInfo implementation
|
||||||
|
Loading…
Reference in New Issue
Block a user