src/share/vm/c1/c1_CodeStubs.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/c1/c1_CodeStubs.hpp	Thu Jan 20 13:59:27 2011
--- new/src/share/vm/c1/c1_CodeStubs.hpp	Thu Jan 20 13:59:27 2011

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 1999, 2011, Oracle and/or its affiliates. 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.
*** 474,495 **** --- 474,489 ---- #endif // PRODUCT }; ! class ArrayStoreExceptionStub: public CodeStub { ! class ArrayStoreExceptionStub: public SimpleExceptionStub { private: CodeEmitInfo* _info; public: ! ArrayStoreExceptionStub(CodeEmitInfo* info); virtual void emit_code(LIR_Assembler* emit); virtual CodeEmitInfo* info() const { return _info; } virtual bool is_exception_throw_stub() const { return true; } virtual void visit(LIR_OpVisitState* visitor) { visitor->do_slow_case(_info); } ! ArrayStoreExceptionStub(LIR_Opr obj, CodeEmitInfo* info): SimpleExceptionStub(Runtime1::throw_array_store_exception_id, obj, info) {} #ifndef PRODUCT virtual void print_name(outputStream* out) const { out->print("ArrayStoreExceptionStub"); } #endif // PRODUCT };

src/share/vm/c1/c1_CodeStubs.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File