comparison src/os/solaris/dtrace/generateJvmOffsets.cpp @ 1563:1a5913bf5e19

6951083: oops and relocations should part of nmethod not CodeBlob Summary: This moves the oops from Codeblob to nmethod. Reviewed-by: kvn, never
author twisti
date Thu, 20 May 2010 06:34:23 -0700
parents bd02caa94611
children e9ff18c4ace7
comparison
equal deleted inserted replaced
1544:1a88d3c58e1d 1563:1a5913bf5e19
1 /* 1 /*
2 * Copyright 2003-2009 Sun Microsystems, Inc. All Rights Reserved. 2 * Copyright 2003-2010 Sun Microsystems, Inc. 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.
230 230
231 GEN_OFFS(CodeBlob, _name); 231 GEN_OFFS(CodeBlob, _name);
232 GEN_OFFS(CodeBlob, _header_size); 232 GEN_OFFS(CodeBlob, _header_size);
233 GEN_OFFS(CodeBlob, _instructions_offset); 233 GEN_OFFS(CodeBlob, _instructions_offset);
234 GEN_OFFS(CodeBlob, _data_offset); 234 GEN_OFFS(CodeBlob, _data_offset);
235 GEN_OFFS(CodeBlob, _oops_offset);
236 GEN_OFFS(CodeBlob, _oops_length);
237 GEN_OFFS(CodeBlob, _frame_size); 235 GEN_OFFS(CodeBlob, _frame_size);
238 printf("\n"); 236 printf("\n");
239 237
240 GEN_OFFS(nmethod, _method); 238 GEN_OFFS(nmethod, _method);
239 GEN_OFFS(nmethod, _oops_offset);
241 GEN_OFFS(nmethod, _scopes_data_offset); 240 GEN_OFFS(nmethod, _scopes_data_offset);
242 GEN_OFFS(nmethod, _scopes_pcs_offset); 241 GEN_OFFS(nmethod, _scopes_pcs_offset);
243 GEN_OFFS(nmethod, _handler_table_offset); 242 GEN_OFFS(nmethod, _handler_table_offset);
244 GEN_OFFS(nmethod, _deoptimize_offset); 243 GEN_OFFS(nmethod, _deoptimize_offset);
245 GEN_OFFS(nmethod, _orig_pc_offset); 244 GEN_OFFS(nmethod, _orig_pc_offset);