src/share/vm/ci/ciConstantPoolCache.cpp

Mon, 07 Oct 2013 10:41:56 -0700

author
twisti
date
Mon, 07 Oct 2013 10:41:56 -0700
changeset 5907
c775af091fe9
parent 2314
f95d63e2154a
child 6876
710a3c8b516e
permissions
-rw-r--r--

8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method
Reviewed-by: kvn

duke@435 1 /*
stefank@2314 2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "ci/ciConstantPoolCache.hpp"
stefank@2314 27 #include "ci/ciUtilities.hpp"
stefank@2314 28 #include "memory/allocation.hpp"
stefank@2314 29 #include "memory/allocation.inline.hpp"
duke@435 30
duke@435 31 // ciConstantPoolCache
duke@435 32 //
duke@435 33 // This class caches indexed constant pool lookups.
duke@435 34
duke@435 35 // ------------------------------------------------------------------
duke@435 36 // ciConstantPoolCache::ciConstantPoolCache
duke@435 37 ciConstantPoolCache::ciConstantPoolCache(Arena* arena,
duke@435 38 int expected_size) {
duke@435 39 _elements =
duke@435 40 new (arena) GrowableArray<void*>(arena, expected_size, 0, 0);
duke@435 41 _keys = new (arena) GrowableArray<intptr_t>(arena, expected_size, 0, 0);
duke@435 42 }
duke@435 43
duke@435 44 // ------------------------------------------------------------------
duke@435 45 // ciConstantPoolCache::get
duke@435 46 //
duke@435 47 // Get the entry at some index
duke@435 48 void* ciConstantPoolCache::get(int index) {
duke@435 49 ASSERT_IN_VM;
duke@435 50 int pos = find(index);
duke@435 51 if (pos >= _keys->length() ||
duke@435 52 _keys->at(pos) != index) {
duke@435 53 // This element is not present in the cache.
duke@435 54 return NULL;
duke@435 55 }
duke@435 56 return _elements->at(pos);
duke@435 57 }
duke@435 58
duke@435 59 // ------------------------------------------------------------------
duke@435 60 // ciConstantPoolCache::find
duke@435 61 //
duke@435 62 // Use binary search to find the position of this index in the cache.
duke@435 63 // If there is no entry in the cache corresponding to this oop, return
duke@435 64 // the position at which the index would be inserted.
duke@435 65 int ciConstantPoolCache::find(int key) {
duke@435 66 int min = 0;
duke@435 67 int max = _keys->length()-1;
duke@435 68
duke@435 69 while (max >= min) {
duke@435 70 int mid = (max + min) / 2;
duke@435 71 int value = _keys->at(mid);
duke@435 72 if (value < key) {
duke@435 73 min = mid + 1;
duke@435 74 } else if (value > key) {
duke@435 75 max = mid - 1;
duke@435 76 } else {
duke@435 77 return mid;
duke@435 78 }
duke@435 79 }
duke@435 80 return min;
duke@435 81 }
duke@435 82
duke@435 83 // ------------------------------------------------------------------
duke@435 84 // ciConstantPoolCache::insert
duke@435 85 //
duke@435 86 // Insert a ciObject into the table at some index.
duke@435 87 void ciConstantPoolCache::insert(int index, void* elem) {
duke@435 88 int i;
duke@435 89 int pos = find(index);
duke@435 90 for (i = _keys->length()-1; i >= pos; i--) {
duke@435 91 _keys->at_put_grow(i+1, _keys->at(i));
duke@435 92 _elements->at_put_grow(i+1, _elements->at(i));
duke@435 93 }
duke@435 94 _keys->at_put_grow(pos, index);
duke@435 95 _elements->at_put_grow(pos, elem);
duke@435 96 }
duke@435 97
duke@435 98 // ------------------------------------------------------------------
duke@435 99 // ciConstantPoolCache::print
duke@435 100 //
duke@435 101 // Print debugging information about the cache.
duke@435 102 void ciConstantPoolCache::print() {
duke@435 103 Unimplemented();
duke@435 104 }

mercurial