comparison src/share/vm/interpreter/templateInterpreter.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 55fb97c4c58d
children b5f3a471e646
comparison
equal deleted inserted replaced
23613:b374548dcb48 23614:32b682649973
1 /* 1 /*
2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 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.
42 address _entry[number_of_states]; 42 address _entry[number_of_states];
43 43
44 public: 44 public:
45 // Construction 45 // Construction
46 EntryPoint(); 46 EntryPoint();
47 EntryPoint(address bentry, address centry, address sentry, address aentry, address ientry, address lentry, address fentry, address dentry, address ventry); 47 EntryPoint(address bentry, address zentry, address centry, address sentry, address aentry, address ientry, address lentry, address fentry, address dentry, address ventry);
48 48
49 // Attributes 49 // Attributes
50 address entry(TosState state) const; // return target address for a given tosca state 50 address entry(TosState state) const; // return target address for a given tosca state
51 void set_entry(TosState state, address entry); // set target address for a given tosca state 51 void set_entry(TosState state, address entry); // set target address for a given tosca state
52 void print(); 52 void print();