src/share/vm/opto/block.hpp

changeset 2314
f95d63e2154a
parent 2040
0e35fa8ebccd
child 3049
95134e034042
equal deleted inserted replaced
2313:e33f46fc48ed 2314:f95d63e2154a
1 /* 1 /*
2 * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2010, 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.
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24 24
25 #ifndef SHARE_VM_OPTO_BLOCK_HPP
26 #define SHARE_VM_OPTO_BLOCK_HPP
27
28 #include "opto/multnode.hpp"
29 #include "opto/node.hpp"
30 #include "opto/phase.hpp"
31
25 // Optimization - Graph Style 32 // Optimization - Graph Style
26 33
27 class Block; 34 class Block;
28 class CFGLoop; 35 class CFGLoop;
29 class MachCallNode; 36 class MachCallNode;
714 void grow_traces(); 721 void grow_traces();
715 void merge_traces(bool loose_connections); 722 void merge_traces(bool loose_connections);
716 void reorder_traces(int count); 723 void reorder_traces(int count);
717 void union_traces(Trace* from, Trace* to); 724 void union_traces(Trace* from, Trace* to);
718 }; 725 };
726
727 #endif // SHARE_VM_OPTO_BLOCK_HPP

mercurial