src/share/vm/opto/idealKit.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2005, 2009, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 20,29 **** --- 20,41 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_OPTO_IDEALKIT_HPP + #define SHARE_VM_OPTO_IDEALKIT_HPP + + #include "opto/addnode.hpp" + #include "opto/cfgnode.hpp" + #include "opto/connode.hpp" + #include "opto/divnode.hpp" + #include "opto/mulnode.hpp" + #include "opto/phaseX.hpp" + #include "opto/subnode.hpp" + #include "opto/type.hpp" + //----------------------------------------------------------------------------- //----------------------------IdealKit----------------------------------------- // Set of utilities for creating control flow and scalar SSA data flow. // Control: // if_then(left, relop, right)
*** 226,230 **** --- 238,244 ---- const char *leaf_name, Node* parm0, Node* parm1 = NULL, Node* parm2 = NULL); }; + + #endif // SHARE_VM_OPTO_IDEALKIT_HPP