comparison src/share/vm/opto/parse.hpp @ 17795:a9becfeecd1b

Merge
author kvn
date Wed, 22 Jan 2014 17:42:23 -0800
parents 849eb7bfceac 3514ee402842
children 3edd4a71588b 4ca6dc0799b6 62c54fcc0a35
comparison
equal deleted inserted replaced
17794:3514ee402842 17795:a9becfeecd1b
1 /* 1 /*
2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2013, 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.
139 uint count_inlines() const { return _count_inlines; }; 139 uint count_inlines() const { return _count_inlines; };
140 #endif 140 #endif
141 GrowableArray<InlineTree*> subtrees() { return _subtrees; } 141 GrowableArray<InlineTree*> subtrees() { return _subtrees; }
142 142
143 void print_value_on(outputStream* st) const PRODUCT_RETURN; 143 void print_value_on(outputStream* st) const PRODUCT_RETURN;
144
145 bool _forced_inline; // Inlining was forced by CompilerOracle or ciReplay
146 bool forced_inline() const { return _forced_inline; }
147 // Count number of nodes in this subtree
148 int count() const;
149 // Dump inlining replay data to the stream.
150 void dump_replay_data(outputStream* out);
144 }; 151 };
145 152
146 153
147 //----------------------------------------------------------------------------- 154 //-----------------------------------------------------------------------------
148 //------------------------------Parse------------------------------------------ 155 //------------------------------Parse------------------------------------------