log graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/ConvertDeoptimizeToGuardPhase.java @ 19509:caad3adc5fde

age author description
Thu, 19 Feb 2015 21:06:37 +0100 Thomas Wuerthinger Change forward ends to type EndNode and not AbstractEndNode.
Mon, 16 Feb 2015 17:47:43 +0100 Thomas Wuerthinger Add generic parameter to NodeClass. Change Graph#getNodes(Class) to Graph#getNodes(NodeClass).
Wed, 11 Feb 2015 10:13:08 +0100 Doug Simon made Assumptions be part of a StructuredGraph
Wed, 28 Jan 2015 01:04:20 +0100 Thomas Wuerthinger Rename MergeNode to AbstractMergeNode.
Wed, 28 Jan 2015 00:50:31 +0100 Thomas Wuerthinger Rename BeginNode => AbstractBeginNode.
Mon, 12 Jan 2015 20:39:04 +0100 Doug Simon removed Node factory methods
Mon, 24 Nov 2014 12:13:31 +0100 Roland Schatz Use asConstant() instead of asJavaConstant() where possible.
Thu, 30 Oct 2014 12:21:07 +0100 Roland Schatz Rename Constant to JavaConstant.
Wed, 10 Sep 2014 11:44:39 +0200 Doug Simon fixed case of Optionality constants
Mon, 08 Sep 2014 21:23:18 +0200 Doug Simon denote certain applications of DeadCodeEliminationPhase as optional and only run them if -G:-ReduceDCE
Thu, 04 Sep 2014 13:44:45 +0200 Roland Schatz Remove redundant Begin nodes before LoopExit.
Mon, 18 Aug 2014 14:04:21 +0200 Doug Simon added factory method to all Node classes; replaced Node classes instantiation with calls to factory methods; replaced identity tests on Node classes with ' == <node class>.getGenClass()' idiom
Wed, 16 Jul 2014 14:27:48 +0200 Gilles Duboscq ConvertDeoptimizeToGuardPhase: the SimplifierTool can be an instance field
Thu, 10 Jul 2014 17:17:17 +0200 Lukas Stadler assertion in ConvertDeoptimizeToGuardPhase
Fri, 04 Jul 2014 13:47:37 +0200 Gilles Duboscq ConvertDeoptimizeToGuardPhase: remove useless BeginNodes
Wed, 25 Jun 2014 11:20:53 +0200 Lukas Stadler rename of x() to getX(), y() to getY() and object() to getValue()
Fri, 02 May 2014 14:47:09 +0200 Lukas Stadler new GraphUtil.predecessorIterable
Mon, 14 Apr 2014 15:21:27 +0200 Gilles Duboscq Remove AbstractBeginNode, move the framestate from AbstractBeginNode to BeginStateSplitNode.
Mon, 24 Mar 2014 10:45:24 +0100 Lukas Stadler deal with deleted ends in ConvertDeoptimizeToGuardPhase
Mon, 14 Oct 2013 23:30:05 +0200 Thomas Wuerthinger Improve convert deoptimize to guard phase to recognize FixedGuardNode following MergeNode.
Thu, 29 Aug 2013 17:28:20 +0200 Bernhard Urban ConvertDeoptimizeToGuardPhase: small javadoc fix
Sun, 25 Aug 2013 15:18:57 +0200 Gilles Duboscq Add more javadoc to ConvertDeoptimizeToGuardPhase
Thu, 22 Aug 2013 15:22:26 +0200 Gilles Duboscq Add some javadoc for GuardLoweringPhase, ConvertDeoptimizeToGuardPhase and DeoptimizeNode
Fri, 16 Aug 2013 21:40:42 +0200 Thomas Wuerthinger Make sure the created ProxyNode is of PhiType.Guard.
Fri, 16 Aug 2013 20:52:29 +0200 Thomas Wuerthinger Fix in ConvertDeoptimizeToGuardPhase for the case where we need to insert a ProxyNode.
Wed, 14 Aug 2013 17:02:45 +0200 Thomas Wuerthinger Fix forward propagation of guarded nodes in ConvertDeoptimizeToGuardPhase.
Mon, 29 Apr 2013 00:25:09 +0200 Thomas Wuerthinger Rename BeginNode => AbstractBeginNode and make abstract. Introduce concrete subclass BeginNode.
Sun, 28 Apr 2013 23:59:14 +0200 Thomas Wuerthinger Rename EndNode => AbstractEndNode and make abstract class. Introduce concrete EndNode subclass.
Sat, 27 Apr 2013 01:28:21 +0200 Thomas Wuerthinger Remove unused import.
Sat, 27 Apr 2013 01:09:57 +0200 Thomas Wuerthinger Allow FixedGuard usages for InstanceOf nodes.
Thu, 21 Mar 2013 18:45:58 +0100 Gilles Duboscq Fuse the ExceptionObject its DispatchBegin into a single node since it has to be atomic while gurads are floating
Wed, 20 Mar 2013 00:06:09 +0100 Thomas Wuerthinger Speical case ExceptionObjectNode in deopt to guard conversion.
Tue, 19 Mar 2013 23:08:03 +0100 Thomas Wuerthinger Bug fix and additional assertions in deoptimize to guard phase.
Tue, 19 Mar 2013 20:48:28 +0100 Thomas Wuerthinger Fixes a corner case when killing the control flowing into a deoptimize node.
Tue, 19 Mar 2013 18:05:35 +0100 Thomas Wuerthinger Killing cfg path to deoptimization.
Thu, 14 Mar 2013 12:19:01 +0100 Thomas Wuerthinger Fix convert deoptimize to guard phase.
Thu, 14 Mar 2013 01:14:23 +0100 Thomas Wuerthinger Fix import.
Thu, 14 Mar 2013 01:09:32 +0100 Thomas Wuerthinger Fix and enable deopt to guard conversion.
Mon, 11 Feb 2013 15:55:27 +0100 Lukas Stadler separate BooleanNode and ConstantNode hierarchy, rename BooleanNode to LogicNode and LogicNode to BitLogicNode
Fri, 01 Feb 2013 17:32:59 +0100 Lukas Stadler keep track of leafGraphIds only at the StructuredGraph level (see GRAAL-60)
Wed, 23 Jan 2013 16:34:57 +0100 Doug Simon applied mx eclipseformat to all Java files
Sat, 13 Oct 2012 15:54:33 +0200 Doug Simon Merge.
Tue, 09 Oct 2012 13:27:17 +0200 Doug Simon renamed input for IfNode from 'compare' to 'condition'
Wed, 10 Oct 2012 20:29:53 -0700 Christian Wimmer The lowering currently does not support a FixedGuard as the usage of an InstanceOfNode
Sun, 07 Oct 2012 14:27:50 +0200 Doug Simon split phases out of graal.phases project into graal.phases.common project base graal/com.oracle.graal.phases/src/com/oracle/graal/phases/phases/ConvertDeoptimizeToGuardPhase.java@451f3d1bdda5