src/share/vm/runtime/signature.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2006, 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_RUNTIME_SIGNATURE_HPP + #define SHARE_VM_RUNTIME_SIGNATURE_HPP + + #include "memory/allocation.hpp" + #include "oops/methodOop.hpp" + #include "utilities/top.hpp" + // SignatureIterators iterate over a Java signature (or parts of it). // (Syntax according to: "The Java Virtual Machine Specification" by // Tim Lindholm & Frank Yellin; section 4.3 Descriptors; p. 89ff.) // // Example: Iterating over ([Lfoo;D)I using
*** 414,418 **** --- 421,427 ---- private: static ssize_t is_valid_type(const char*, ssize_t); static bool invalid_name_char(char); }; + + #endif // SHARE_VM_RUNTIME_SIGNATURE_HPP