comparison src/cpu/x86/vm/interp_masm_x86.hpp @ 23614:32b682649973 jdk8u75-b04

8132051: Better byte behavior Reviewed-by: coleenp, roland
author kevinw
date Fri, 15 Jan 2016 22:33:15 +0000
parents 5ccbab1c69f3
children
comparison
equal deleted inserted replaced
23613:b374548dcb48 23614:32b682649973
1 /* 1 /*
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
46 46
47 Register _locals_register; // register that contains the pointer to the locals 47 Register _locals_register; // register that contains the pointer to the locals
48 Register _bcp_register; // register that contains the bcp 48 Register _bcp_register; // register that contains the bcp
49 49
50 public: 50 public:
51 // narrow int return value
52 void narrow(Register result);
53
51 #ifndef CC_INTERP 54 #ifndef CC_INTERP
52 void profile_obj_type(Register obj, const Address& mdo_addr); 55 void profile_obj_type(Register obj, const Address& mdo_addr);
53 void profile_arguments_type(Register mdp, Register callee, Register tmp, bool is_virtual); 56 void profile_arguments_type(Register mdp, Register callee, Register tmp, bool is_virtual);
54 void profile_return_type(Register mdp, Register ret, Register tmp); 57 void profile_return_type(Register mdp, Register ret, Register tmp);
55 void profile_parameters_type(Register mdp, Register tmp1, Register tmp2); 58 void profile_parameters_type(Register mdp, Register tmp1, Register tmp2);