| /* |
| * Copyright (C) 2015 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| #include "B3StackmapSpecial.h" |
| |
| #if ENABLE(B3_JIT) |
| |
| #include "AirCode.h" |
| #include "AirGenerationContext.h" |
| #include "B3ValueInlines.h" |
| |
| namespace JSC { namespace B3 { |
| |
| using namespace Air; |
| |
| StackmapSpecial::StackmapSpecial() |
| { |
| } |
| |
| StackmapSpecial::~StackmapSpecial() |
| { |
| } |
| |
| void StackmapSpecial::reportUsedRegisters(Inst& inst, const RegisterSet& usedRegisters) |
| { |
| Value* value = inst.origin; |
| Stackmap* stackmap = value->stackmap(); |
| |
| // FIXME: If the Inst that uses the StackmapSpecial gets duplicated, then we end up merging used |
| // register sets from multiple places. This currently won't happen since Air doesn't have taildup |
| // or things like that. But maybe eventually it could be a problem. |
| stackmap->m_usedRegisters.merge(usedRegisters); |
| } |
| |
| const RegisterSet& StackmapSpecial::extraClobberedRegs(Inst& inst) |
| { |
| Value* value = inst.origin; |
| Stackmap* stackmap = value->stackmap(); |
| |
| return stackmap->clobbered(); |
| } |
| |
| void StackmapSpecial::forEachArgImpl( |
| unsigned numIgnoredB3Args, unsigned numIgnoredAirArgs, |
| Inst& inst, const ScopedLambda<Inst::EachArgCallback>& callback) |
| { |
| Value* value = inst.origin; |
| |
| // Check that insane things have not happened. |
| ASSERT(inst.args.size() >= numIgnoredAirArgs); |
| ASSERT(value->children().size() >= numIgnoredB3Args); |
| ASSERT(inst.args.size() - numIgnoredAirArgs == value->children().size() - numIgnoredB3Args); |
| |
| for (unsigned i = 0; i < inst.args.size() - numIgnoredB3Args; ++i) { |
| Arg& arg = inst.args[i + numIgnoredB3Args]; |
| Value* child = value->child(i + numIgnoredAirArgs); |
| |
| callback(arg, Arg::Use, Arg::typeForB3Type(child->type())); |
| } |
| } |
| |
| bool StackmapSpecial::isValidImpl( |
| unsigned numIgnoredB3Args, unsigned numIgnoredAirArgs, |
| Inst& inst) |
| { |
| Value* value = inst.origin; |
| |
| // Check that insane things have not happened. |
| ASSERT(inst.args.size() >= numIgnoredAirArgs); |
| ASSERT(value->children().size() >= numIgnoredB3Args); |
| |
| Stackmap* stackmap = value->stackmap(); |
| |
| ASSERT(stackmap); |
| |
| // For the Inst to be valid, it needs to have the right number of arguments. |
| if (inst.args.size() - numIgnoredAirArgs != value->children().size() - numIgnoredB3Args) |
| return false; |
| |
| // Regardless of constraints, stackmaps have some basic requirements for their arguments. For |
| // example, you can't have a non-FP-offset address. This verifies those conditions as well as the |
| // argument types. |
| for (unsigned i = 0; i < inst.args.size() - numIgnoredB3Args; ++i) { |
| Value* child = value->child(i + numIgnoredB3Args); |
| Arg& arg = inst.args[i + numIgnoredAirArgs]; |
| |
| switch (arg.kind()) { |
| case Arg::Tmp: |
| case Arg::Imm: |
| case Arg::Imm64: |
| case Arg::Stack: |
| case Arg::CallArg: |
| break; // OK |
| case Arg::Addr: |
| if (arg.base() != Tmp(GPRInfo::callFrameRegister) |
| && arg.base() != Tmp(MacroAssembler::stackPointerRegister)) |
| return false; |
| break; |
| default: |
| return false; |
| } |
| |
| Arg::Type type = Arg::typeForB3Type(child->type()); |
| |
| if (!arg.isType(type)) |
| return false; |
| } |
| |
| // The number of constraints has to be no greater than the number of B3 children. |
| ASSERT(stackmap->m_reps.size() <= value->children().size()); |
| |
| // Verify any explicitly supplied constraints. |
| for (unsigned i = numIgnoredB3Args; i < stackmap->m_reps.size(); ++i) { |
| ValueRep& rep = stackmap->m_reps[i]; |
| Arg& arg = inst.args[i - numIgnoredB3Args + numIgnoredAirArgs]; |
| |
| switch (rep.kind()) { |
| case ValueRep::Any: |
| // We already verified this above. |
| break; |
| case ValueRep::SomeRegister: |
| if (!arg.isTmp()) |
| return false; |
| break; |
| case ValueRep::Register: |
| if (arg != Tmp(rep.reg())) |
| return false; |
| break; |
| case ValueRep::Stack: |
| // This is not a valid input representation. |
| ASSERT_NOT_REACHED(); |
| break; |
| case ValueRep::StackArgument: |
| if (arg != Arg::callArg(rep.offsetFromSP())) |
| return false; |
| break; |
| case ValueRep::Constant: |
| // This is not a valid input representation. |
| ASSERT_NOT_REACHED(); |
| break; |
| } |
| } |
| |
| return true; |
| } |
| |
| bool StackmapSpecial::admitsStackImpl( |
| unsigned numIgnoredB3Args, unsigned numIgnoredAirArgs, |
| Inst& inst, unsigned argIndex) |
| { |
| Value* value = inst.origin; |
| Stackmap* stackmap = value->stackmap(); |
| |
| unsigned stackmapArgIndex = argIndex - numIgnoredAirArgs + numIgnoredB3Args; |
| |
| if (stackmapArgIndex >= stackmap->m_reps.size()) { |
| // This means that there was no constraint. |
| return true; |
| } |
| |
| // We only admit stack for Any's, since Stack is not a valid input constraint, and StackArgument |
| // translates to a CallArg in Air. |
| if (stackmap->m_reps[stackmapArgIndex].kind() == ValueRep::Any) |
| return true; |
| |
| return false; |
| } |
| |
| void StackmapSpecial::appendRepsImpl( |
| GenerationContext& context, unsigned numIgnoredArgs, Inst& inst, Vector<ValueRep>& result) |
| { |
| for (unsigned i = numIgnoredArgs; i < inst.args.size(); ++i) |
| result.append(repForArg(*context.code, inst.args[i])); |
| } |
| |
| ValueRep StackmapSpecial::repForArg(Code& code, const Arg& arg) |
| { |
| switch (arg.kind()) { |
| case Arg::Tmp: |
| return ValueRep::reg(arg.reg()); |
| break; |
| case Arg::Imm: |
| case Arg::Imm64: |
| return ValueRep::constant(arg.value()); |
| break; |
| case Arg::Addr: |
| if (arg.base() == Tmp(GPRInfo::callFrameRegister)) |
| return ValueRep::stack(arg.offset()); |
| ASSERT(arg.base() == Tmp(MacroAssembler::stackPointerRegister)); |
| return ValueRep::stack(arg.offset() - code.frameSize()); |
| default: |
| ASSERT_NOT_REACHED(); |
| return ValueRep(); |
| } |
| } |
| |
| } } // namespace JSC::B3 |
| |
| #endif // ENABLE(B3_JIT) |