comparison src/cpu/zero/vm/shark_globals_zero.hpp @ 8035:f64ffbf81af5

8006432: Ratio flags should be unsigned Summary: Flags changed to be of uintx type Reviewed-by: johnc, tamao
author jwilhelm
date Thu, 07 Feb 2013 15:51:25 +0100
parents da91efe96a93
children 738e04fb1232
comparison
equal deleted inserted replaced
8034:bce1ac447f6b 8035:f64ffbf81af5
1 /* 1 /*
2 * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
3 * Copyright 2008, 2009, 2010 Red Hat, Inc. 3 * Copyright 2008, 2009, 2010 Red Hat, Inc.
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * 5 *
6 * This code is free software; you can redistribute it and/or modify it 6 * This code is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 only, as 7 * under the terms of the GNU General Public License version 2 only, as
49 define_pd_global(intx, Tier4BackEdgeThreshold, 100000); 49 define_pd_global(intx, Tier4BackEdgeThreshold, 100000);
50 50
51 define_pd_global(intx, OnStackReplacePercentage, 933 ); 51 define_pd_global(intx, OnStackReplacePercentage, 933 );
52 define_pd_global(intx, FreqInlineSize, 325 ); 52 define_pd_global(intx, FreqInlineSize, 325 );
53 define_pd_global(intx, InlineSmallCode, 1000 ); 53 define_pd_global(intx, InlineSmallCode, 1000 );
54 define_pd_global(intx, NewRatio, 12 ); 54 define_pd_global(uintx, NewRatio, 12 );
55 define_pd_global(intx, NewSizeThreadIncrease, 4*K ); 55 define_pd_global(intx, NewSizeThreadIncrease, 4*K );
56 define_pd_global(intx, InitialCodeCacheSize, 160*K); 56 define_pd_global(intx, InitialCodeCacheSize, 160*K);
57 define_pd_global(intx, ReservedCodeCacheSize, 32*M ); 57 define_pd_global(intx, ReservedCodeCacheSize, 32*M );
58 define_pd_global(bool, ProfileInterpreter, false); 58 define_pd_global(bool, ProfileInterpreter, false);
59 define_pd_global(intx, CodeCacheExpansionSize, 32*K ); 59 define_pd_global(intx, CodeCacheExpansionSize, 32*K );