Lines Matching defs:size

74     fatal_if(params->sizeROB > UINT16_MAX, "ROB size set to %d exceeds the "
76 fatal_if(params->sizeStoreBuffer > UINT16_MAX, "ROB size set to %d "
79 fatal_if(params->sizeLoadBuffer > UINT16_MAX, "Load buffer size set to"
260 .desc("Max size of the ready list observed")
312 depGraph.size(), 2 * windowSize);
313 DPRINTF(TraceCPUData, "After 1st read, depGraph size:%d.\n",
314 depGraph.size());
318 depGraph.size(), 2 * windowSize);
319 DPRINTF(TraceCPUData, "After 2st read, depGraph size:%d.\n",
320 depGraph.size());
361 depGraph.size());
396 depGraph.size());
418 auto num_depts = parent_itr->second->dependents.size();
435 "depFreeQueue = %d ,", depGraph.size(), readyList.size(),
436 depFreeQueue.size());
580 "depFreeQueue = %d ,", depGraph.size(), readyList.size(),
581 depFreeQueue.size());
591 // If the size of the dependency graph is less than the dependency window
594 if (depGraph.size() < windowSize && !traceComplete)
629 "virt addr %d, pc %#x, size %d, flags %d).\n",
631 node_ptr->pc, node_ptr->size, node_ptr->flags);
643 // an assert fail in the L1 cache. If it does then truncate the size to
650 if (!(blk_offset + node_ptr->size <= blk_size)) {
651 node_ptr->size = blk_size - blk_offset;
657 node_ptr->physAddr, node_ptr->size,
665 req->setVirt(node_ptr->asid, node_ptr->virtAddr, node_ptr->size,
782 // If the size of the dependency graph is less than the dependency window
785 if (depGraph.size() < windowSize && !traceComplete)
820 maxReadyListSize = std::max<double>(readyList.size(),
857 // Update the stat for max size reached of the readyList
858 maxReadyListSize = std::max<double>(readyList.size(),
929 DPRINTFR(TraceCPUData, "\tCleared. inFlightNodes.size() = %d, "
930 "oldestInFlightRobNum = %d\n", inFlightNodes.size(),
1138 DPRINTF(TraceCPUInst, "inst fetch: %c addr %d pc %#x size %d tick %d\n",
1149 TraceCPU::FixedRetryGen::send(Addr addr, unsigned size, const MemCmd& cmd,
1154 auto req = std::make_shared<Request>(addr, size, flags, masterID);
1275 // Assign window size equal to the field in the trace that was recorded
1300 assert((pkt_msg.rob_dep()).size() <= element->maxRobDep);
1301 for (int i = 0; i < (pkt_msg.rob_dep()).size(); i++) {
1308 assert((pkt_msg.reg_dep()).size() <= TheISA::MaxInstSrcRegs);
1309 for (int i = 0; i < (pkt_msg.reg_dep()).size(); i++) {
1340 element->size = pkt_msg.size();
1342 element->size = 0;
1441 DPRINTFR(TraceCPUData, ",%i", size);
1501 element->blocksize = pkt_msg.size();