comparison src/share/vm/code/debugInfoRec.cpp @ 12355:cefad50507d8

Merge with hs25-b53
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 11 Oct 2013 10:38:03 +0200
parents b8f261ba79c6 9758d9f36299
children fe11cb3c7882
comparison
equal deleted inserted replaced
12058:ccb4f2af2319 12355:cefad50507d8
1 /* 1 /*
2 * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1998, 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.
36 friend class DebugInformationRecorder; 36 friend class DebugInformationRecorder;
37 int _offset; // location in the stream of this scope 37 int _offset; // location in the stream of this scope
38 int _length; // number of bytes in the stream 38 int _length; // number of bytes in the stream
39 int _hash; // hash of stream bytes (for quicker reuse) 39 int _hash; // hash of stream bytes (for quicker reuse)
40 40
41 void* operator new(size_t ignore, DebugInformationRecorder* dir) { 41 void* operator new(size_t ignore, DebugInformationRecorder* dir) throw() {
42 assert(ignore == sizeof(DIR_Chunk), ""); 42 assert(ignore == sizeof(DIR_Chunk), "");
43 if (dir->_next_chunk >= dir->_next_chunk_limit) { 43 if (dir->_next_chunk >= dir->_next_chunk_limit) {
44 const int CHUNK = 100; 44 const int CHUNK = 100;
45 dir->_next_chunk = NEW_RESOURCE_ARRAY(DIR_Chunk, CHUNK); 45 dir->_next_chunk = NEW_RESOURCE_ARRAY(DIR_Chunk, CHUNK);
46 dir->_next_chunk_limit = dir->_next_chunk + CHUNK; 46 dir->_next_chunk_limit = dir->_next_chunk + CHUNK;