cpu.cc (13966:3189413c5894) | cpu.cc (14198:9c2f67392409) |
---|---|
1/* 2 * Copyright (c) 2012-2014, 2017 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 --- 307 unchanged lines hidden (view full) --- 316} 317 318MinorCPU * 319MinorCPUParams::create() 320{ 321 return new MinorCPU(this); 322} 323 | 1/* 2 * Copyright (c) 2012-2014, 2017 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 --- 307 unchanged lines hidden (view full) --- 316} 317 318MinorCPU * 319MinorCPUParams::create() 320{ 321 return new MinorCPU(this); 322} 323 |
324MasterPort &MinorCPU::getInstPort() | 324Port & 325MinorCPU::getInstPort() |
325{ 326 return pipeline->getInstPort(); 327} 328 | 326{ 327 return pipeline->getInstPort(); 328} 329 |
329MasterPort &MinorCPU::getDataPort() | 330Port & 331MinorCPU::getDataPort() |
330{ 331 return pipeline->getDataPort(); 332} 333 334Counter 335MinorCPU::totalInsts() const 336{ 337 Counter ret = 0; --- 17 unchanged lines hidden --- | 332{ 333 return pipeline->getDataPort(); 334} 335 336Counter 337MinorCPU::totalInsts() const 338{ 339 Counter ret = 0; --- 17 unchanged lines hidden --- |