2013-07-28 09:40:35 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-07-07 19:58:01 -05:00
|
|
|
use llvm;
|
|
|
|
use llvm::{BasicBlockRef};
|
2014-11-15 19:30:33 -06:00
|
|
|
use trans::value::{Users, Value};
|
2013-09-08 10:01:16 -05:00
|
|
|
use std::iter::{Filter, Map};
|
2013-07-28 09:40:35 -05:00
|
|
|
|
2014-03-31 21:01:01 -05:00
|
|
|
pub struct BasicBlock(pub BasicBlockRef);
|
2013-07-28 09:40:35 -05:00
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
pub type Preds<'a> = Map<'a, Value, BasicBlock, Filter<'a, Value, Users>>;
|
2013-07-28 09:40:35 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrapper for LLVM BasicBlockRef
|
|
|
|
*/
|
|
|
|
impl BasicBlock {
|
2013-11-01 20:06:31 -05:00
|
|
|
pub fn get(&self) -> BasicBlockRef {
|
|
|
|
let BasicBlock(v) = *self; v
|
|
|
|
}
|
|
|
|
|
2013-07-28 09:40:35 -05:00
|
|
|
pub fn as_value(self) -> Value {
|
|
|
|
unsafe {
|
2013-11-01 20:06:31 -05:00
|
|
|
Value(llvm::LLVMBasicBlockAsValue(self.get()))
|
2013-07-28 09:40:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-17 23:44:59 -05:00
|
|
|
pub fn pred_iter(self) -> Preds<'static> {
|
2013-07-28 09:40:35 -05:00
|
|
|
self.as_value().user_iter()
|
|
|
|
.filter(|user| user.is_a_terminator_inst())
|
2013-08-10 14:04:40 -05:00
|
|
|
.map(|user| user.get_parent().unwrap())
|
2013-07-28 09:40:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_single_predecessor(self) -> Option<BasicBlock> {
|
|
|
|
let mut iter = self.pred_iter();
|
|
|
|
match (iter.next(), iter.next()) {
|
|
|
|
(Some(first), None) => Some(first),
|
|
|
|
_ => None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|