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