< prev index next >

src/java.desktop/share/classes/sun/java2d/marlin/ArrayCacheConst.java

Print this page


   1 /*
   2  * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 225                         final BucketStats s = bucketStats[i];
 226 
 227                         if (s.getOp != 0) {
 228                             logInfo("  Bucket[" + ARRAY_SIZES[i] + "]: "
 229                                     + "get: " + s.getOp
 230                                     + " - put: " + s.returnOp
 231                                     + " - create: " + s.createOp
 232                                     + " :: max size: " + s.maxSize
 233                             );
 234                         }
 235                     }
 236                 }
 237             }
 238             return totalCacheBytes;
 239         }
 240 
 241         private int getByteFactor() {
 242             int factor = 1;
 243             if (name.contains("Int") || name.contains("Float")) {
 244                 factor = 4;


 245             }
 246             return factor;
 247         }
 248 
 249         long getTotalInitialBytes() {
 250             return getByteFactor() * totalInitial;
 251         }
 252     }
 253 
 254     static final class BucketStats {
 255         int getOp = 0;
 256         int createOp = 0;
 257         int returnOp = 0;
 258         int maxSize = 0;
 259 
 260         void reset() {
 261             getOp = 0;
 262             createOp = 0;
 263             returnOp = 0;
 264             maxSize = 0;
   1 /*
   2  * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 225                         final BucketStats s = bucketStats[i];
 226 
 227                         if (s.getOp != 0) {
 228                             logInfo("  Bucket[" + ARRAY_SIZES[i] + "]: "
 229                                     + "get: " + s.getOp
 230                                     + " - put: " + s.returnOp
 231                                     + " - create: " + s.createOp
 232                                     + " :: max size: " + s.maxSize
 233                             );
 234                         }
 235                     }
 236                 }
 237             }
 238             return totalCacheBytes;
 239         }
 240 
 241         private int getByteFactor() {
 242             int factor = 1;
 243             if (name.contains("Int") || name.contains("Float")) {
 244                 factor = 4;
 245             } else if (name.contains("Double")) {
 246                 factor = 8;
 247             }
 248             return factor;
 249         }
 250 
 251         long getTotalInitialBytes() {
 252             return getByteFactor() * totalInitial;
 253         }
 254     }
 255 
 256     static final class BucketStats {
 257         int getOp = 0;
 258         int createOp = 0;
 259         int returnOp = 0;
 260         int maxSize = 0;
 261 
 262         void reset() {
 263             getOp = 0;
 264             createOp = 0;
 265             returnOp = 0;
 266             maxSize = 0;
< prev index next >