/** * **************************************************************************** * Copyright (c) 2010-2016 by Min Cai (min.cai.china@gmail.com). * <p> * This file is part of the Archimulator multicore architectural simulator. * <p> * Archimulator is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * <p> * Archimulator is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * <p> * You should have received a copy of the GNU General Public License * along with Archimulator. If not, see <http://www.gnu.org/licenses/>. * **************************************************************************** */ package archimulator.uncore.cache; import archimulator.common.CPUExperiment; import archimulator.common.Simulation; import archimulator.common.SimulationObject; import java.io.Serializable; import java.util.List; /** * Cache. * * @param <StateT> state * @author Min Cai */ public interface Cache<StateT extends Serializable> extends SimulationObject<CPUExperiment, Simulation> { /** * Get lines in the specified set. * * @param set the set index * @return the lines in the specified set */ List<CacheLine<StateT>> getLines(int set); /** * Get the line at the specified set and way. * * @param set the set index * @param way the way * @return the line at the specified set and way */ default CacheLine<StateT> getLine(int set, int way) { if (way < 0 || way >= this.getAssociativity()) { getSimulation().dumpPendingFlowTree(); System.out.flush(); throw new IllegalArgumentException(String.format("set: %d, way: %d, this.associativity: %d", set, way, this.getAssociativity())); } return this.getLines(set).get(way); } /** * Get the set at the specified index. * * @param set the set index * @return the set at the specified index */ CacheSet<StateT> get(int set); /** * Find the way of the line that matches the specified address. * * @param address the address * @return the way of the line that matches the specified address if any exists; otherwise -1 */ default int findWay(int address) { int tag = this.getTag(address); int set = this.getSet(address); for (CacheLine<StateT> line : this.getLines(set)) { if (line.getTag() == tag && line.getState() != line.getInitialState()) { return line.getWay(); } } return -1; } /** * Find the line that matches the specified address. * * @param address the address * @return the line that matches the specified address if any exists; otherwise null */ default CacheLine<StateT> findLine(int address) { int set = this.getSet(address); int way = this.findWay(address); return way != -1 ? this.getLine(set, way) : null; } /** * Get the tag of the specified address. * * @param address the address * @return the tag of the specified address */ default int getTag(int address) { return CacheGeometry.getTag(address, this.getGeometry()); } /** * Get the set index of the specified address. * * @param address the address * @return the set index of the specified address */ default int getSet(int address) { int set = CacheGeometry.getSet(address, this.getGeometry()); if (set < 0 || set >= this.getNumSets()) { throw new IllegalArgumentException(String.format("address: 0x%08x, set: %d, this.numSets: %d", address, set, this.getNumSets())); } return set; } /** * Get the line ID of the specified address. * * @param address the address * @return the line ID of the specified address */ default int getLineId(int address) { return CacheGeometry.getLineId(address, this.getGeometry()); } /** * Get the number of sets. * * @return the number of sets */ default int getNumSets() { return this.getGeometry().getNumSets(); } /** * Get the associativity. * * @return the associativity */ default int getAssociativity() { return this.getGeometry().getAssociativity(); } /** * Get the line size. * * @return the line size */ default int getLineSize() { return this.getGeometry().getLineSize(); } /** * Get the name. * * @return the name */ String getName(); /** * Get the geometry. * * @return the geometry */ CacheGeometry getGeometry(); /** * Get the number of tags in use. * * @return the number of tags in use */ int getNumTagsInUse(); /** * Set the number of tags in use. * * @param numTagsInUse the number of tags in use */ void setNumTagsInUse(int numTagsInUse); /** * Get the occupancy ratio. * * @return the occupancy ratio */ default double getOccupancyRatio() { return (double) getNumTagsInUse() / this.getGeometry().getNumLines(); } }