comparison src/share/vm/ci/ciMethod.hpp @ 24170:0b85ccd62409 jdk8u131-b01

8168699: Validate special case invocations Reviewed-by: kevinw, vlivanov
author coleenp
date Tue, 13 Dec 2016 14:37:04 -0500
parents bf41eee321e5
children 719853999215
comparison
equal deleted inserted replaced
24169:5ee58c7d3938 24170:0b85ccd62409
1 /* 1 /*
2 * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 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.
314 bool is_accessor () const; 314 bool is_accessor () const;
315 bool is_initializer () const; 315 bool is_initializer () const;
316 bool can_be_statically_bound() const { return _can_be_statically_bound; } 316 bool can_be_statically_bound() const { return _can_be_statically_bound; }
317 bool is_boxing_method() const; 317 bool is_boxing_method() const;
318 bool is_unboxing_method() const; 318 bool is_unboxing_method() const;
319 bool is_object_initializer() const;
319 320
320 // Replay data methods 321 // Replay data methods
321 void dump_name_as_ascii(outputStream* st); 322 void dump_name_as_ascii(outputStream* st);
322 void dump_replay_data(outputStream* st); 323 void dump_replay_data(outputStream* st);
323 324