log

age author description
Tue, 02 Sep 2014 19:01:01 -0700 Stefan Anzinger [SPARC] Checkstyle, blacklist for unittests
Tue, 02 Sep 2014 17:22:16 -0700 Stefan Anzinger [SPARC] Fixing conversions of l2d l2f i2d i2f ... Adding assertions for usage of
Tue, 02 Sep 2014 17:19:53 -0700 Stefan Anzinger Eliminate the recursion over lambda expression as it generates a huge stack which may cause stack overflow earlier as it should be
Tue, 02 Sep 2014 17:18:35 -0700 Stefan Anzinger [SPARC] Saving return value to a "real" double register.
Tue, 02 Sep 2014 17:17:56 -0700 Stefan Anzinger [SPARC] Giving now two scratch registers
Tue, 02 Sep 2014 17:16:26 -0700 Stefan Anzinger [SPARC/AMD64] Splitting up oopmap generation for Intel XMM and SPARC Floatingpoint registers
Tue, 02 Sep 2014 17:08:14 -0700 Stefan Anzinger isDominatedBy made iterative as in huge graphs it may cause stackoverflow (dacapo tomcat tests max depth is about 2.5k recursions)
Tue, 02 Sep 2014 11:49:12 -0700 Stefan Anzinger Eliminating the lambda expression, as in the recursive call it creates unnecessary stack frames which causes StackOverflowErros sooner
Fri, 29 Aug 2014 21:00:14 -0700 Stefan Anzinger [SPARC] Make scratch register usage safe
Fri, 29 Aug 2014 16:05:30 -0700 Stefan Anzinger Merge
Fri, 29 Aug 2014 16:04:46 -0700 Stefan Anzinger [SPARC] Assembler fixes
Thu, 28 Aug 2014 19:24:52 -0700 Stefan Anzinger [SPARC] Fix dacapo sunflow test (Unordered branching is now implemented right)
Tue, 02 Sep 2014 15:44:33 -0700 Christian Wimmer Bugfix: ReadEliminationClosure ignored subclasses of FixedAccessNode that are memory checkpoints
Tue, 02 Sep 2014 22:19:44 +0200 Bernhard Urban cherry-pick: 8041980: (hotspot) sun/jvmstat/monitor/MonitoredVm/CR6672135.java failing on all platforms
Tue, 02 Sep 2014 14:47:10 +0200 Bernhard Urban mx: support different name for jvm.cfg
Tue, 02 Sep 2014 14:46:50 +0200 Bernhard Urban mx: add helper for determine jli location
Tue, 02 Sep 2014 14:46:22 +0200 Bernhard Urban mx library: support platform/architecture specific libraries
Tue, 02 Sep 2014 14:45:51 +0200 Bernhard Urban mx: move get_arch() to mxtool
Tue, 02 Sep 2014 10:30:28 +0200 Doug Simon Merge.
Tue, 02 Sep 2014 10:30:05 +0200 Doug Simon use source field declaration order in generated Node classes
Tue, 02 Sep 2014 09:56:48 +0200 Doug Simon use the right class loader when loading generated PositionFieldOrder class
Tue, 02 Sep 2014 00:44:43 +0200 Doug Simon select generated input and successor iterators if Node.USE_GENERATED_NODES
Mon, 01 Sep 2014 20:08:19 +0200 Christian Humer Truffle: added new infrastructure for graal truffle runtime tests using SL.
Mon, 01 Sep 2014 20:08:18 +0200 Christian Humer SL: added internal APIs to SL for the Graal runtime tests.
Mon, 01 Sep 2014 20:08:18 +0200 Christian Humer Truffle: added Graal runtime API to wait for the completion of a compilation.
Mon, 01 Sep 2014 20:08:18 +0200 Christian Humer SL: added support for guest language stack traces to SLException; added SLAssertionError.
Mon, 01 Sep 2014 20:08:18 +0200 Christian Humer SL: added assertTrue and assertFalse builtins to SL.
Mon, 01 Sep 2014 16:46:59 +0200 Doug Simon improved error reporting by @NodeInfo annotation processor
Fri, 29 Aug 2014 15:21:39 -0700 David Piorkowski Instrumentation: Removed extends SyntaxTagged from Wrapper interface.
Fri, 29 Aug 2014 16:01:23 -0400 bharadwaj Add a getter method to that returns the HotSpot VM symbol string associated via HotSpotVMField annotation. Renamed a similar existing method that returns HotSpot VM symbol string associated via HotSpotVMValue annotation.
Fri, 29 Aug 2014 13:48:04 +0200 Christian Humer Truffle: Revert: fix compilation issue; after a method is compiled (but not yet installed), it still needs to call the already compiled children.
Thu, 28 Aug 2014 17:49:37 -0700 Stefan Anzinger Merge
Thu, 28 Aug 2014 17:15:23 -0700 Stefan Anzinger [SPARC] Findbugs/Checkstyle
Thu, 28 Aug 2014 16:47:43 -0700 Stefan Anzinger [SPARC/AMD64] Fixing handling of floatingpoint register handling
Thu, 28 Aug 2014 15:43:44 -0700 Stefan Anzinger [SPARC] Fixing float register allocation
Thu, 28 Aug 2014 20:55:39 +0200 Doug Simon reverted matcher to use Class keys instead of NodeClass keys
Thu, 28 Aug 2014 18:07:52 +0200 Christian Wirth fix compilation issue; after a method is compiled (but not yet installed), it still needs to call the already compiled children.
Thu, 28 Aug 2014 15:35:29 +0200 Christian Humer Truffle: added support for Runtime#getCallTargets()
Thu, 28 Aug 2014 11:42:02 +0200 Doug Simon added support to get the generated Node class represented by a NodeClass instance
Thu, 28 Aug 2014 08:54:10 +0200 Doug Simon fixed match type test
Wed, 27 Aug 2014 17:59:48 -0700 Michael Van De Vanter Truffle/Source: use a synchronized hash table
Wed, 27 Aug 2014 17:59:17 -0700 Michael Van De Vanter Truffle/Instrumentation: add TODO comment to Visualizer interface
Wed, 27 Aug 2014 22:11:13 +0200 Doug Simon need extra logic when computing Node iterable ids and USE_GENERATED_NODES == true
Wed, 27 Aug 2014 20:12:57 +0200 Doug Simon tweaked comparison of a Node against a node class
Wed, 27 Aug 2014 20:02:06 +0200 Doug Simon Merge.
Wed, 27 Aug 2014 20:01:44 +0200 Doug Simon set default for Node.USE_GENERATED_NODES to true
Wed, 27 Aug 2014 18:59:09 +0200 Doug Simon matcher needs to indirect through NodeClass to work properly in the presence of generated Node classes
Wed, 27 Aug 2014 18:58:15 +0200 Doug Simon replaced 'node.getClass() == <literal>.getGenClass()' idiom with new 'NodeClass.is(Class<? extends Node.class> cls)' mechanism
Wed, 27 Aug 2014 17:01:57 +0200 Doug Simon InvokeNode does not need to implement IterableNodeType
Wed, 27 Aug 2014 17:54:09 +0200 Josef Eisl [SPARC] transform unittest whitelist into a blacklist.
Wed, 27 Aug 2014 17:43:48 +0200 Josef Eisl mx: add unittest --blacklist.
Wed, 27 Aug 2014 16:15:38 +0200 Josef Eisl [SPARC] updated unittest whitelist.
Wed, 27 Aug 2014 15:37:18 +0200 Josef Eisl [SPARC] initial unittest whitelist (all tests enabled).
Wed, 27 Aug 2014 15:36:16 +0200 Josef Eisl mx: skip downloading hsdis if not available.
Wed, 27 Aug 2014 15:54:00 +0200 Christian Humer Truffle-DSL: fixed JDT element comparator violated transitivity.
Wed, 27 Aug 2014 14:14:18 +0200 Doug Simon relaxed access control from package to protected for elements that need to be accessed in generated subclasses in disjoint packages
Wed, 27 Aug 2014 14:09:13 +0200 Doug Simon augment error message with location of problematic element if annotation processing environment might not be able to show the source location of the message
Wed, 27 Aug 2014 12:58:44 +0200 Michael Haupt copyright fix
Wed, 27 Aug 2014 12:51:44 +0200 Michael Haupt merge
Wed, 27 Aug 2014 11:56:35 +0200 Michael Haupt extract TypedNodeIterator to separate file and rename (workaround for javac bug)
Wed, 27 Aug 2014 11:35:59 +0200 Christian Humer Truffle: cleanup to the LoopNode API.
Wed, 27 Aug 2014 11:35:59 +0200 Christian Humer Truffle-DSL: fixed generic type earsure for types in the type system.
Wed, 27 Aug 2014 11:35:59 +0200 Christian Humer Truffle-DSL: added test for source sections in @CreateCast methods.
Wed, 27 Aug 2014 09:14:19 +0200 Matthias Grimmer NFI: adopt JavaDoc
Wed, 27 Aug 2014 09:13:37 +0200 Matthias Grimmer NFI: adopt unittests to new NFI behaviour; add new unittest
Wed, 27 Aug 2014 09:13:00 +0200 Matthias Grimmer NFI: fix FunctionHandle resolving
Tue, 26 Aug 2014 20:02:42 -0700 Michael Van De Vanter Truffle/Instrumentation: rename misleading field name in ProbeImpl
Tue, 26 Aug 2014 19:57:25 -0700 Michael Van De Vanter Merge with e01b0b9a5f886f8810ba09668632acd675cccf76
Tue, 26 Aug 2014 13:54:53 -0700 Michael Van De Vanter Truffle/Instrumentation: some Javadoc revistions; minor code cleanups; remove one redundant operation; add tracing to the LineLocation maps.
Tue, 26 Aug 2014 18:22:31 -0700 David Piorkowski SL/Instrumentation: Fixing SLContext to use SLInstrumenter
Tue, 26 Aug 2014 15:48:37 -0700 David Piorkowski Merged.
Tue, 26 Aug 2014 11:00:30 -0700 David Piorkowski Instrumentation: removed ExecutionContext parameter from probe method in Instrumentable
Tue, 26 Aug 2014 23:44:31 +0200 Doug Simon relaxed access control from package to protected for elements that need to be accessed in generated subclasses in disjoint packages
Tue, 26 Aug 2014 23:40:08 +0200 Doug Simon missing factory method code assist includes USE_GENERATED_NODES logic
Tue, 26 Aug 2014 09:35:08 -0700 David Piorkowski Merged.
Mon, 25 Aug 2014 11:44:45 -0700 David Piorkowski SL/Instrumentation: Removing SLNodeProber. No longer needed after adding Instrumentable interface
Tue, 26 Aug 2014 16:55:47 +0200 Josef Eisl ConstantLoadOptimization: minor cleanups.
Mon, 25 Aug 2014 17:23:14 +0200 Josef Eisl Add ConstantLoadOptimization.
Mon, 25 Aug 2014 17:18:36 +0200 Josef Eisl Introduce DominatorOptimizationProblem.
Mon, 25 Aug 2014 19:11:01 +0200 Josef Eisl CFGPrinter: do not print empty HIR cfgs.
Tue, 26 Aug 2014 16:16:26 +0200 Doug Simon removed repeated conditional test detected by findbugs
Tue, 26 Aug 2014 15:57:08 +0200 Doug Simon more refactorings to workaround javac symbol issue (JDK-7101822)
Tue, 26 Aug 2014 15:56:46 +0200 Doug Simon mx: do not clean up temp files from the build command if -v is specified
Tue, 26 Aug 2014 15:55:59 +0200 Doug Simon added jtt tests for float and double div-by-zero
Tue, 26 Aug 2014 15:06:43 +0200 Gilles Duboscq mx: Make java file list order deterministic
Tue, 26 Aug 2014 10:46:48 +0200 Gilles Duboscq mx: Make order of projects() deterministic
Mon, 25 Aug 2014 21:15:59 -0700 Stefan Anzinger Merge
Mon, 25 Aug 2014 14:42:42 -0700 Stefan Anzinger [SPARC] Fix findbugs/checkstyle warnings
Mon, 25 Aug 2014 11:32:04 -0700 Stefan Anzinger Fixing relock on interpreter when entering synchronized methods.
Mon, 25 Aug 2014 10:41:56 -0700 Stefan Anzinger [SPARC] Implement UnsafeArrayCopy for aligned memory access
Mon, 25 Aug 2014 10:35:40 -0700 Stefan Anzinger MonitorTest should not exceed 32 processes, as it would require too much code cache (Makes problems on machines with 200 > threads)
Mon, 25 Aug 2014 10:30:03 -0700 Stefan Anzinger [SPARC] Fix incorrect implementation of IBSR
Mon, 25 Aug 2014 10:29:15 -0700 Stefan Anzinger [SPARC] fix incorrect implementation of tableswitch
Mon, 25 Aug 2014 10:28:44 -0700 Stefan Anzinger [SPARC] Fix loading of constants and add debug messages to assertions
Mon, 25 Aug 2014 10:25:17 -0700 Stefan Anzinger [SPARC] implement multiplication of two single float into one double float
Mon, 25 Aug 2014 10:24:08 -0700 Stefan Anzinger [SPARC] new Unittests for IntegerBits, Switch (with byte, short, char values) and high float register pressure, sign extending short from heap
Mon, 25 Aug 2014 10:21:37 -0700 Stefan Anzinger [SPARC] Fix sign extension, add debug messages to assertions in Assembler, add FSMULD , Entering frame is now possible with > 2k framesize
Tue, 19 Aug 2014 09:21:29 -0700 Stefan Anzinger [SPARC] Exclude AMD64 tests from SPARC testrun, always use tmp register when using StrategySwitch, using registerSaver in EnterUnpackStackFrame, LeaveCurrentStackframe, adding guarantee to load offsets when doing load reg+imm13 when the imm value does not fit in 13 bit, assertions for scratch register usage (tmp/def)
Tue, 12 Aug 2014 08:58:38 -0700 Stefan Anzinger [SPARC] Unwinding get the correct return address when unwinding
Tue, 12 Aug 2014 08:52:53 -0700 Stefan Anzinger [SPARC] add missing delay slot wen jumping to exception handler.
Fri, 08 Aug 2014 09:27:50 -0700 Stefan Anzinger [SPARC] Adding registers f0...f31 to callee saved; fixing allocator test, removing direct acquisition of Unsafe from SPARCHotspotBackend
Fri, 08 Aug 2014 09:24:44 -0700 Stefan Anzinger [SPARC] Fixing branching on fp condition codes, introducing branching on carry set.
Fri, 08 Aug 2014 09:22:51 -0700 Stefan Anzinger [SPARC] new vis3 instruction umulxhi
Fri, 08 Aug 2014 09:14:53 -0700 Stefan Anzinger [SPARC] Implement unsigned arithmethic, fix CAS, unary operations on stack and various other fixes
Mon, 25 Aug 2014 23:22:05 +0200 Doug Simon refactored inner classes to be static top level classes to workaround javac "cannot find symbol" issue
Mon, 25 Aug 2014 23:20:44 +0200 Doug Simon used void timer/metric implementation for conditional timers/metrics if neither -G:Time nor -G:Meter is specified
Mon, 25 Aug 2014 20:59:56 +0200 Christian Humer Truffle-DSL: better support for types with type arguments.
Mon, 25 Aug 2014 16:30:40 +0200 Christian Humer Truffle-DSL: fixed polymorphic to monomorphic transition. It remained polymorphic in some cases.
Mon, 25 Aug 2014 15:56:32 +0200 Christian Humer Truffle-DSL: fixed lost source sections for polymorphic specializations. (GRAAL-851 #resolve)
Mon, 25 Aug 2014 14:43:43 +0200 Doug Simon fixed eclipseformat issue
Mon, 25 Aug 2014 13:45:12 +0200 Doug Simon made use of generated Node classes predicated on value of graal.useGeneratedNodes system property (default is false)
Mon, 25 Aug 2014 12:57:49 +0200 Doug Simon add support for installing distribution jars into jre/lib/ext directory
Sat, 23 Aug 2014 19:31:44 +0200 Christian Humer SL: use new LoopNode API.
Sat, 23 Aug 2014 19:31:40 +0200 Christian Humer Truffle: new experimental LoopNode API.
Sat, 23 Aug 2014 19:31:48 +0200 Christian Humer Truffle-DSL: fixed NPE if TemplateMethod had no return type.
Sat, 23 Aug 2014 19:31:36 +0200 Christian Humer SL: fixed merge problem.
Sat, 23 Aug 2014 19:31:33 +0200 Christian Humer SL: better toString for SL nodes.
Sat, 23 Aug 2014 19:31:29 +0200 Christian Humer Truffle: replaces are now reported to all ReplaceObservers in the node hierarchy.
Sat, 23 Aug 2014 19:31:26 +0200 Christian Humer SL: local variable nodes should use contains to avoid polymorphism.
Sat, 23 Aug 2014 19:31:22 +0200 Christian Humer Truffle: changed return types of condition profile factory methods.