mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
113 lines
3.7 KiB
C++
113 lines
3.7 KiB
C++
//===--- CFG.h - SIL control-flow graph utilities ---------------*- C++ -*-===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See http://swift.org/LICENSE.txt for license information
|
|
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file provides basic declarations and utilities for working with
|
|
// SIL basic blocks as a control-flow graph.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_SIL_CFG_H
|
|
#define SWIFT_SIL_CFG_H
|
|
|
|
#include "swift/SIL/SILFunction.h"
|
|
#include "llvm/ADT/GraphTraits.h"
|
|
|
|
namespace llvm {
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// GraphTraits for SILBasicBlock
|
|
//===----------------------------------------------------------------------===//
|
|
template <> struct GraphTraits<swift::SILBasicBlock*> {
|
|
typedef swift::SILBasicBlock NodeType;
|
|
typedef NodeType::SuccessorListTy::iterator ChildIteratorType;
|
|
|
|
static NodeType *getEntryNode(NodeType *BB) { return BB; }
|
|
|
|
static ChildIteratorType child_begin(NodeType *N) {
|
|
return N->getSuccessors().begin();
|
|
}
|
|
static ChildIteratorType child_end(NodeType *N) {
|
|
return N->getSuccessors().end();
|
|
}
|
|
};
|
|
|
|
template <> struct GraphTraits<const swift::SILBasicBlock*> {
|
|
typedef const swift::SILBasicBlock NodeType;
|
|
typedef NodeType::ConstSuccessorListTy::iterator ChildIteratorType;
|
|
|
|
static NodeType *getEntryNode(NodeType *BB) { return BB; }
|
|
|
|
static ChildIteratorType child_begin(NodeType *N) {
|
|
return N->getSuccessors().begin();
|
|
}
|
|
static ChildIteratorType child_end(NodeType *N) {
|
|
return N->getSuccessors().end();
|
|
}
|
|
};
|
|
|
|
template <> struct GraphTraits<Inverse<swift::SILBasicBlock*> > {
|
|
typedef swift::SILBasicBlock NodeType;
|
|
typedef NodeType::pred_iterator ChildIteratorType;
|
|
|
|
static NodeType *getEntryNode(Inverse<swift::SILBasicBlock *> G) {
|
|
return G.Graph;
|
|
}
|
|
static inline ChildIteratorType child_begin(NodeType *N) {
|
|
return N->pred_begin();
|
|
}
|
|
static inline ChildIteratorType child_end(NodeType *N) {
|
|
return N->pred_end();
|
|
}
|
|
};
|
|
|
|
template <> struct GraphTraits<Inverse<const swift::SILBasicBlock*> > {
|
|
typedef const swift::SILBasicBlock NodeType;
|
|
typedef NodeType::pred_iterator ChildIteratorType;
|
|
static NodeType *getEntryNode(Inverse<const swift::SILBasicBlock *> G) {
|
|
return G.Graph;
|
|
}
|
|
static inline ChildIteratorType child_begin(NodeType *N) {
|
|
return N->pred_begin();
|
|
}
|
|
static inline ChildIteratorType child_end(NodeType *N) {
|
|
return N->pred_end();
|
|
}
|
|
};
|
|
|
|
template <> struct GraphTraits<swift::SILFunction*>
|
|
: public GraphTraits<swift::SILBasicBlock*> {
|
|
typedef swift::SILFunction *GraphType;
|
|
|
|
static NodeType *getEntryNode(GraphType F) { return &F->front(); }
|
|
|
|
typedef swift::SILFunction::iterator nodes_iterator;
|
|
static nodes_iterator nodes_begin(GraphType F) { return F->begin(); }
|
|
static nodes_iterator nodes_end(GraphType F) { return F->end(); }
|
|
static unsigned size(GraphType F) { return F->size(); }
|
|
};
|
|
template <> struct GraphTraits<Inverse<swift::SILFunction*> >
|
|
: public GraphTraits<Inverse<swift::SILBasicBlock*> > {
|
|
typedef Inverse<swift::SILFunction *> GraphType;
|
|
|
|
static NodeType *getEntryNode(GraphType F) { return &F.Graph->front(); }
|
|
|
|
typedef swift::SILFunction::iterator nodes_iterator;
|
|
static nodes_iterator nodes_begin(GraphType F) { return F.Graph->begin(); }
|
|
static nodes_iterator nodes_end(GraphType F) { return F.Graph->end(); }
|
|
static unsigned size(GraphType F) { return F.Graph->size(); }
|
|
};
|
|
|
|
} // end llvm namespace
|
|
|
|
#endif
|
|
|