log graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/node/NodeCodeGenerator.java @ 9781:c15fd053efb6

age author description
Tue, 21 May 2013 19:22:29 +0200 Christian Humer Fixed typo in NodeInfo.Kind.
Tue, 21 May 2013 19:20:53 +0200 Christian Humer Fixed GRAAL-276.
Tue, 21 May 2013 19:20:04 +0200 Christian Humer Added support for the kind field in @NodeInfo for the source code generation.
Fri, 03 May 2013 14:28:32 +0200 Christian Humer Fixed bug in casting execute generation when evaluated parameters for both executed methods were not mapped to a child node.
Sat, 27 Apr 2013 00:49:49 +0200 Christian Humer Fixed a bug in new code generation layout.
Fri, 26 Apr 2013 22:43:23 +0200 Christian Humer Implemented improvements to the generated source code.
Thu, 25 Apr 2013 11:02:50 +0200 Christian Humer Fixed some minor bugs in executeWith supprt.
Wed, 24 Apr 2013 21:50:03 +0200 Christian Humer Implemented @NodeChild(executeWith={...}).
Wed, 24 Apr 2013 18:39:41 +0200 Christian Humer Fixed bugs for execute evaluated generation.
Wed, 24 Apr 2013 17:48:27 +0200 Christian Humer Fixed minor bug in gen constructor generation.
Wed, 24 Apr 2013 17:44:15 +0200 Christian Humer Implemented basic support for assumptions for sourcecode generation.
Tue, 23 Apr 2013 20:15:52 +0200 Thomas Wuerthinger Replace TruffleIntrinsics.deoptimize() calls with CompilerDirectives.transferToInterpreter(). Remove obsolete TruffleIntrinsics class.
Tue, 23 Apr 2013 15:34:06 +0200 Thomas Wuerthinger Truffle API changes for the Frame API. Introduction of Assumptions class.
Mon, 22 Apr 2013 17:09:02 +0200 Christian Humer Checkstyle fixes.
Mon, 22 Apr 2013 16:39:12 +0200 Christian Humer Disabled access using the getter in the generated code to avoid frame escapes in PE.
Mon, 22 Apr 2013 12:52:00 +0200 Christian Humer Fixes several minor issues.
Sat, 20 Apr 2013 12:16:22 +0200 Christian Humer Codegen API changes. Executed child nodes are now defined using @NodeChildren instead of fields.
Tue, 16 Apr 2013 11:03:08 +0200 Christian Humer Fixed evaluated execute generation for short circuit definitions.
Mon, 15 Apr 2013 18:50:19 +0200 Christian Humer Sourcegen can now generate execute methods of signature execute(frame, evaluatedValue).
Mon, 08 Apr 2013 18:17:53 +0200 Christian Humer Changed execute method generation strategy. Limited it for primitive execute methods.
Sat, 06 Apr 2013 16:26:19 +0200 Christian Humer Fixed user generic signature must not match generated generic signature.
Sat, 06 Apr 2013 14:33:39 +0200 Christian Humer Fixed when specializing nodes must always call the full generic case.
Mon, 01 Apr 2013 21:43:20 +0200 Christian Humer Implemented codegen guard definitions can now omit unused parameters.
Mon, 01 Apr 2013 11:52:38 +0200 Christian Humer Refactor to shared template method signature comparison.
Tue, 19 Mar 2013 11:30:58 +0100 Christian Humer Uninitialized cases produced wrong call to throw new UnsuportedOperationException.
Fri, 15 Mar 2013 21:18:33 +0100 Christian Humer Final fields of base node can be optionally passed to builtin specialization method. And a few fixes.
Thu, 14 Mar 2013 13:10:29 +0100 Christian Humer Fixed behaviour of useSpecializations for Generic specializations.
Wed, 13 Mar 2013 20:04:42 +0100 Christian Humer Cleanup.
Wed, 13 Mar 2013 19:58:28 +0100 Christian Humer Refactored codegen error model to make error redirection a lot easier.
Wed, 13 Mar 2013 11:32:43 +0100 Christian Humer Added automatic generation of generic specialization which throws unsupported operation if reached.
Tue, 12 Mar 2013 11:37:32 +0100 Christian Humer Fixes for codegen builtins support.
Wed, 06 Mar 2013 18:32:33 +0100 Christian Humer Implemented support for @NodeClass annotation to support builtins.
Mon, 04 Mar 2013 17:20:26 +0100 Christian Humer Removed @SpecializationThrows from codegen API. Replaced it by a simplier version in @Specialization.
Mon, 04 Mar 2013 15:14:11 +0100 Christian Humer Added new codegen api classes NodeId, NodeClass to codegen along with some refactorings.
Fri, 01 Mar 2013 17:03:57 +0100 Christian Humer Implemented support for executing nodes in @Children fields.
Mon, 25 Feb 2013 17:00:52 +0100 Christian Humer Fixed a visibility bug in NodeFactory generation.
Mon, 25 Feb 2013 14:22:18 +0100 Christian Humer Fixed minor bugs in NodeFactory generation.
Mon, 25 Feb 2013 13:13:02 +0100 Christian Humer Generated factories implement the new NodeFactory interface.
Tue, 19 Feb 2013 17:20:45 +0100 Christian Humer Casting is now done on demand using local variables for explicit guards.
Tue, 19 Feb 2013 14:29:12 +0100 Christian Humer Refactor guard creation methods are not flexible enough to handle two if guards.
Tue, 19 Feb 2013 11:31:23 +0100 Christian Humer Fixed generated generic does not need an else block.
Mon, 18 Feb 2013 19:51:30 +0100 Christian Humer Renamed generated specialize to specializeAndExecute.
Mon, 18 Feb 2013 12:22:00 +0100 Christian Humer Removed unnecessary casts from generated specialized execute methods.
Fri, 15 Feb 2013 19:32:58 +0100 Christian Humer Made the usage of generic types more flexible for short circuits and generic specializations.
Mon, 11 Feb 2013 16:20:52 +0100 Christian Humer Fixed rewrite in generated generic did not invoke guards.
Fri, 08 Feb 2013 16:07:33 +0100 Christian Humer Implemented an option to turn off generated generic generation using specializations in @Generic.
Fri, 08 Feb 2013 15:59:43 +0100 Christian Humer Generated nodes can now handle the case were a non generic execute methods does not throw an UVE.
Thu, 31 Jan 2013 16:21:46 +0100 Christian Humer Cleanup and improved error messages.
Wed, 23 Jan 2013 16:34:57 +0100 Doug Simon applied mx eclipseformat to all Java files
Fri, 18 Jan 2013 13:28:12 +0100 Christian Humer Codegen operation generation is inferred from the node type hierarchy.