13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 #include "precompiled.hpp"
25 #include "prims/foreign_globals.hpp"
26 #include "utilities/debug.hpp"
27
28 const ABIDescriptor ForeignGlobals::parse_abi_descriptor_impl(jobject jabi) const {
29 ShouldNotCallThis();
30 return {};
31 }
32
33 const BufferLayout ForeignGlobals::parse_buffer_layout_impl(jobject jlayout) const {
34 ShouldNotCallThis();
35 return {};
36 }
37
38 const CallRegs ForeignGlobals::parse_call_regs_impl(jobject jconv) const {
39 ShouldNotCallThis();
40 return {};
41 }
|
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 #include "precompiled.hpp"
25 #include "prims/foreign_globals.hpp"
26 #include "utilities/debug.hpp"
27
28 const ABIDescriptor ForeignGlobals::parse_abi_descriptor_impl(jobject jabi) const {
29 ShouldNotCallThis();
30 return {};
31 }
32
33 const CallRegs ForeignGlobals::parse_call_regs_impl(jobject jconv) const {
34 ShouldNotCallThis();
35 return {};
36 }
37
38 VMReg ForeignGlobals::vmstorage_to_vmreg(int type, int index) {
39 Unimplemented();
40 return VMRegImpl::Bad();
41 }
|