src/share/vm/code/location.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2008, 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) 1997, 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_CODE_LOCATION_HPP + #define SHARE_VM_CODE_LOCATION_HPP + + #include "asm/assembler.hpp" + #include "code/vmreg.hpp" + #include "memory/allocation.hpp" + // A Location describes a concrete machine variable location // (such as integer or floating point register or a stack-held // variable). Used when generating debug-information for nmethods. // // Encoding:
*** 111,115 **** --- 118,124 ---- void write_on(DebugInfoWriteStream* stream); // check static bool legal_offset_in_bytes(int offset_in_bytes); }; + + #endif // SHARE_VM_CODE_LOCATION_HPP