log graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/calc/IntegerConvertNode.java @ 21543:93c50cefb9e8

age author description
Mon, 25 May 2015 23:30:34 +0200 Doug Simon moved GraalInternalError to com.oracle.jvmci.common and renamed it to JVMCIError (JBS:GRAAL-53)
Fri, 20 Feb 2015 22:22:55 +0100 Thomas Wuerthinger Create TYPE fields for LIRInstruction and CompositeValue. Renaming NodeClass#get to NodeClass#create.
Wed, 18 Feb 2015 12:12:26 +0100 Roland Schatz Use typed NodeClass in node constructors.
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 15:43:03 +0100 Thomas Wuerthinger Create static final NodeClass field named TYPE in Node subclasses.
Fri, 13 Feb 2015 21:32:50 +0100 Thomas Wuerthinger Add graph builder folding support for integer conversion nodes.
Mon, 12 Jan 2015 20:39:04 +0100 Doug Simon removed Node factory methods
Thu, 18 Dec 2014 09:17:22 -0800 Tom Rodriguez Pass constant reflection into ConvertNode.convert
Mon, 08 Dec 2014 20:41:28 +0100 Doug Simon use better types to simplify instantiation of Serializable lambdas
Thu, 30 Oct 2014 13:03:33 +0100 Roland Schatz Introduce new Constant interface for use in high-level graph.
Thu, 30 Oct 2014 12:21:07 +0100 Roland Schatz Rename Constant to JavaConstant.
Mon, 20 Oct 2014 16:26:05 +0200 Roland Schatz Store explicit input bit width in IntegerConvertNode.
Mon, 13 Oct 2014 16:50:01 +0200 Roland Schatz Simplify ArithmeticOpTable implementation and make it type safe.
Mon, 13 Oct 2014 15:36:11 +0200 Roland Schatz Don't cache op field in arithmetic nodes.
Wed, 08 Oct 2014 12:18:57 +0200 Roland Schatz Update op fields when inferring stamps for arithmetic nodes.
Mon, 06 Oct 2014 11:51:32 +0200 Roland Schatz Use ArithmeticOpTable for primitive convert operations.
Fri, 03 Oct 2014 14:19:58 +0200 Doug Simon Backed out of changeset 17322:655f3e6b467b
Fri, 03 Oct 2014 14:19:31 +0200 Doug Simon made all Node data (i.e. non-edge) fields non-final and protected to support generating a copy "constructor" using Unsafe.allocateInstance
Wed, 01 Oct 2014 07:39:47 +0200 Doug Simon moved Node valueNumber and valueEquals logic (optionally) to generated nodes
Fri, 19 Sep 2014 11:00:46 +0200 Roland Schatz Move bit manipulation methods to CodeUtil class.
Fri, 22 Aug 2014 15:56:51 +0200 Doug Simon switched to using new NodeFieldIterator and NodeFieldIterable for traversing Node inputs and successors
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
Fri, 15 Aug 2014 11:34:38 +0200 Doug Simon moved NodeInfo and friends into separate com.oracle.graal.nodeinfo project so that annotation processor can be applied to the base Node class
Wed, 13 Aug 2014 18:25:45 +0200 Doug Simon added @NodeInfo annotations to all Node classes
Thu, 26 Jun 2014 16:27:35 +0200 Lukas Stadler refactor more Canonicalizable implementations to not add new nodes to the graph
Wed, 25 Jun 2014 16:35:17 +0200 Lukas Stadler implement Canonicalizable.Unary in the UnaryNode hierarchy
Mon, 23 Jun 2014 14:11:54 +0200 Lukas Stadler new UnaryNode base class
Mon, 19 May 2014 15:30:57 +0200 Gilles Duboscq ConditionalNode's boolean materialization canonicalization needs to insert a convert
Mon, 28 Apr 2014 12:11:20 -0700 Tom Rodriguez delete memory peephole machinery
Tue, 22 Apr 2014 11:51:34 +0200 Josef Eisl Move Stamps to graal.compiler.common.
Thu, 17 Apr 2014 17:28:20 +0200 Josef Eisl Move LIRTypeTool and Stamp to graal.compiler.common.
Tue, 15 Apr 2014 19:08:29 +0200 Roland Schatz Remove unsigned flag from IntegerStamp.
Thu, 20 Mar 2014 15:57:03 -0700 Tom Rodriguez initial support for memory arithmetic on x86
Mon, 10 Mar 2014 13:32:06 +0100 Roland Schatz Don't narrow NarrowableArithmetic by default.
Wed, 26 Feb 2014 15:56:03 +0100 Roland Schatz Reduce bit width of integer operations where possible.
Fri, 21 Feb 2014 11:53:48 +0100 Roland Schatz Split convert node into separate nodes for different conversions.