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.
Start moving shape reference into shaped objects
In order to evolve the shape of objects as more instance variables are discovered, we need to be able to access multiple different shaped instances with their own layouts. Previously, only one shape could be associated with a given class, based on a static inspection of all instance variable accesses in the class's hierarchy. In order to keep stale-shaped objects functional, this commit adds a shape reference to all shaped RubyObject subtypes. With this we can allocate a first object using no instance vars (falling back on the default varTable layout) and as instance vars are encountered modify allocation to create wider object shapes. The step here simply adds the shape reference to all shaped objects; evolving that shape and updating the allocator will come in future commits.
- Loading branch information
Showing
3 changed files
with
75 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
***** 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) 2001 Chad Fowler <[email protected]> | ||
* Copyright (C) 2001 Alan Moore <[email protected]> | ||
* Copyright (C) 2001-2002 Benoit Cerrina <[email protected]> | ||
* Copyright (C) 2001-2004 Jan Arne Petersen <[email protected]> | ||
* Copyright (C) 2002-2004 Anders Bengtsson <[email protected]> | ||
* Copyright (C) 2004-2006 Thomas E Enebo <[email protected]> | ||
* Copyright (C) 2004-2005 Charles O Nutter <[email protected]> | ||
* Copyright (C) 2004 Stefan Matthias Aust <[email protected]> | ||
* Copyright (C) 2006 Ola Bini <[email protected]> | ||
* Copyright (C) 2006 Miguel Covarrubias <[email protected]> | ||
* Copyright (C) 2007 MenTaLguY <[email protected]> | ||
* Copyright (C) 2007 William N Dortch <[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; | ||
|
||
import org.jruby.runtime.ivars.VariableTableManager; | ||
|
||
public abstract class RubyObjectShaped extends RubyObject { | ||
public RubyObjectShaped(Ruby runtime, RubyClass metaClass) { | ||
super(runtime, metaClass); | ||
|
||
variableTableManager = metaClass.getVariableTableManager(); | ||
} | ||
|
||
@Override | ||
public VariableTableManager getShape() { | ||
return variableTableManager; | ||
} | ||
|
||
private final VariableTableManager variableTableManager; | ||
} |
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