log graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java @ 19521:9c4168877444

age author description
Fri, 20 Feb 2015 13:58:56 +0100 Thomas Wuerthinger Create CompilerAsserts tests. Add graph builder context on bailout. Consolidate CompilerAsserts Truffle API class.
Thu, 19 Feb 2015 23:56:04 +0100 Thomas Wuerthinger Replace abstract type usage in graph builder with concrete type usage.
Thu, 19 Feb 2015 23:40:08 +0100 Thomas Wuerthinger Added flag FailedLoopExplosionIsFatal. Added support for graph builder canonicalization of integer switches.
Thu, 19 Feb 2015 21:06:37 +0100 Thomas Wuerthinger Change forward ends to type EndNode and not AbstractEndNode.
Thu, 19 Feb 2015 11:16:19 +0100 Doug Simon disable (asserting) type checks in the FrameStateBuilder when parsing a replacement
Wed, 18 Feb 2015 19:39:22 +0100 Thomas Wuerthinger Refactorings / clean ups in the graph builder.
Wed, 18 Feb 2015 18:48:36 +0100 Thomas Wuerthinger Move mutable parts of BciBlock to BytecodeParser.
Wed, 18 Feb 2015 18:36:11 +0100 Thomas Wuerthinger Reduce number of fields in BytecodeParser.
Wed, 18 Feb 2015 18:23:05 +0100 Thomas Wuerthinger Create helper methods in graph builder to support pending refactoring.
Wed, 18 Feb 2015 18:10:42 +0100 Thomas Wuerthinger Allocate unwind and return block in bci block mapping instead of the graph builder and give them proper ids.
Wed, 18 Feb 2015 17:59:18 +0100 Thomas Wuerthinger Simplify return block and unwind block creation in the graph builder.
Wed, 18 Feb 2015 17:52:22 +0100 Thomas Wuerthinger Split bci block mapping and local liveness analysis. Clean up bci block mapping. Always sort loop blocks to be consecutive.
Wed, 18 Feb 2015 00:09:24 +0100 Doug Simon Merge.
Tue, 17 Feb 2015 15:32:54 +0100 Doug Simon only need to null check invocations handled by a plugin if the receiver kind is Object
Tue, 17 Feb 2015 23:31:15 +0100 Thomas Wuerthinger Undo previous change on probability cut-off for inlining. Perform experiment later.
Tue, 17 Feb 2015 20:37:45 +0100 Thomas Wuerthinger Correctly create IsCompilationConstantNode in FastPE mode.
Tue, 17 Feb 2015 01:50:08 +0100 Thomas Wuerthinger Fix graph dumping in the graph builder.
Tue, 17 Feb 2015 01:16:35 +0100 Thomas Wuerthinger Merge and merge fixes.
Tue, 17 Feb 2015 00:22:26 +0100 Thomas Wuerthinger Disable use of profiling information during partial evaluation.
Mon, 16 Feb 2015 23:21:37 +0100 Thomas Wuerthinger Introduce option TruffleUseFrameWithoutBoxing, default to true.
Mon, 16 Feb 2015 21:45:12 +0100 Doug Simon Merge.
Mon, 16 Feb 2015 21:10:14 +0100 Doug Simon completed integration of AnnotatedInvocationPlugin
Mon, 16 Feb 2015 20:53:21 +0100 Doug Simon fixed equality test to use .equals() instead of ==
Mon, 16 Feb 2015 15:11:06 +0100 Doug Simon rename: tryUsingInvocationPlugin -> tryInvocationPlugin
Mon, 16 Feb 2015 14:32:53 +0100 Doug Simon moved use of Replacements in GraphBuilderPhase.Instance into InlineInvokePlugins
Mon, 16 Feb 2015 14:15:52 +0100 Doug Simon added BytecodeParser.parsingReplacement field to distinguish parsing method replacements (or snippets) from normal method parsing
Mon, 16 Feb 2015 17:47:43 +0100 Thomas Wuerthinger Add generic parameter to NodeClass. Change Graph#getNodes(Class) to Graph#getNodes(NodeClass).
Mon, 16 Feb 2015 11:57:43 +0100 Doug Simon renamed GraphBuilderPlugins to InvocationPlugins and consolidated it into GraphBuilderConfiguration; moved declaration of GraphBuilderPlugin sub-interfaces into GraphBuilderPlugin
Sun, 15 Feb 2015 20:46:06 +0100 Thomas Wuerthinger Enable bytecode instruction level tracing only when assertions are enabled.
Sun, 15 Feb 2015 16:44:52 +0100 Thomas Wuerthinger Do not inline into methods that need a Graal replacement in the new partial evaluator.
Sun, 15 Feb 2015 16:00:58 +0100 Thomas Wuerthinger Avoid diamond shape for methods that return a condition.
Sun, 15 Feb 2015 15:28:26 +0100 Thomas Wuerthinger Parse time constant folding for div and float convert.
Sun, 15 Feb 2015 14:33:16 +0100 Thomas Wuerthinger Add graph building time canonicalization for NormalizeCompareNode.
Sat, 14 Feb 2015 19:45:33 +0100 Thomas Wuerthinger Fix inline decisions in fast partial evaluator.
Sat, 14 Feb 2015 15:29:49 +0100 Thomas Wuerthinger Fixes to the graph builder after recent changes.
Sat, 14 Feb 2015 15:19:55 +0100 Thomas Wuerthinger Better graph building time canonicalizations for logical negation and conditional node.
Sat, 14 Feb 2015 14:49:01 +0100 Thomas Wuerthinger Short cut simple int constant materialization diamonds in the graph builder.
Sat, 14 Feb 2015 13:45:12 +0100 Thomas Wuerthinger More constant folding during parsing for arithmetic nodes.
Sat, 14 Feb 2015 00:56:18 +0100 Thomas Wuerthinger Fix an issue that could lead to scheduling problems of box nodes after recent graph builder changes.
Fri, 13 Feb 2015 23:35:38 +0100 Thomas Wuerthinger Further reduction of begin node creation when inlining during parsing.
Fri, 13 Feb 2015 22:50:55 +0100 Thomas Wuerthinger Prototype avoiding the creation of begin nodes for target blocks with single predecessor.
Fri, 13 Feb 2015 22:03:34 +0100 Thomas Wuerthinger Avoid creating the begin block for single predecessor returns when inlining during graph building.
Fri, 13 Feb 2015 21:32:50 +0100 Thomas Wuerthinger Add graph builder folding support for integer conversion nodes.
Fri, 13 Feb 2015 19:39:03 +0100 Thomas Wuerthinger Register correct graph builder plugins when testing partial evaluation.
Fri, 13 Feb 2015 18:24:23 +0100 Thomas Wuerthinger Prototype Truffle inlining when FastPE is enabled.
Fri, 13 Feb 2015 10:01:05 +0100 Doug Simon made it explicit that a StructuredGraph only records method dependencies for inlined methods - the root method is not recorded as it is already available in the 'method' field
Thu, 12 Feb 2015 22:34:39 +0100 Thomas Wuerthinger Canonicalize CheckCastNode to unique concrete subtype on creation.
Thu, 12 Feb 2015 17:15:19 +0100 Doug Simon record method dependencies if necessary when doing inlining during graph building
Wed, 11 Feb 2015 13:24:39 +0100 Doug Simon merge fixes
Wed, 11 Feb 2015 10:13:08 +0100 Doug Simon made Assumptions be part of a StructuredGraph
Tue, 10 Feb 2015 20:43:48 +0100 Thomas Wuerthinger More Truffle graph builder plugins and parse time canonicalizations.
Tue, 10 Feb 2015 15:10:56 +0100 Thomas Wuerthinger Merge.
Tue, 10 Feb 2015 15:10:46 +0100 Thomas Wuerthinger Extensions and fixes to inline and canonicalize during parsing.
Fri, 06 Feb 2015 18:00:51 +0100 Doug Simon rename: constantReflectionProvider -> constantReflection
Fri, 06 Feb 2015 17:59:24 +0100 Doug Simon added graph builder plugins for FrameWithoutBoxing
Fri, 06 Feb 2015 04:35:28 +0100 Thomas Wuerthinger Perform analysis for locals changed in the loop and avoid creating phis for loop invariant locals.
Fri, 06 Feb 2015 03:25:19 +0100 Thomas Wuerthinger Merge.
Fri, 06 Feb 2015 03:24:50 +0100 Thomas Wuerthinger Initial prototype for loop explosion during graph building.
Thu, 05 Feb 2015 15:19:40 +0100 Doug Simon added utility to GraphBuilderContext for generating a receiver null check from within an InvocationPlugin for a non-static method
Thu, 05 Feb 2015 03:25:21 +0100 Thomas Wuerthinger Create ExplodeLoop plugin prototype. Special sort for blocks from bci block map builder for explode loop methods. Graph builder plugin for customizing static field accesses. New Truffle option TruffleExcludeAssertions default true that excludes assertion code from being partial evaluated in the new partial evaluator.