src/cpu/zero/vm/entryFrame_zero.hpp

Print this page
rev 4938 : 8024648: 8016131 & new build break Zero port
Summary: Fix breakages in Zero port caused by build system changes and 8016131.
Reviewed-by: amurillo

*** 1,8 **** /* * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. ! * Copyright 2008, 2010 Red Hat, Inc. * 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,8 ---- /* * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 2013 Red Hat, Inc. * 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.
*** 56,67 **** static EntryFrame *build(const intptr_t* parameters, int parameter_words, JavaCallWrapper* call_wrapper, TRAPS); public: ! JavaCallWrapper *call_wrapper() const { ! return (JavaCallWrapper *) value_of_word(call_wrapper_off); } public: void identify_word(int frame_index, int offset, --- 56,67 ---- static EntryFrame *build(const intptr_t* parameters, int parameter_words, JavaCallWrapper* call_wrapper, TRAPS); public: ! JavaCallWrapper **call_wrapper() const { ! return (JavaCallWrapper **) addr_of_word(call_wrapper_off); } public: void identify_word(int frame_index, int offset,