ladybird/Meta/Lagom/Tools/CodeGenerators/JSSpecCompiler/Compiler/Passes
Timothy Flynn ec492a1a08 Everywhere: Run clang-format
The following command was used to clang-format these files:

    clang-format-18 -i $(find . \
        -not \( -path "./\.*" -prune \) \
        -not \( -path "./Base/*" -prune \) \
        -not \( -path "./Build/*" -prune \) \
        -not \( -path "./Toolchain/*" -prune \) \
        -not \( -path "./Ports/*" -prune \) \
        -type f -name "*.cpp" -o -name "*.mm" -o -name "*.h")

There are a couple of weird cases where clang-format now thinks that a
pointer access in an initializer list, e.g. `m_member(ptr->foo)`, is a
lambda return statement, and it puts spaces around the `->`.
2024-04-24 16:50:01 -04:00
..
CFGBuildingPass.cpp JSSpecCompiler: Use AK::enumerate in CFGBuildingPass::on_entry 2024-03-23 09:02:58 -04:00
CFGBuildingPass.h JSSpecCompiler: Add control flow building pass 2023-12-14 09:06:05 -07:00
CFGSimplificationPass.cpp JSSpecCompiler: Add control flow graph simplification pass 2024-01-04 12:06:56 -07:00
CFGSimplificationPass.h JSSpecCompiler: Add control flow graph simplification pass 2024-01-04 12:06:56 -07:00
DeadCodeEliminationPass.cpp JSSpecCompiler: Add bare-bones DCE pass 2024-01-14 16:05:51 -07:00
DeadCodeEliminationPass.h JSSpecCompiler: Add bare-bones DCE pass 2024-01-14 16:05:51 -07:00
IfBranchMergingPass.cpp Everywhere: Run clang-format 2024-04-24 16:50:01 -04:00
IfBranchMergingPass.h JSSpecCompiler: Provide an adequate command line interface 2023-10-26 15:45:31 -06:00
ReferenceResolvingPass.cpp JSSpecCompiler: Let FunctionDeclaration know its name and category 2024-03-25 14:28:52 -06:00
ReferenceResolvingPass.h JSSpecCompiler: Save references to return value and function arguments 2024-01-14 16:05:51 -07:00
SSABuildingPass.cpp JSSpecCompiler: Let FunctionDeclaration know its name and category 2024-03-25 14:28:52 -06:00
SSABuildingPass.h JSSpecCompiler: Add SSA form building pass 2024-01-12 16:22:22 -07:00