//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\
// PLEASE DO NOT EDIT WITHOUT THE EXPLICIT CONSENT OF THE AUTHOR! \\
//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\

package hlt.language.design.instructions;
/**
 * @version     Last modified on Wed Jun 20 14:29:51 2012 by hak
 * @author      <a href="mailto:hak@acm.org">Hassan A&iuml;t-Kaci</a>
 * @copyright   &copy; <a href="http://www.hassan-ait-kaci.net/">by the author</a>
 */

import hlt.language.design.backend.ObjectMap;
import hlt.language.design.backend.Indexable;
import hlt.language.design.backend.Runtime;
import hlt.language.design.backend.SizeMatchException;

public class ShuffleObjectMap extends Instruction
{
  public ShuffleObjectMap ()
    {
      setName("SHUFFLE_MAP_O");
    }

  public final void execute (Runtime r) throws SizeMatchException
    {
      int[] permutation = (int[])r.popObject();      
      Indexable indexable = (Indexable)r.popObject();
      int size = r.popInt();

      if (indexable.size() != size)
        throw new SizeMatchException("indexable size ("+indexable.size()+
                                     ") does not match array size ("+size+")");

      Object[] array = new Object[size];

      if (permutation == null)
        for (int i=0; i<size; i++)
          array[i] = r.popObject();
      else
        for (int i=0; i<size; i++)
          array[permutation[i]] = r.popObject();

      r.pushObject(new ObjectMap(array,indexable));
      r.incIP();
    }
}
