comparison src/cpu/zero/vm/interpreter_zero.cpp @ 1197:9e1637a04678

6920970: Zero build fixes after 6849984 and 6911204 Summary: Two recent commits broke the build on Zero. Reviewed-by: twisti Contributed-by: Gary Benson <gbenson@redhat.com>
author twisti
date Thu, 28 Jan 2010 08:36:34 -0800
parents 354d3184f6b2
children c18cbe5936b8
comparison
equal deleted inserted replaced
1189:89ca5ab4fa60 1197:9e1637a04678
1 /* 1 /*
2 * Copyright 2003-2007 Sun Microsystems, Inc. All Rights Reserved. 2 * Copyright 2003-2007 Sun Microsystems, Inc. All Rights Reserved.
3 * Copyright 2007, 2008 Red Hat, Inc. 3 * Copyright 2007, 2008, 2009, 2010 Red Hat, Inc.
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * 5 *
6 * This code is free software; you can redistribute it and/or modify it 6 * This code is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 only, as 7 * under the terms of the GNU General Public License version 2 only, as
8 * published by the Free Software Foundation. 8 * published by the Free Software Foundation.
45 45
46 address InterpreterGenerator::generate_method_handle_entry() { 46 address InterpreterGenerator::generate_method_handle_entry() {
47 return ShouldNotCallThisEntry(); 47 return ShouldNotCallThisEntry();
48 } 48 }
49 49
50 bool AbstractInterpreter::can_be_compiled(methodHandle m) {
51 return true;
52 }
53
50 int AbstractInterpreter::size_activation(methodOop method, 54 int AbstractInterpreter::size_activation(methodOop method,
51 int tempcount, 55 int tempcount,
52 int popframe_extra_args, 56 int popframe_extra_args,
53 int moncount, 57 int moncount,
54 int callee_param_count, 58 int callee_param_count,