src/cpu/zero/vm/shark_globals_zero.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2000, 2007, Oracle and/or its affiliates. All rights reserved. * Copyright 2008, 2009, 2010 Red Hat, Inc. * 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 --- 1,7 ---- /* ! * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright 2008, 2009, 2010 Red Hat, Inc. * 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
*** 21,30 **** --- 21,33 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef CPU_ZERO_VM_SHARK_GLOBALS_ZERO_HPP + #define CPU_ZERO_VM_SHARK_GLOBALS_ZERO_HPP + // Set the default values for platform dependent flags used by the // Shark compiler. See globals.hpp for details of what they do. define_pd_global(bool, BackgroundCompilation, true ); define_pd_global(bool, UseTLAB, true );
*** 58,62 **** --- 61,67 ---- define_pd_global(uintx, PermSize, 12*M ); define_pd_global(uintx, MaxPermSize, 64*M ); define_pd_global(bool, NeverActAsServerClassMachine, true ); define_pd_global(uint64_t, MaxRAM, 1ULL*G); define_pd_global(bool, CICompileOSR, true ); + + #endif // CPU_ZERO_VM_SHARK_GLOBALS_ZERO_HPP