mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:47:35 +00:00
JSSpecCompiler: Add control flow graph simplification pass
It removes empty `BasicBlock`s with an unconditional jump continuation and then removes unreferenced blocks from the graph.
This commit is contained in:
parent
475ef6965a
commit
12072dbac5
7 changed files with 215 additions and 1 deletions
|
@ -5,6 +5,7 @@ set(SOURCES
|
|||
Compiler/ControlFlowGraph.cpp
|
||||
Compiler/GenericASTPass.cpp
|
||||
Compiler/Passes/CFGBuildingPass.cpp
|
||||
Compiler/Passes/CFGSimplificationPass.cpp
|
||||
Compiler/Passes/FunctionCallCanonicalizationPass.cpp
|
||||
Compiler/Passes/IfBranchMergingPass.cpp
|
||||
Compiler/Passes/ReferenceResolvingPass.cpp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue