src/share/vm/code/compiledIC.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6951083 Cdiff src/share/vm/code/compiledIC.cpp

src/share/vm/code/compiledIC.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 439,453 **** } } } ! inline static RelocIterator parse_ic(CodeBlob* code, address ic_call, oop* &_oop_addr, bool *is_optimized) { address first_oop = NULL; // Mergers please note: Sun SC5.x CC insists on an lvalue for a reference parameter. ! CodeBlob *code1 = code; ! return virtual_call_Relocation::parse_ic(code1, ic_call, first_oop, _oop_addr, is_optimized); } CompiledIC::CompiledIC(NativeCall* ic_call) : _ic_call(ic_call), _oops(parse_ic(NULL, ic_call->instruction_address(), _oop_addr, &_is_optimized)) --- 439,453 ---- } } } ! inline static RelocIterator parse_ic(nmethod* nm, address ic_call, oop* &_oop_addr, bool *is_optimized) { address first_oop = NULL; // Mergers please note: Sun SC5.x CC insists on an lvalue for a reference parameter. ! nmethod* tmp_nm = nm; ! return virtual_call_Relocation::parse_ic(tmp_nm, ic_call, first_oop, _oop_addr, is_optimized); } CompiledIC::CompiledIC(NativeCall* ic_call) : _ic_call(ic_call), _oops(parse_ic(NULL, ic_call->instruction_address(), _oop_addr, &_is_optimized))
src/share/vm/code/compiledIC.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File