< prev index next >

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

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

*** 1,7 **** /* ! * Copyright (c) 2005, 2012, 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.
*** 40,51 **** class LIRGenerator; class LinearScan; class MoveResolver; class Range; ! define_array(IntervalArray, Interval*) ! define_stack(IntervalList, IntervalArray) define_array(IntervalsArray, IntervalList*) define_stack(IntervalsList, IntervalsArray) define_array(OopMapArray, OopMap*) --- 40,51 ---- class LIRGenerator; class LinearScan; class MoveResolver; class Range; ! typedef GrowableArray<Interval*> IntervalArray; ! typedef GrowableArray<Interval*> IntervalList; define_array(IntervalsArray, IntervalList*) define_stack(IntervalsList, IntervalsArray) define_array(OopMapArray, OopMap*)
< prev index next >