
This commit adds a bunch of passes, the most interesting of which is a pass that merges blocks together, and a pass that places blocks that flow into each other next to each other, and a very simply pass that removes duplicate basic blocks. Note that this does not remove the jump at the end of each block in that pass to avoid scope creep in the passes.
35 lines
689 B
C++
35 lines
689 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Format.h>
|
|
#include <LibJS/Bytecode/BasicBlock.h>
|
|
|
|
namespace JS::Bytecode {
|
|
|
|
class Label {
|
|
public:
|
|
explicit Label(BasicBlock const& block)
|
|
: m_block(&block)
|
|
{
|
|
}
|
|
|
|
auto& block() const { return *m_block; }
|
|
|
|
private:
|
|
BasicBlock const* m_block { nullptr };
|
|
};
|
|
|
|
}
|
|
|
|
template<>
|
|
struct AK::Formatter<JS::Bytecode::Label> : AK::Formatter<FormatString> {
|
|
void format(FormatBuilder& builder, JS::Bytecode::Label const& value)
|
|
{
|
|
return AK::Formatter<FormatString>::format(builder, "@{}", value.block().name());
|
|
}
|
|
};
|