Basic CFG interfaces

This commit is contained in:
Mikhail Glukhikh
2016-08-26 17:31:27 +03:00
committed by Dmitry Petrov
parent 779d4f7f3e
commit db810e55d3
4 changed files with 124 additions and 0 deletions
@@ -0,0 +1,34 @@
/*
* Copyright 2010-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.kotlin.ir2cfg.graph
import org.jetbrains.kotlin.ir.IrElement
interface BasicBlock : CfgNode {
val elements: List<IrElement>
val incoming: BlockConnector?
val outgoing: BlockConnector?
override val predecessors: List<CfgNode>
get() = listOfNotNull(incoming)
override val successors: List<CfgNode>
get() = listOfNotNull(outgoing)
}
@@ -0,0 +1,34 @@
/*
* Copyright 2010-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.kotlin.ir2cfg.graph
import org.jetbrains.kotlin.ir.IrElement
interface BlockConnector : CfgNode {
val previousBlocks: List<BasicBlock>
val element: IrElement
val nextBlocks: List<BasicBlock>
override val predecessors: List<CfgNode>
get() = previousBlocks
override val successors: List<CfgNode>
get() = nextBlocks
}
@@ -0,0 +1,24 @@
/*
* Copyright 2010-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.kotlin.ir2cfg.graph
interface CfgNode {
val predecessors: List<CfgNode>
val successors: List<CfgNode>
}
@@ -0,0 +1,32 @@
/*
* Copyright 2010-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.kotlin.ir2cfg.graph
import org.jetbrains.kotlin.ir.declarations.IrFunction
interface ControlFlowGraph {
val function: IrFunction
// First block is the entry point
val blocks: List<BasicBlock>
val connectors: List<BlockConnector>
val nodes: List<CfgNode>
get() = blocks + connectors
}