| /* |
| * Copyright (C) 2015-2017 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 "AirTmpWidth.h" |
| |
| #if ENABLE(B3_JIT) |
| |
| #include "AirCode.h" |
| #include "AirInstInlines.h" |
| #include "AirTmpWidthInlines.h" |
| #include <wtf/ListDump.h> |
| |
| namespace JSC { namespace B3 { namespace Air { |
| |
| TmpWidth::TmpWidth() |
| { |
| } |
| |
| TmpWidth::TmpWidth(Code& code) |
| { |
| recompute<GP>(code); |
| recompute<FP>(code); |
| } |
| |
| TmpWidth::~TmpWidth() |
| { |
| } |
| |
| template <Bank bank> |
| void TmpWidth::recompute(Code& code) |
| { |
| // Set this to true to cause this analysis to always return pessimistic results. |
| constexpr bool beCareful = false; |
| constexpr bool verbose = false; |
| |
| if (verbose) { |
| dataLogLn("Code before TmpWidth:"); |
| dataLog(code); |
| } |
| |
| auto& bankWidthsVector = widthsVector(bank); |
| bankWidthsVector.resize(AbsoluteTmpMapper<bank>::absoluteIndex(code.numTmps(bank))); |
| for (unsigned i = 0; i < bankWidthsVector.size(); ++i) |
| bankWidthsVector[i] = Widths(bank); |
| |
| auto assumeTheWorst = [&] (Tmp tmp) { |
| if (bank == Arg(tmp).bank()) { |
| Width conservative = conservativeWidth(bank); |
| addWidths(tmp, { conservative, conservative }); |
| } |
| }; |
| |
| // Assume the worst for registers. |
| RegisterSet::allRegisters().forEach( |
| [&] (Reg reg) { |
| assumeTheWorst(Tmp(reg)); |
| }); |
| |
| if (beCareful) { |
| code.forAllTmps(assumeTheWorst); |
| |
| // We fall through because the fixpoint that follows can only make things even more |
| // conservative. This mode isn't meant to be fast, just safe. |
| } |
| |
| // Now really analyze everything but Move's over Tmp's, but set aside those Move's so we can find |
| // them quickly during the fixpoint below. Note that we can make this analysis stronger by |
| // recognizing more kinds of Move's or anything that has Move-like behavior, though it's probably not |
| // worth it. |
| Vector<Inst*> moves; |
| for (BasicBlock* block : code) { |
| for (Inst& inst : *block) { |
| if (inst.kind.opcode == Move && inst.args[1].isTmp()) { |
| if (Arg(inst.args[1]).bank() != bank) |
| continue; |
| |
| if (inst.args[0].isTmp()) { |
| moves.append(&inst); |
| continue; |
| } |
| if (inst.args[0].isImm() && inst.args[0].value() >= 0) { |
| Tmp tmp = inst.args[1].tmp(); |
| Widths& tmpWidths = widths(tmp); |
| Width maxWidth = Width64; |
| if (inst.args[0].value() <= std::numeric_limits<int8_t>::max()) |
| maxWidth = Width8; |
| else if (inst.args[0].value() <= std::numeric_limits<int16_t>::max()) |
| maxWidth = Width16; |
| else if (inst.args[0].value() <= std::numeric_limits<int32_t>::max()) |
| maxWidth = Width32; |
| |
| tmpWidths.def = std::max(tmpWidths.def, maxWidth); |
| |
| continue; |
| } |
| } |
| inst.forEachTmp( |
| [&] (Tmp& tmp, Arg::Role role, Bank tmpBank, Width width) { |
| if (Arg(tmp).bank() != bank) |
| return; |
| |
| Widths& tmpWidths = widths(tmp); |
| if (Arg::isAnyUse(role)) |
| tmpWidths.use = std::max(tmpWidths.use, width); |
| |
| if (Arg::isZDef(role)) |
| tmpWidths.def = std::max(tmpWidths.def, width); |
| else if (Arg::isAnyDef(role)) |
| tmpWidths.def = conservativeWidth(tmpBank); |
| }); |
| } |
| } |
| |
| // Finally, fixpoint over the Move's. |
| bool changed = true; |
| while (changed) { |
| changed = false; |
| for (Inst* move : moves) { |
| ASSERT(move->kind.opcode == Move); |
| ASSERT(move->args[0].isTmp()); |
| ASSERT(move->args[1].isTmp()); |
| |
| Widths& srcWidths = widths(move->args[0].tmp()); |
| Widths& dstWidths = widths(move->args[1].tmp()); |
| |
| // Legend: |
| // |
| // Move %src, %dst |
| |
| // defWidth(%dst) is a promise about how many high bits are zero. The smaller the width, the |
| // stronger the promise. This Move may weaken that promise if we know that %src is making a |
| // weaker promise. Such forward flow is the only thing that determines defWidth(). |
| if (dstWidths.def < srcWidths.def) { |
| dstWidths.def = srcWidths.def; |
| changed = true; |
| } |
| |
| // srcWidth(%src) is a promise about how many high bits are ignored. The smaller the width, |
| // the stronger the promise. This Move may weaken that promise if we know that %dst is making |
| // a weaker promise. Such backward flow is the only thing that determines srcWidth(). |
| if (srcWidths.use < dstWidths.use) { |
| srcWidths.use = dstWidths.use; |
| changed = true; |
| } |
| } |
| } |
| |
| if (verbose) { |
| dataLogLn("bank: ", bank, ", widthsVector: "); |
| for (unsigned i = 0; i < bankWidthsVector.size(); ++i) |
| dataLogLn("\t", i, " : ", bankWidthsVector[i]); |
| } |
| } |
| |
| void TmpWidth::Widths::dump(PrintStream& out) const |
| { |
| out.print("{use = ", use, ", def = ", def, "}"); |
| } |
| |
| } } } // namespace JSC::B3::Air |
| |
| #endif // ENABLE(B3_JIT) |
| |