Lines Matching defs:os
46 operator <<(std::ostream &os, BranchData::Reason reason)
51 os << "NoBranch";
54 os << "UnpredictedBranch";
57 os << "BranchPrediction";
60 os << "CorrectlyPredictedBranch";
63 os << "BadlyPredictedBranch";
66 os << "BadlyPredictedBranchTarget";
69 os << "Interrupt";
72 os << "SuspendThread";
75 os << "HaltFetch";
79 return os;
139 BranchData::reportData(std::ostream &os) const
142 os << '-';
144 os << reason
148 inst->reportData(os);
153 operator <<(std::ostream &os, const BranchData &branch)
155 os << branch.reason << " target: 0x"
161 return os;
216 ForwardLineData::reportData(std::ostream &os) const
219 os << '-';
221 os << "F;" << id;
223 os << id;
271 ForwardInstData::reportData(std::ostream &os) const
274 os << '-';
278 os << '(';
280 insts[i]->reportData(os);
283 os << ',';
285 os << ')';