log graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java @ 20901:c4691265275a

age author description
Fri, 10 Apr 2015 13:21:33 +0200 Doug Simon made ReplacementContext and IntrinsicContext top level classes
Thu, 09 Apr 2015 10:26:28 +0200 Doug Simon InvocationPlugins can only be applied for direct invokes
Thu, 09 Apr 2015 09:52:33 +0200 Doug Simon remove GraphBuilderContext.getSnippetReflection()
Tue, 07 Apr 2015 17:32:26 +0200 Doug Simon added MethodSubstitutionPlugin as (eventual) replacement for @MethodSubstitution mechanism
Mon, 06 Apr 2015 13:14:01 +0200 Doug Simon changed InvocationPlugin.execute to be a default method instead of a static method
Wed, 08 Apr 2015 22:38:40 -0700 Christian Wimmer New partial evaluator that works on encoded graphs (instead of on bytecodes)
Sat, 04 Apr 2015 21:43:21 +0200 Doug Simon removed some redundant GraphBuilderContext methods or gave them default implementations
Sat, 04 Apr 2015 19:52:26 +0200 Doug Simon removed GraphBuilderContext.getRootMethod()
Sat, 04 Apr 2015 19:47:24 +0200 Doug Simon removed commented out code
Fri, 03 Apr 2015 17:49:43 +0200 Stefan Anzinger Ignore ResolvedJavaMethod.canBeInlined when parsing Snippets or Replacements
Fri, 27 Mar 2015 13:29:08 +0100 Doug Simon converted all @MacroSubstitution uses to InvocationPlugins
Thu, 26 Mar 2015 17:06:08 +0100 Doug Simon removed uses of StringBuffer, Hashtable and Stack
Tue, 24 Mar 2015 11:56:10 +0100 Doug Simon check whether a StateSplit node being added via GraphBuilderContext has a null stateAfter before setting one
Mon, 23 Mar 2015 20:57:21 +0100 Doug Simon added helper methods to GraphBuilderContext for common operation combinations
Sun, 22 Mar 2015 17:04:03 +0100 Doug Simon made partial intrinsification work (i.e., intrinsics that call the original method to handle slow/uncommon paths)
Fri, 20 Mar 2015 16:05:24 +0100 Doug Simon removed Receiver.isNullConstant() since InvocationPlugins will never be applied if the receiver is the null constant
Thu, 19 Mar 2015 22:31:42 +0100 Doug Simon added null checking for the receiver when inlining or applying an InvocationPlugin during graph parsing
Thu, 19 Mar 2015 12:47:06 +0100 Doug Simon Merge.
Thu, 19 Mar 2015 12:46:06 +0100 Doug Simon added support for checking nodes added to the graph by an Invocation plugin and used this to check that only legal constants are added under ImmutableCode
Wed, 18 Mar 2015 11:46:06 +0100 Doug Simon factored out assertion checks around application of an InvocationPlugin and added a check that all StateSplit nodes added by a plugin have a non-null frame state
Wed, 18 Mar 2015 23:26:23 +0100 Thomas Wuerthinger Fix an issue when the result of canonicalization is appended in the graph builder. Introduce GraphBuilderPhase#recursiveAppend.
Tue, 17 Mar 2015 12:13:24 +0100 Doug Simon Merge.
Sun, 15 Mar 2015 11:48:14 +0100 Doug Simon refactored graph builder plugins to be top level interfaces
Sun, 15 Mar 2015 11:36:54 +0100 Doug Simon refactored GraphBuilderConfiguration (and its component classes) into a separate project
Sat, 14 Mar 2015 22:45:52 +0100 Thomas Wuerthinger Remove dead code in GraphBuilderPhase.
Sat, 14 Mar 2015 19:15:51 +0100 Thomas Wuerthinger Assign the state after when appending the node and not automatically in the main graph builder loop.
Sat, 14 Mar 2015 17:59:33 +0100 Thomas Wuerthinger Small simplification in GraphBuilderPhase.
Sat, 14 Mar 2015 02:04:40 +0100 Thomas Wuerthinger Merge.
Sat, 14 Mar 2015 01:28:20 +0100 Thomas Wuerthinger Create utilities LocationIdentity#isAny, LocationIdentity#isSingle, LocationIdentity#any, LocationIdentity#overlaps.
Fri, 13 Mar 2015 23:27:53 +0100 Doug Simon don't treat Truffle method inlining substitutions as graph builder replacements
Thu, 12 Mar 2015 16:03:40 +0100 Doug Simon disallow intrinsics from calling the original method
Thu, 12 Mar 2015 15:25:43 +0100 Doug Simon fixed bug in managing replacement scope during bytecode parsing and improved API for querying replacement info from graph builder plugins
Thu, 12 Mar 2015 14:11:03 +0100 Doug Simon moved bytecode paring options to AbstractBytecodeParser.Options
Wed, 11 Mar 2015 21:01:10 +0100 Doug Simon workaround for JDK-8056066
Wed, 11 Mar 2015 20:43:12 +0100 Doug Simon use GraphBuilderPlugins for method substitutions, intrinsics and snippets (GRAAL-982)
Tue, 10 Mar 2015 21:59:29 +0100 Doug Simon refactored graph builder plugins into a separate class
Tue, 10 Mar 2015 21:26:02 +0100 Doug Simon Merge.
Thu, 19 Feb 2015 15:40:17 +0100 Doug Simon always inline intrinsics in the graph builder as well as any methods (recursively) called from an instrinsic
Mon, 09 Mar 2015 18:11:19 +0100 Thomas Wuerthinger Fixed an issue with nested loop explosion. Added a unit test to prevent future regressions.
Mon, 09 Mar 2015 14:14:02 +0100 Thomas Wuerthinger Convert API for tryFold from Boolean return value to TriState return value.
Sat, 28 Feb 2015 14:54:59 +0100 Thomas Wuerthinger Add test case and support for nested loops for Truffle bytecode interpreters.
Fri, 27 Feb 2015 22:49:50 +0100 Thomas Wuerthinger Support for loops for Truffle bytecode interpreters.
Fri, 27 Feb 2015 16:01:12 +0100 Thomas Wuerthinger Support for creating merges during partial evaluation of bytecode interpreters.
Fri, 27 Feb 2015 14:06:36 +0100 Thomas Wuerthinger Add merge boolean property to ExplodeLoop annotation to indicate that backward branches should be merged if possible.
Fri, 27 Feb 2015 13:54:30 +0100 Thomas Wuerthinger New bytecode interpreter partial evaluation test including an IFZERO bytecode. Make graph builder loop explosion support multiple loop back edges from one peeling iteration.
Tue, 24 Feb 2015 20:23:42 +0100 Thomas Wuerthinger Fix construction of unwind BEFORE_EXCEPTION_BCI frame states when inlining in the graph builder.
Tue, 24 Feb 2015 14:09:40 +0100 Thomas Wuerthinger Remove redundant begin nodes after graph building.
Tue, 24 Feb 2015 13:23:52 +0100 Thomas Wuerthinger Add option DumpDuringGraphBuilding and default to false.
Sun, 22 Feb 2015 15:37:46 +0100 Thomas Wuerthinger Small clean up for graph building.
Sun, 22 Feb 2015 15:19:54 +0100 Thomas Wuerthinger Reduce casting in AbstractBytecodeParser. Consolidate asserts in HIRFrameStateBuilder.
Sun, 22 Feb 2015 14:41:35 +0100 Thomas Wuerthinger Clean up and restructurings in GraphBuilderPhase#genIf.
Sun, 22 Feb 2015 14:30:27 +0100 Thomas Wuerthinger Reuse HIRFrameStateBuilder for false branch of if.
Sun, 22 Feb 2015 14:27:36 +0100 Thomas Wuerthinger Improve IfNode construction in the graph builder. Start reusing previous frame states in createTarget.
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.