src/share/vm/prims/jvmtiTagMap.cpp

changeset 5097
92ef81e2f571
parent 4993
746b070f5022
child 5784
190899198332
equal deleted inserted replaced
5094:c272092594bd 5097:92ef81e2f571
1 /* 1 /*
2 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 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 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
2855 } 2855 }
2856 } 2856 }
2857 2857
2858 // references from the constant pool 2858 // references from the constant pool
2859 { 2859 {
2860 ConstantPool* const pool = ik->constants(); 2860 ConstantPool* pool = ik->constants();
2861 for (int i = 1; i < pool->length(); i++) { 2861 for (int i = 1; i < pool->length(); i++) {
2862 constantTag tag = pool->tag_at(i).value(); 2862 constantTag tag = pool->tag_at(i).value();
2863 if (tag.is_string() || tag.is_klass()) { 2863 if (tag.is_string() || tag.is_klass()) {
2864 oop entry; 2864 oop entry;
2865 if (tag.is_string()) { 2865 if (tag.is_string()) {

mercurial