src/share/vm/c1/c1_ValueSet.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2001, 2005, 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) 2001, 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,36 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_C1_C1_VALUESET_HPP + #define SHARE_VM_C1_C1_VALUESET_HPP + + #include "c1/c1_Instruction.hpp" + #include "memory/allocation.hpp" + #include "utilities/bitMap.inline.hpp" + // A ValueSet is a simple abstraction on top of a BitMap representing // a set of Instructions. Currently it assumes that the number of // instructions is fixed during its lifetime; should make it // automatically resizable.
*** 91,95 **** --- 98,104 ---- } inline bool ValueSet::equals(ValueSet* other) { return _map.is_same(other->_map); } + + #endif // SHARE_VM_C1_C1_VALUESET_HPP