blob: 269738b3ee5cc18659dae235fed1cf689b6adf31 [file] [log] [blame]
/*
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package org.graalvm.compiler.lir.amd64;
import static jdk.vm.ci.amd64.AMD64.rax;
import static jdk.vm.ci.amd64.AMD64.rcx;
import static jdk.vm.ci.amd64.AMD64.rdx;
import static jdk.vm.ci.code.ValueUtil.asRegister;
import static org.graalvm.compiler.lir.LIRInstruction.OperandFlag.ILLEGAL;
import static org.graalvm.compiler.lir.LIRInstruction.OperandFlag.REG;
import org.graalvm.compiler.asm.amd64.AMD64MacroAssembler;
import org.graalvm.compiler.lir.LIRInstructionClass;
import org.graalvm.compiler.lir.Opcode;
import org.graalvm.compiler.lir.asm.CompilationResultBuilder;
import org.graalvm.compiler.lir.gen.LIRGeneratorTool;
import jdk.vm.ci.amd64.AMD64;
import jdk.vm.ci.amd64.AMD64.CPUFeature;
import jdk.vm.ci.code.Register;
import jdk.vm.ci.code.RegisterValue;
import jdk.vm.ci.meta.Value;
/**
*/
@Opcode("AMD64_STRING_INDEX_OF")
public final class AMD64StringIndexOfOp extends AMD64LIRInstruction {
public static final LIRInstructionClass<AMD64StringIndexOfOp> TYPE = LIRInstructionClass.create(AMD64StringIndexOfOp.class);
@Def({REG}) protected Value resultValue;
@Alive({REG}) protected Value charPtr1Value;
@Alive({REG}) protected Value charPtr2Value;
@Use({REG}) protected RegisterValue cnt1Value;
@Temp({REG}) protected RegisterValue cnt1ValueT;
@Use({REG}) protected RegisterValue cnt2Value;
@Temp({REG}) protected RegisterValue cnt2ValueT;
@Temp({REG}) protected Value temp1;
@Temp({REG, ILLEGAL}) protected Value vectorTemp1;
private final int intCnt2;
private final int vmPageSize;
public AMD64StringIndexOfOp(LIRGeneratorTool tool, Value result, Value charPtr1, Value charPtr2, RegisterValue cnt1, RegisterValue cnt2, RegisterValue temp1, RegisterValue vectorTemp1,
int intCnt2, int vmPageSize) {
super(TYPE);
assert ((AMD64) tool.target().arch).getFeatures().contains(CPUFeature.SSE4_2);
resultValue = result;
charPtr1Value = charPtr1;
charPtr2Value = charPtr2;
/*
* The count values are inputs but are also killed like temporaries so need both Use and
* Temp annotations, which will only work with fixed registers.
*/
cnt1Value = cnt1;
cnt1ValueT = cnt1;
cnt2Value = cnt2;
cnt2ValueT = cnt2;
assert asRegister(cnt1).equals(rdx) && asRegister(cnt2).equals(rax) && asRegister(temp1).equals(rcx) : "fixed register usage required";
this.temp1 = temp1;
this.vectorTemp1 = vectorTemp1;
this.intCnt2 = intCnt2;
this.vmPageSize = vmPageSize;
}
@Override
public void emitCode(CompilationResultBuilder crb, AMD64MacroAssembler masm) {
Register charPtr1 = asRegister(charPtr1Value);
Register charPtr2 = asRegister(charPtr2Value);
Register cnt1 = asRegister(cnt1Value);
Register cnt2 = asRegister(cnt2Value);
Register result = asRegister(resultValue);
Register vec = asRegister(vectorTemp1);
Register tmp = asRegister(temp1);
if (intCnt2 >= 8) {
masm.stringIndexofC8(charPtr1, charPtr2, cnt1, cnt2, intCnt2, result, vec, tmp);
} else {
masm.stringIndexOf(charPtr1, charPtr2, cnt1, cnt2, intCnt2, result, vec, tmp, vmPageSize);
}
}
}