1/* 2 * Copyright (c) 2013-2014,2016 ARM Limited 3 * All rights reserved 4 * 5 * The license below extends only to copyright in the software and shall 6 * not be construed as granting a license to any other intellectual 7 * property including but not limited to intellectual property relating 8 * to a hardware implementation of the functionality of the software 9 * licensed hereunder. You may use the software subject to the license 10 * terms below provided that you ensure that this notice is replicated 11 * unmodified and in its entirety in all distributions of the software, 12 * modified or unmodified, in source code or in binary form. 13 * 14 * Redistribution and use in source and binary forms, with or without 15 * modification, are permitted provided that the following conditions are 16 * met: redistributions of source code must retain the above copyright 17 * notice, this list of conditions and the following disclaimer; 18 * redistributions in binary form must reproduce the above copyright 19 * notice, this list of conditions and the following disclaimer in the 20 * documentation and/or other materials provided with the distribution; 21 * neither the name of the copyright holders nor the names of its 22 * contributors may be used to endorse or promote products derived from 23 * this software without specific prior written permission. 24 * 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 36 * 37 * Authors: Andrew Bardsley 38 */ 39 40#include "cpu/minor/fetch2.hh" 41 42#include <string> 43 44#include "arch/decoder.hh" 45#include "arch/utility.hh" 46#include "cpu/minor/pipeline.hh" 47#include "cpu/pred/bpred_unit.hh" 48#include "debug/Branch.hh" 49#include "debug/Fetch.hh" 50#include "debug/MinorTrace.hh" 51 52namespace Minor 53{ 54 55Fetch2::Fetch2(const std::string &name, 56 MinorCPU &cpu_, 57 MinorCPUParams ¶ms, 58 Latch<ForwardLineData>::Output inp_, 59 Latch<BranchData>::Output branchInp_, 60 Latch<BranchData>::Input predictionOut_, 61 Latch<ForwardInstData>::Input out_, 62 std::vector<InputBuffer<ForwardInstData>> &next_stage_input_buffer) : 63 Named(name), 64 cpu(cpu_), 65 inp(inp_), 66 branchInp(branchInp_), 67 predictionOut(predictionOut_), 68 out(out_), 69 nextStageReserve(next_stage_input_buffer), 70 outputWidth(params.decodeInputWidth), 71 processMoreThanOneInput(params.fetch2CycleInput), 72 branchPredictor(*params.branchPred), 73 fetchInfo(params.numThreads), 74 threadPriority(0) 75{ 76 if (outputWidth < 1) 77 fatal("%s: decodeInputWidth must be >= 1 (%d)\n", name, outputWidth); 78 79 if (params.fetch2InputBufferSize < 1) { 80 fatal("%s: fetch2InputBufferSize must be >= 1 (%d)\n", name, 81 params.fetch2InputBufferSize); 82 } 83 84 /* Per-thread input buffers */ 85 for (ThreadID tid = 0; tid < params.numThreads; tid++) { 86 inputBuffer.push_back( 87 InputBuffer<ForwardLineData>( 88 name + ".inputBuffer" + std::to_string(tid), "lines", 89 params.fetch2InputBufferSize)); 90 } 91} 92 93const ForwardLineData * 94Fetch2::getInput(ThreadID tid) 95{ 96 /* Get a line from the inputBuffer to work with */ 97 if (!inputBuffer[tid].empty()) { 98 return &(inputBuffer[tid].front()); 99 } else { 100 return NULL; 101 } 102} 103 104void 105Fetch2::popInput(ThreadID tid) 106{ 107 if (!inputBuffer[tid].empty()) { 108 inputBuffer[tid].front().freeLine(); 109 inputBuffer[tid].pop(); 110 } 111 112 fetchInfo[tid].inputIndex = 0; 113} 114 115void 116Fetch2::dumpAllInput(ThreadID tid) 117{ 118 DPRINTF(Fetch, "Dumping whole input buffer\n"); 119 while (!inputBuffer[tid].empty()) 120 popInput(tid); 121 122 fetchInfo[tid].inputIndex = 0; 123} 124 125void 126Fetch2::updateBranchPrediction(const BranchData &branch) 127{ 128 MinorDynInstPtr inst = branch.inst; 129 130 /* Don't even consider instructions we didn't try to predict or faults */ 131 if (inst->isFault() || !inst->triedToPredict) 132 return; 133 134 switch (branch.reason) { 135 case BranchData::NoBranch: 136 /* No data to update */ 137 break; 138 case BranchData::Interrupt: 139 /* Never try to predict interrupts */ 140 break; 141 case BranchData::SuspendThread: 142 /* Don't need to act on suspends */ 143 break; 144 case BranchData::HaltFetch: 145 /* Don't need to act on fetch wakeup */ 146 break; 147 case BranchData::BranchPrediction: 148 /* Shouldn't happen. Fetch2 is the only source of 149 * BranchPredictions */ 150 break; 151 case BranchData::UnpredictedBranch: 152 /* Unpredicted branch or barrier */ 153 DPRINTF(Branch, "Unpredicted branch seen inst: %s\n", *inst); 154 branchPredictor.squash(inst->id.fetchSeqNum, 155 branch.target, true, inst->id.threadId); 156 // Update after squashing to accomodate O3CPU 157 // using the branch prediction code. 158 branchPredictor.update(inst->id.fetchSeqNum, 159 inst->id.threadId); 160 break; 161 case BranchData::CorrectlyPredictedBranch: 162 /* Predicted taken, was taken */ 163 DPRINTF(Branch, "Branch predicted correctly inst: %s\n", *inst); 164 branchPredictor.update(inst->id.fetchSeqNum, 165 inst->id.threadId); 166 break; 167 case BranchData::BadlyPredictedBranch: 168 /* Predicted taken, not taken */ 169 DPRINTF(Branch, "Branch mis-predicted inst: %s\n", *inst); 170 branchPredictor.squash(inst->id.fetchSeqNum, 171 branch.target /* Not used */, false, inst->id.threadId); 172 // Update after squashing to accomodate O3CPU 173 // using the branch prediction code. 174 branchPredictor.update(inst->id.fetchSeqNum, 175 inst->id.threadId); 176 break; 177 case BranchData::BadlyPredictedBranchTarget: 178 /* Predicted taken, was taken but to a different target */ 179 DPRINTF(Branch, "Branch mis-predicted target inst: %s target: %s\n", 180 *inst, branch.target); 181 branchPredictor.squash(inst->id.fetchSeqNum, 182 branch.target, true, inst->id.threadId); 183 break; 184 } 185} 186 187void 188Fetch2::predictBranch(MinorDynInstPtr inst, BranchData &branch) 189{ 190 Fetch2ThreadInfo &thread = fetchInfo[inst->id.threadId]; 191 TheISA::PCState inst_pc = inst->pc; 192 193 assert(!inst->predictedTaken); 194 195 /* Skip non-control/sys call instructions */ 196 if (inst->staticInst->isControl() || 197 inst->staticInst->isSyscall()) 198 { 199 /* Tried to predict */ 200 inst->triedToPredict = true; 201 202 DPRINTF(Branch, "Trying to predict for inst: %s\n", *inst); 203 204 if (branchPredictor.predict(inst->staticInst, 205 inst->id.fetchSeqNum, inst_pc, 206 inst->id.threadId)) 207 { 208 inst->predictedTaken = true; 209 inst->predictedTarget = inst_pc; 210 branch.target = inst_pc; 211 } 212 } else { 213 DPRINTF(Branch, "Not attempting prediction for inst: %s\n", *inst); 214 } 215 216 /* If we predict taken, set branch and update sequence numbers */ 217 if (inst->predictedTaken) { 218 /* Update the predictionSeqNum and remember the streamSeqNum that it 219 * was associated with */ 220 thread.expectedStreamSeqNum = inst->id.streamSeqNum; 221 222 BranchData new_branch = BranchData(BranchData::BranchPrediction, 223 inst->id.threadId, 224 inst->id.streamSeqNum, thread.predictionSeqNum + 1, 225 inst->predictedTarget, inst); 226 227 /* Mark with a new prediction number by the stream number of the 228 * instruction causing the prediction */ 229 thread.predictionSeqNum++; 230 branch = new_branch; 231 232 DPRINTF(Branch, "Branch predicted taken inst: %s target: %s" 233 " new predictionSeqNum: %d\n", 234 *inst, inst->predictedTarget, thread.predictionSeqNum); 235 } 236} 237 238void 239Fetch2::evaluate() 240{ 241 /* Push input onto appropriate input buffer */ 242 if (!inp.outputWire->isBubble()) 243 inputBuffer[inp.outputWire->id.threadId].setTail(*inp.outputWire); 244 245 ForwardInstData &insts_out = *out.inputWire; 246 BranchData prediction; 247 BranchData &branch_inp = *branchInp.outputWire; 248 249 assert(insts_out.isBubble()); 250 251 /* React to branches from Execute to update local branch prediction 252 * structures */ 253 updateBranchPrediction(branch_inp); 254 255 /* If a branch arrives, don't try and do anything about it. Only 256 * react to your own predictions */ 257 if (branch_inp.isStreamChange()) { 258 DPRINTF(Fetch, "Dumping all input as a stream changing branch" 259 " has arrived\n"); 260 dumpAllInput(branch_inp.threadId); 261 fetchInfo[branch_inp.threadId].havePC = false; 262 } 263 264 assert(insts_out.isBubble()); 265 /* Even when blocked, clear out input lines with the wrong 266 * prediction sequence number */ 267 for (ThreadID tid = 0; tid < cpu.numThreads; tid++) { 268 Fetch2ThreadInfo &thread = fetchInfo[tid]; 269 270 thread.blocked = !nextStageReserve[tid].canReserve(); 271 272 const ForwardLineData *line_in = getInput(tid); 273 274 while (line_in && 275 thread.expectedStreamSeqNum == line_in->id.streamSeqNum && 276 thread.predictionSeqNum != line_in->id.predictionSeqNum) 277 { 278 DPRINTF(Fetch, "Discarding line %s" 279 " due to predictionSeqNum mismatch (expected: %d)\n", 280 line_in->id, thread.predictionSeqNum); 281 282 popInput(tid); 283 fetchInfo[tid].havePC = false; 284 285 if (processMoreThanOneInput) { 286 DPRINTF(Fetch, "Wrapping\n"); 287 line_in = getInput(tid); 288 } else { 289 line_in = NULL; 290 } 291 } 292 } 293 294 ThreadID tid = getScheduledThread(); 295 DPRINTF(Fetch, "Scheduled Thread: %d\n", tid); 296 297 assert(insts_out.isBubble()); 298 if (tid != InvalidThreadID) { 299 Fetch2ThreadInfo &fetch_info = fetchInfo[tid]; 300 301 const ForwardLineData *line_in = getInput(tid); 302 303 unsigned int output_index = 0; 304 305 /* Pack instructions into the output while we can. This may involve 306 * using more than one input line. Note that lineWidth will be 0 307 * for faulting lines */ 308 while (line_in && 309 (line_in->isFault() || 310 fetch_info.inputIndex < line_in->lineWidth) && /* More input */ 311 output_index < outputWidth && /* More output to fill */ 312 prediction.isBubble() /* No predicted branch */) 313 { 314 ThreadContext *thread = cpu.getContext(line_in->id.threadId); 315 TheISA::Decoder *decoder = thread->getDecoderPtr(); 316 317 /* Discard line due to prediction sequence number being wrong but 318 * without the streamSeqNum number having changed */ 319 bool discard_line = 320 fetch_info.expectedStreamSeqNum == line_in->id.streamSeqNum && 321 fetch_info.predictionSeqNum != line_in->id.predictionSeqNum; 322 323 /* Set the PC if the stream changes. Setting havePC to false in 324 * a previous cycle handles all other change of flow of control 325 * issues */ 326 bool set_pc = fetch_info.lastStreamSeqNum != line_in->id.streamSeqNum; 327 328 if (!discard_line && (!fetch_info.havePC || set_pc)) { 329 /* Set the inputIndex to be the MachInst-aligned offset 330 * from lineBaseAddr of the new PC value */ 331 fetch_info.inputIndex = 332 (line_in->pc.instAddr() & BaseCPU::PCMask) - 333 line_in->lineBaseAddr; 334 DPRINTF(Fetch, "Setting new PC value: %s inputIndex: 0x%x" 335 " lineBaseAddr: 0x%x lineWidth: 0x%x\n", 336 line_in->pc, fetch_info.inputIndex, line_in->lineBaseAddr, 337 line_in->lineWidth); 338 fetch_info.pc = line_in->pc; 339 fetch_info.havePC = true; 340 decoder->reset(); 341 } 342 343 /* The generated instruction. Leave as NULL if no instruction 344 * is to be packed into the output */ 345 MinorDynInstPtr dyn_inst = NULL; 346 347 if (discard_line) { 348 /* Rest of line was from an older prediction in the same 349 * stream */ 350 DPRINTF(Fetch, "Discarding line %s (from inputIndex: %d)" 351 " due to predictionSeqNum mismatch (expected: %d)\n", 352 line_in->id, fetch_info.inputIndex, 353 fetch_info.predictionSeqNum); 354 } else if (line_in->isFault()) { 355 /* Pack a fault as a MinorDynInst with ->fault set */ 356 357 /* Make a new instruction and pick up the line, stream, 358 * prediction, thread ids from the incoming line */ 359 dyn_inst = new MinorDynInst(line_in->id); 360 361 /* Fetch and prediction sequence numbers originate here */ 362 dyn_inst->id.fetchSeqNum = fetch_info.fetchSeqNum; 363 dyn_inst->id.predictionSeqNum = fetch_info.predictionSeqNum; 364 /* To complete the set, test that exec sequence number has 365 * not been set */ 366 assert(dyn_inst->id.execSeqNum == 0); 367 368 dyn_inst->pc = fetch_info.pc; 369 370 /* Pack a faulting instruction but allow other 371 * instructions to be generated. (Fetch2 makes no 372 * immediate judgement about streamSeqNum) */ 373 dyn_inst->fault = line_in->fault; 374 DPRINTF(Fetch, "Fault being passed output_index: " 375 "%d: %s\n", output_index, dyn_inst->fault->name()); 376 } else { 377 uint8_t *line = line_in->line; 378 379 TheISA::MachInst inst_word; 380 /* The instruction is wholly in the line, can just 381 * assign */ 382 inst_word = TheISA::gtoh( 383 *(reinterpret_cast<TheISA::MachInst *> 384 (line + fetch_info.inputIndex))); 385 386 if (!decoder->instReady()) { 387 decoder->moreBytes(fetch_info.pc, 388 line_in->lineBaseAddr + fetch_info.inputIndex, 389 inst_word); 390 DPRINTF(Fetch, "Offering MachInst to decoder addr: 0x%x\n", 391 line_in->lineBaseAddr + fetch_info.inputIndex); 392 } 393 394 /* Maybe make the above a loop to accomodate ISAs with 395 * instructions longer than sizeof(MachInst) */ 396 397 if (decoder->instReady()) { 398 /* Make a new instruction and pick up the line, stream, 399 * prediction, thread ids from the incoming line */ 400 dyn_inst = new MinorDynInst(line_in->id); 401 402 /* Fetch and prediction sequence numbers originate here */ 403 dyn_inst->id.fetchSeqNum = fetch_info.fetchSeqNum; 404 dyn_inst->id.predictionSeqNum = fetch_info.predictionSeqNum; 405 /* To complete the set, test that exec sequence number 406 * has not been set */ 407 assert(dyn_inst->id.execSeqNum == 0); 408 409 /* Note that the decoder can update the given PC. 410 * Remember not to assign it until *after* calling 411 * decode */ 412 StaticInstPtr decoded_inst = decoder->decode(fetch_info.pc); 413 dyn_inst->staticInst = decoded_inst; 414 415 dyn_inst->pc = fetch_info.pc; 416 DPRINTF(Fetch, "decoder inst %s\n", *dyn_inst); 417 418 // Collect some basic inst class stats 419 if (decoded_inst->isLoad()) 420 loadInstructions++; 421 else if (decoded_inst->isStore()) 422 storeInstructions++; 423 else if (decoded_inst->isAtomic()) 424 amoInstructions++; 425 else if (decoded_inst->isVector()) 426 vecInstructions++; 427 else if (decoded_inst->isFloating()) 428 fpInstructions++; 429 else if (decoded_inst->isInteger()) 430 intInstructions++; 431 432 DPRINTF(Fetch, "Instruction extracted from line %s" 433 " lineWidth: %d output_index: %d inputIndex: %d" 434 " pc: %s inst: %s\n", 435 line_in->id, 436 line_in->lineWidth, output_index, fetch_info.inputIndex, 437 fetch_info.pc, *dyn_inst); 438 439#if THE_ISA == X86_ISA || THE_ISA == ARM_ISA 440 /* In SE mode, it's possible to branch to a microop when 441 * replaying faults such as page faults (or simply 442 * intra-microcode branches in X86). Unfortunately, 443 * as Minor has micro-op decomposition in a separate 444 * pipeline stage from instruction decomposition, the 445 * following advancePC (which may follow a branch with 446 * microPC() != 0) *must* see a fresh macroop. This 447 * kludge should be improved with an addition to PCState 448 * but I offer it in this form for the moment 449 * 450 * X86 can branch within microops so we need to deal with 451 * the case that, after a branch, the first un-advanced PC 452 * may be pointing to a microop other than 0. Once 453 * advanced, however, the microop number *must* be 0 */ 454 fetch_info.pc.upc(0); 455 fetch_info.pc.nupc(1); 456#endif 457 458 /* Advance PC for the next instruction */ 459 TheISA::advancePC(fetch_info.pc, decoded_inst); 460 461 /* Predict any branches and issue a branch if 462 * necessary */ 463 predictBranch(dyn_inst, prediction); 464 } else { 465 DPRINTF(Fetch, "Inst not ready yet\n"); 466 } 467 468 /* Step on the pointer into the line if there's no 469 * complete instruction waiting */ 470 if (decoder->needMoreBytes()) { 471 fetch_info.inputIndex += sizeof(TheISA::MachInst); 472 473 DPRINTF(Fetch, "Updated inputIndex value PC: %s" 474 " inputIndex: 0x%x lineBaseAddr: 0x%x lineWidth: 0x%x\n", 475 line_in->pc, fetch_info.inputIndex, line_in->lineBaseAddr, 476 line_in->lineWidth); 477 } 478 } 479 480 if (dyn_inst) { 481 /* Step to next sequence number */ 482 fetch_info.fetchSeqNum++; 483 484 /* Correctly size the output before writing */ 485 if (output_index == 0) { 486 insts_out.resize(outputWidth); 487 } 488 /* Pack the generated dynamic instruction into the output */ 489 insts_out.insts[output_index] = dyn_inst; 490 output_index++; 491 492 /* Output MinorTrace instruction info for 493 * pre-microop decomposition macroops */ 494 if (DTRACE(MinorTrace) && !dyn_inst->isFault() && 495 dyn_inst->staticInst->isMacroop()) 496 { 497 dyn_inst->minorTraceInst(*this); 498 } 499 } 500 501 /* Remember the streamSeqNum of this line so we can tell when 502 * we change stream */ 503 fetch_info.lastStreamSeqNum = line_in->id.streamSeqNum; 504 505 /* Asked to discard line or there was a branch or fault */ 506 if (!prediction.isBubble() || /* The remains of a 507 line with a prediction in it */ 508 line_in->isFault() /* A line which is just a fault */) 509 { 510 DPRINTF(Fetch, "Discarding all input on branch/fault\n"); 511 dumpAllInput(tid); 512 fetch_info.havePC = false; 513 line_in = NULL; 514 } else if (discard_line) { 515 /* Just discard one line, one's behind it may have new 516 * stream sequence numbers. There's a DPRINTF above 517 * for this event */ 518 popInput(tid); 519 fetch_info.havePC = false; 520 line_in = NULL; 521 } else if (fetch_info.inputIndex == line_in->lineWidth) { 522 /* Got to end of a line, pop the line but keep PC 523 * in case this is a line-wrapping inst. */ 524 popInput(tid); 525 line_in = NULL; 526 } 527 528 if (!line_in && processMoreThanOneInput) { 529 DPRINTF(Fetch, "Wrapping\n"); 530 line_in = getInput(tid); 531 } 532 } 533 534 /* The rest of the output (if any) should already have been packed 535 * with bubble instructions by insts_out's initialisation */ 536 } 537 if (tid == InvalidThreadID) { 538 assert(insts_out.isBubble()); 539 } 540 /** Reserve a slot in the next stage and output data */ 541 *predictionOut.inputWire = prediction; 542 543 /* If we generated output, reserve space for the result in the next stage 544 * and mark the stage as being active this cycle */ 545 if (!insts_out.isBubble()) { 546 /* Note activity of following buffer */ 547 cpu.activityRecorder->activity(); 548 insts_out.threadId = tid; 549 nextStageReserve[tid].reserve(); 550 } 551 552 /* If we still have input to process and somewhere to put it, 553 * mark stage as active */ 554 for (ThreadID i = 0; i < cpu.numThreads; i++) 555 { 556 if (getInput(i) && nextStageReserve[i].canReserve()) { 557 cpu.activityRecorder->activateStage(Pipeline::Fetch2StageId); 558 break; 559 } 560 } 561 562 /* Make sure the input (if any left) is pushed */ 563 if (!inp.outputWire->isBubble()) 564 inputBuffer[inp.outputWire->id.threadId].pushTail(); 565} 566 567inline ThreadID 568Fetch2::getScheduledThread() 569{ 570 /* Select thread via policy. */ 571 std::vector<ThreadID> priority_list; 572 573 switch (cpu.threadPolicy) { 574 case Enums::SingleThreaded: 575 priority_list.push_back(0); 576 break; 577 case Enums::RoundRobin: 578 priority_list = cpu.roundRobinPriority(threadPriority); 579 break; 580 case Enums::Random: 581 priority_list = cpu.randomPriority(); 582 break; 583 default: 584 panic("Unknown fetch policy"); 585 } 586 587 for (auto tid : priority_list) { 588 if (getInput(tid) && !fetchInfo[tid].blocked) { 589 threadPriority = tid; 590 return tid; 591 } 592 } 593 594 return InvalidThreadID; 595} 596 597bool 598Fetch2::isDrained() 599{ 600 for (const auto &buffer : inputBuffer) { 601 if (!buffer.empty()) 602 return false; 603 } 604 605 return (*inp.outputWire).isBubble() && 606 (*predictionOut.inputWire).isBubble(); 607} 608 609void 610Fetch2::regStats() 611{ 612 using namespace Stats; 613 614 intInstructions 615 .name(name() + ".int_instructions") 616 .desc("Number of integer instructions successfully decoded") 617 .flags(total); 618 619 fpInstructions 620 .name(name() + ".fp_instructions") 621 .desc("Number of floating point instructions successfully decoded") 622 .flags(total); 623 624 vecInstructions 625 .name(name() + ".vec_instructions") 626 .desc("Number of SIMD instructions successfully decoded") 627 .flags(total); 628 629 loadInstructions 630 .name(name() + ".load_instructions") 631 .desc("Number of memory load instructions successfully decoded") 632 .flags(total); 633 634 storeInstructions 635 .name(name() + ".store_instructions") 636 .desc("Number of memory store instructions successfully decoded") 637 .flags(total); 638 639 amoInstructions 640 .name(name() + ".amo_instructions") 641 .desc("Number of memory atomic instructions successfully decoded") 642 .flags(total); 643} 644 645void 646Fetch2::minorTrace() const 647{ 648 std::ostringstream data; 649 650 if (fetchInfo[0].blocked) 651 data << 'B'; 652 else 653 (*out.inputWire).reportData(data); 654 655 MINORTRACE("inputIndex=%d havePC=%d predictionSeqNum=%d insts=%s\n", 656 fetchInfo[0].inputIndex, fetchInfo[0].havePC, fetchInfo[0].predictionSeqNum, data.str()); 657 inputBuffer[0].minorTrace(); 658} 659 660} 661