< prev index next >

hotspot/src/share/vm/c1/c1_CFGPrinter.hpp

Print this page
rev 10235 : 8067014: LinearScan::is_sorted significantly slows down fastdebug builds' performance
Reviewed-by: vlivanov

*** 1,7 **** /* ! * Copyright (c) 2005, 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. --- 1,7 ---- /* ! * Copyright (c) 2005, 2016, 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.
*** 32,42 **** // This is a utility class used for recording the results of a // compilation for later analysis. class CFGPrinterOutput; ! class IntervalList; class CFGPrinter : public AllStatic { private: static CFGPrinterOutput* _output; public: --- 32,44 ---- // This is a utility class used for recording the results of a // compilation for later analysis. class CFGPrinterOutput; ! class Interval; ! ! typedef GrowableArray<Interval*> IntervalList; class CFGPrinter : public AllStatic { private: static CFGPrinterOutput* _output; public:
< prev index next >