forked from jruby/jruby
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add first pass of JIT support for patterns
This implements the following operations: * Integer, to push a native int * AsFixnum, to construct a RubyFixnum from an int * ARRAY_LENGTH runtime helper to retrieve array's length as an int * BIntInstr for branch operations against two ints To support these, the following logic was added to manage int local variables on the JVM stack: * TemporaryIntVariable: similar to the prototype unboxed variables but stored boxed in the Object[] temp array in the interpreter. The JIT knows to use int when dealing with this type of var. * int-based temps used by the pattern logic are switched to TemporaryIntVariable. A few minor utility functions are added to SkinnyMethodAdapter, including the oddly missing icmp_ge.
- Loading branch information
Showing
12 changed files
with
219 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
core/src/main/java/org/jruby/ir/operands/TemporaryIntVariable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
**** BEGIN LICENSE BLOCK ***** | ||
* Version: EPL 2.0/GPL 2.0/LGPL 2.1 | ||
* | ||
* The contents of this file are subject to the Eclipse Public | ||
* License Version 2.0 (the "License"); you may not use this file | ||
* except in compliance with the License. You may obtain a copy of | ||
* the License at http://www.eclipse.org/legal/epl-v20.html | ||
* | ||
* Software distributed under the License is distributed on an "AS | ||
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or | ||
* implied. See the License for the specific language governing | ||
* rights and limitations under the License. | ||
* | ||
* Copyright (C) 2014 The JRuby Team ([email protected]) | ||
* | ||
* Alternatively, the contents of this file may be used under the terms of | ||
* either of the GNU General Public License Version 2 or later (the "GPL"), | ||
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), | ||
* in which case the provisions of the GPL or the LGPL are applicable instead | ||
* of those above. If you wish to allow use of your version of this file only | ||
* under the terms of either the GPL or the LGPL, and not to allow others to | ||
* use your version of this file under the terms of the EPL, indicate your | ||
* decision by deleting the provisions above and replace them with the notice | ||
* and other provisions required by the GPL or the LGPL. If you do not delete | ||
* the provisions above, a recipient may use your version of this file under | ||
* the terms of any one of the EPL, the GPL or the LGPL. | ||
***** END LICENSE BLOCK *****/ | ||
|
||
package org.jruby.ir.operands; | ||
|
||
import org.jruby.ir.IRVisitor; | ||
import org.jruby.ir.persistence.IRReaderDecoder; | ||
import org.jruby.ir.transformations.inlining.SimpleCloneInfo; | ||
|
||
/** | ||
* Represents a temporary variable for an unboxed int operand. | ||
* | ||
* FIXME: this does not mesh with the specialized types like TemporaryFixnum and TemporaryFloat and is added solely to | ||
* support primitive integer operations during pattern matching. | ||
*/ | ||
public class TemporaryIntVariable extends TemporaryLocalVariable { | ||
public static final String PREFIX = "%i_"; | ||
public TemporaryIntVariable(int offset) { | ||
super(offset); | ||
} | ||
|
||
@Override | ||
public TemporaryVariableType getType() { | ||
return TemporaryVariableType.INT; | ||
} | ||
|
||
@Override | ||
public String getPrefix() { | ||
return PREFIX; | ||
} | ||
|
||
@Override | ||
public Variable clone(SimpleCloneInfo ii) { | ||
return this; | ||
} | ||
|
||
@Override | ||
public void visit(IRVisitor visitor) { | ||
visitor.TemporaryIntVariable(this); | ||
} | ||
|
||
public static TemporaryIntVariable decode(IRReaderDecoder d) { | ||
return new TemporaryIntVariable(d.decodeInt()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.