/* SQuote.java (c) 2010-2014 Edward Swartz All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html */ package v9t9.tools.forthcomp.words; import ejs.base.utils.Pair; import v9t9.tools.forthcomp.AbortException; import v9t9.tools.forthcomp.HostContext; import v9t9.tools.forthcomp.ISemantics; import v9t9.tools.forthcomp.TargetContext; /** * @author ejs * */ public class SQuote extends BaseWord { /** * */ public SQuote() { setExecutionSemantics(new ISemantics() { @Override public void execute(HostContext hostContext, TargetContext targetContext) throws AbortException { String str = parseString(hostContext); Pair<Integer, Integer> addr = targetContext.writeLengthPrefixedString(str); hostContext.pushData(addr.first + 1); hostContext.pushData(str.length()); } }); setCompilationSemantics(new ISemantics() { @Override public void execute(HostContext hostContext, TargetContext targetContext) throws AbortException { String str = parseString(hostContext); final Pair<Integer, Integer> info = targetContext.buildPushString(hostContext, str); hostContext.build(new BaseStdWord() { @Override public boolean isImmediate() { return false; } @Override public void execute(HostContext hostContext, TargetContext targetContext) throws AbortException { int pc = hostContext.getHostPc(); int addr = ((HostLiteral) hostContext.readHostCell(pc++)).getValue(); int len = ((HostLiteral) hostContext.readHostCell(pc++)).getValue(); hostContext.pushData(addr); hostContext.pushData(len); hostContext.setHostPc(pc); } }); hostContext.build(new HostLiteral(info.first + 1, true)); hostContext.build(new HostLiteral(str.length(), true)); } }); } /* (non-Javadoc) * @see v9t9.forthcomp.IWord#isImmediate() */ public boolean isImmediate() { return true; } }