comparison src/share/vm/runtime/arguments.cpp @ 1251:576e77447e3c

6923002: assert(false,"this call site should not be polymorphic") Summary: Clear the total count when a receiver information is cleared. Reviewed-by: never, jrose
author kvn
date Sun, 07 Feb 2010 12:15:06 -0800
parents 99af867dfa05
children 7b4415a18c8a
comparison
equal deleted inserted replaced
1250:3f5b7efb9642 1251:576e77447e3c
1 /* 1 /*
2 * Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved. 2 * Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
2498 FLAG_SET_DEFAULT(UseLargePages, false); 2498 FLAG_SET_DEFAULT(UseLargePages, false);
2499 SOLARIS_ONLY(FLAG_SET_DEFAULT(UseMPSS, false)); 2499 SOLARIS_ONLY(FLAG_SET_DEFAULT(UseMPSS, false));
2500 SOLARIS_ONLY(FLAG_SET_DEFAULT(UseISM, false)); 2500 SOLARIS_ONLY(FLAG_SET_DEFAULT(UseISM, false));
2501 } 2501 }
2502 2502
2503 // Tiered compilation is undefined with C1.
2504 TieredCompilation = false;
2505
2503 #else 2506 #else
2504 if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) { 2507 if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) {
2505 FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1); 2508 FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1);
2506 } 2509 }
2507 // Temporary disable bulk zeroing reduction with G1. See CR 6627983. 2510 // Temporary disable bulk zeroing reduction with G1. See CR 6627983.