ArrayPushNode.java

  1. /*
  2.  * Copyright (c) 2013, 2014 Oracle and/or its affiliates. All rights reserved. This
  3.  * code is released under a tri EPL/GPL/LGPL license. You can use it,
  4.  * redistribute it and/or modify it under the terms of the:
  5.  *
  6.  * Eclipse Public License version 1.0
  7.  * GNU General Public License version 2
  8.  * GNU Lesser General Public License version 2.1
  9.  */
  10. package org.jruby.truffle.nodes.core;

  11. import com.oracle.truffle.api.frame.VirtualFrame;
  12. import com.oracle.truffle.api.source.SourceSection;
  13. import org.jruby.truffle.nodes.RubyNode;
  14. import org.jruby.truffle.runtime.RubyContext;
  15. import org.jruby.truffle.runtime.core.RubyArray;

  16. public class ArrayPushNode extends RubyNode {

  17.     @Child protected RubyNode array;
  18.     @Child protected RubyNode pushed;

  19.     public ArrayPushNode(RubyContext context, SourceSection sourceSection, RubyNode array, RubyNode pushed) {
  20.         super(context, sourceSection);
  21.         this.array = array;
  22.         this.pushed = pushed;
  23.     }

  24.     @Override
  25.     public Object execute(VirtualFrame frame) {
  26.         notDesignedForCompilation();

  27.         final Object arrayObject = array.execute(frame);
  28.         assert arrayObject instanceof RubyArray : getSourceSection();

  29.         final RubyArray originalArray = (RubyArray) arrayObject;

  30.         final RubyArray newArray = new RubyArray(getContext().getCoreLibrary().getArrayClass(), originalArray.slowToArray(), originalArray.getSize());
  31.         newArray.slowPush(pushed.execute(frame));
  32.         return newArray;
  33.     }

  34. }