Skip to content

Commit

Permalink
Rewrite each_attr to return a vector.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ms2ger committed Jan 13, 2015
1 parent 27db3f0 commit 756466b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 37 deletions.
8 changes: 3 additions & 5 deletions src/librustc/middle/traits/error_reporting.rs
Expand Up @@ -70,7 +70,7 @@ fn report_on_unimplemented<'a, 'tcx>(infcx: &InferCtxt<'a, 'tcx>,
span: Span) -> Option<String> {
let def_id = trait_ref.def_id;
let mut report = None;
ty::each_attr(infcx.tcx, def_id, |item| {
for item in ty::get_attrs(infcx.tcx, def_id).iter() {
if item.check_name("rustc_on_unimplemented") {
let err_sp = if item.meta().span == DUMMY_SP {
span
Expand Down Expand Up @@ -136,11 +136,9 @@ fn report_on_unimplemented<'a, 'tcx>(infcx: &InferCtxt<'a, 'tcx>,
eg `#[rustc_on_unimplemented = \"foo\"]`",
trait_str).as_slice());
}
false
} else {
true
break;
}
});
}
report
}

Expand Down
40 changes: 11 additions & 29 deletions src/librustc/middle/ty.rs
Expand Up @@ -68,14 +68,15 @@ use util::nodemap::{NodeMap, NodeSet, DefIdMap, DefIdSet};
use util::nodemap::{FnvHashMap};

use arena::TypedArena;
use std::borrow::BorrowFrom;
use std::borrow::{BorrowFrom, Cow};
use std::cell::{Cell, RefCell};
use std::cmp::{self, Ordering};
use std::fmt::{self, Show};
use std::hash::{Hash, Writer, SipHasher, Hasher};
use std::mem;
use std::ops;
use std::rc::Rc;
use std::vec::CowVec;
use collections::enum_set::{EnumSet, CLike};
use std::collections::{HashMap, HashSet};
use syntax::abi;
Expand Down Expand Up @@ -5555,35 +5556,20 @@ pub fn predicates<'tcx>(
vec
}

/// Iterate over attributes of a definition.
// (This should really be an iterator.)
pub fn each_attr<F>(tcx: &ctxt, did: DefId, mut f: F) -> bool where
F: FnMut(&ast::Attribute) -> bool,
{
/// Get the attributes of a definition.
pub fn get_attrs<'tcx>(tcx: &'tcx ctxt, did: DefId)
-> CowVec<'tcx, ast::Attribute> {
if is_local(did) {
let item = tcx.map.expect_item(did.node);
item.attrs.iter().all(|attr| f(attr))
Cow::Borrowed(&item.attrs[])
} else {
info!("getting foreign attrs");
let attrs = csearch::get_item_attrs(&tcx.sess.cstore, did);
let cont = attrs.iter().all(|attr| f(attr));
info!("done");
cont
Cow::Owned(csearch::get_item_attrs(&tcx.sess.cstore, did))
}
}

/// Determine whether an item is annotated with an attribute
pub fn has_attr(tcx: &ctxt, did: DefId, attr: &str) -> bool {
let mut found = false;
each_attr(tcx, did, |item| {
if item.check_name(attr) {
found = true;
false
} else {
true
}
});
found
get_attrs(tcx, did).iter().any(|item| item.check_name(attr))
}

/// Determine whether an item is annotated with `#[repr(packed)]`
Expand All @@ -5600,13 +5586,9 @@ pub fn lookup_simd(tcx: &ctxt, did: DefId) -> bool {
pub fn lookup_repr_hints(tcx: &ctxt, did: DefId) -> Rc<Vec<attr::ReprAttr>> {
memoized(&tcx.repr_hint_cache, did, |did: DefId| {
Rc::new(if did.krate == LOCAL_CRATE {
let mut acc = Vec::new();
ty::each_attr(tcx, did, |meta| {
acc.extend(attr::find_repr_attrs(tcx.sess.diagnostic(),
meta).into_iter());
true
});
acc
get_attrs(tcx, did).iter().flat_map(|meta| {
attr::find_repr_attrs(tcx.sess.diagnostic(), meta).into_iter()
}).collect()
} else {
csearch::get_repr_attrs(&tcx.sess.cstore, did)
})
Expand Down
5 changes: 2 additions & 3 deletions src/librustc_trans/trans/base.rs
Expand Up @@ -352,12 +352,11 @@ pub fn get_extern_const<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>, did: ast::DefId,
// don't do this then linker errors can be generated where the linker
// complains that one object files has a thread local version of the
// symbol and another one doesn't.
ty::each_attr(ccx.tcx(), did, |attr| {
for attr in ty::get_attrs(ccx.tcx(), did).iter() {
if attr.check_name("thread_local") {
llvm::set_thread_local(c, true);
}
true
});
}
ccx.externs().borrow_mut().insert(name.to_string(), c);
return c;
}
Expand Down

7 comments on commit 756466b

@bors
Copy link
Contributor

@bors bors commented on 756466b Jan 13, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from alexcrichton
at Ms2ger@756466b

@bors
Copy link
Contributor

@bors bors commented on 756466b Jan 13, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging Ms2ger/rust/closures = 756466b into auto

@bors
Copy link
Contributor

@bors bors commented on 756466b Jan 13, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

status: {"merge_sha": "c366e433c14c49eee9144e6010a5fc54cbcdd341"}

@bors
Copy link
Contributor

@bors bors commented on 756466b Jan 13, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ms2ger/rust/closures = 756466b merged ok, testing candidate = c366e43

@bors
Copy link
Contributor

@bors bors commented on 756466b Jan 13, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = c366e43

@bors
Copy link
Contributor

@bors bors commented on 756466b Jan 13, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = c366e43

Please sign in to comment.