710N/A/*
3101N/A * Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved.
710N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
710N/A *
710N/A * This code is free software; you can redistribute it and/or modify it
710N/A * under the terms of the GNU General Public License version 2 only, as
710N/A * published by the Free Software Foundation.
710N/A *
710N/A * This code is distributed in the hope that it will be useful, but WITHOUT
710N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
710N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
710N/A * version 2 for more details (a copy is included in the LICENSE file that
710N/A * accompanied this code).
710N/A *
710N/A * You should have received a copy of the GNU General Public License version
710N/A * 2 along with this work; if not, write to the Free Software Foundation,
710N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
710N/A *
1472N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1472N/A * or visit www.oracle.com if you need additional information or have any
1472N/A * questions.
710N/A *
710N/A */
710N/A
1879N/A#include "precompiled.hpp"
1879N/A#include "interpreter/interpreter.hpp"
1879N/A#include "memory/allocation.inline.hpp"
1879N/A#include "prims/methodHandles.hpp"
710N/A
710N/A#define __ _masm->
710N/A
1769N/A#ifdef PRODUCT
1769N/A#define BLOCK_COMMENT(str) /* nothing */
3932N/A#define STOP(error) stop(error)
1769N/A#else
1769N/A#define BLOCK_COMMENT(str) __ block_comment(str)
3932N/A#define STOP(error) block_comment(error); __ stop(error)
1769N/A#endif
1769N/A
1769N/A#define BIND(label) bind(label); BLOCK_COMMENT(#label ":")
1769N/A
3932N/A// Workaround for C++ overloading nastiness on '0' for RegisterOrConstant.
3932N/Astatic RegisterOrConstant constant( Error!

 

There was an error!

null

java.lang.NullPointerException