src/share/vm/code/relocInfo.cpp

changeset 2314
f95d63e2154a
parent 2117
0878d7bae69f
child 2344
ac637b7220d1
     1.1 --- a/src/share/vm/code/relocInfo.cpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/code/relocInfo.cpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -22,8 +22,25 @@
     1.4   *
     1.5   */
     1.6  
     1.7 -# include "incls/_precompiled.incl"
     1.8 -# include "incls/_relocInfo.cpp.incl"
     1.9 +#include "precompiled.hpp"
    1.10 +#include "code/compiledIC.hpp"
    1.11 +#include "code/nmethod.hpp"
    1.12 +#include "code/relocInfo.hpp"
    1.13 +#include "memory/resourceArea.hpp"
    1.14 +#include "runtime/stubCodeGenerator.hpp"
    1.15 +#include "utilities/copy.hpp"
    1.16 +#ifdef TARGET_ARCH_x86
    1.17 +# include "assembler_x86.inline.hpp"
    1.18 +# include "nativeInst_x86.hpp"
    1.19 +#endif
    1.20 +#ifdef TARGET_ARCH_sparc
    1.21 +# include "assembler_sparc.inline.hpp"
    1.22 +# include "nativeInst_sparc.hpp"
    1.23 +#endif
    1.24 +#ifdef TARGET_ARCH_zero
    1.25 +# include "assembler_zero.inline.hpp"
    1.26 +# include "nativeInst_zero.hpp"
    1.27 +#endif
    1.28  
    1.29  
    1.30  const RelocationHolder RelocationHolder::none; // its type is relocInfo::none

mercurial