2004-03-08 21:57:27 +01:00
|
|
|
//===- Trace.cpp - Implementation of Trace class --------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2004-03-08 21:57:27 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This class represents a single trace of LLVM basic blocks. A trace is a
|
|
|
|
// single entry, multiple exit, region of code that is often hot. Trace-based
|
|
|
|
// optimizations treat traces almost like they are a large, strange, basic
|
|
|
|
// block: because the trace path is assumed to be hot, optimizations for the
|
|
|
|
// fall-through path are made at the expense of the non-fall-through paths.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/Trace.h"
|
|
|
|
#include "llvm/Function.h"
|
|
|
|
#include "llvm/Assembly/Writer.h"
|
2009-12-23 23:35:10 +01:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-08-23 06:37:46 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2004-03-08 21:57:27 +01:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
Function *Trace::getFunction() const {
|
|
|
|
return getEntryBasicBlock()->getParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
Module *Trace::getModule() const {
|
|
|
|
return getFunction()->getParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// print - Write trace to output stream.
|
|
|
|
///
|
2009-08-23 06:37:46 +02:00
|
|
|
void Trace::print(raw_ostream &O) const {
|
|
|
|
Function *F = getFunction();
|
2011-11-15 17:27:03 +01:00
|
|
|
O << "; Trace from function " << F->getName() << ", blocks:\n";
|
2006-11-28 23:46:12 +01:00
|
|
|
for (const_iterator i = begin(), e = end(); i != e; ++i) {
|
2004-03-08 21:57:27 +01:00
|
|
|
O << "; ";
|
2006-12-17 06:15:13 +01:00
|
|
|
WriteAsOperand(O, *i, true, getModule());
|
2004-03-08 21:57:27 +01:00
|
|
|
O << "\n";
|
|
|
|
}
|
|
|
|
O << "; Trace parent function: \n" << *F;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// dump - Debugger convenience method; writes trace to standard error
|
|
|
|
/// output stream.
|
|
|
|
///
|
2006-11-28 23:46:12 +01:00
|
|
|
void Trace::dump() const {
|
2009-12-23 23:35:10 +01:00
|
|
|
print(dbgs());
|
2004-03-08 21:57:27 +01:00
|
|
|
}
|