Exemple #1
0
        public static ICacheController <Tag> Create(CacheGeometry cacheGeometry
                                                    , IStorage <Tag> storage
                                                    , IReplacementStrategy <Tag> replacementStrategy)
        {
            ICacheController <Tag> cacheController = Create(cacheGeometry, storage);

            cacheController.ReplacementStrategy = replacementStrategy;
            return(cacheController);
        }
Exemple #2
0
 //IReplacementStrategy<Tag> replacementStrategy_;
 public Cache(CacheGeometry cacheGeometry)
 {
     cacheGeometry_ = cacheGeometry;
     Sets           = new List <Set <Tag> >();
     for (int i = 0; i < CacheGeometry.NumberOfWays; ++i)
     {
         Sets.Add(new Set <Tag>(CacheGeometry.LinesPerSet
                                , CacheGeometry.WordsInLine
                                , CacheGeometry.WordSize
                                , i));
     }
 }
Exemple #3
0
        public static ICacheController <Tag> Create(CacheGeometry cacheGeometry
                                                    , IStorage <Tag> storage)
        {
            /*  the purpose of this factory is to check
             *  whether it's possible to convert Tag to int in run-time
             */
            Tag tag  = default;
            int obj2 = ConvertToInt(tag);

            // adjust cache's buffer size automatically based on storage record size.
            // since serialization of record may be longer it increase buffer using some coefficient
            if (cacheGeometry.AutomaticWordSizeFactor != null)
            {
                int maxRecordLength = storage.GetMaxRecordLength();
                cacheGeometry.SetAutomaticWordSize(maxRecordLength);
            }

            ICacheController <Tag> cacheController = new AroundCacheController <Tag>(cacheGeometry, storage);

            return(cacheController);
        }