2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2011-06-28 17:25:20 -05:00
|
|
|
// Functions dealing with attributes and meta_items
|
|
|
|
|
2013-01-08 21:37:25 -06:00
|
|
|
use core::prelude::*;
|
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
use ast;
|
2012-09-04 13:37:29 -05:00
|
|
|
use ast_util::{spanned, dummy_spanned};
|
2012-12-23 16:41:37 -06:00
|
|
|
use attr;
|
2012-11-15 21:37:29 -06:00
|
|
|
use codemap::BytePos;
|
2012-12-23 16:41:37 -06:00
|
|
|
use diagnostic::span_handler;
|
|
|
|
use parse::comments::{doc_comment_style, strip_doc_comment_decoration};
|
|
|
|
|
|
|
|
use core::cmp;
|
|
|
|
use core::either::Either;
|
|
|
|
use core::either;
|
|
|
|
use core::option;
|
|
|
|
use core::vec;
|
|
|
|
use std::map::HashMap;
|
|
|
|
use std::map;
|
|
|
|
use std;
|
2011-06-28 13:24:24 -05:00
|
|
|
|
2012-04-15 03:07:47 -05:00
|
|
|
// Constructors
|
|
|
|
export mk_name_value_item_str;
|
|
|
|
export mk_name_value_item;
|
|
|
|
export mk_list_item;
|
|
|
|
export mk_word_item;
|
|
|
|
export mk_attr;
|
2012-06-30 05:54:54 -05:00
|
|
|
export mk_sugared_doc_attr;
|
2012-04-15 03:07:47 -05:00
|
|
|
|
|
|
|
// Conversion
|
2011-07-05 19:01:23 -05:00
|
|
|
export attr_meta;
|
2011-06-28 14:53:59 -05:00
|
|
|
export attr_metas;
|
2012-06-30 05:54:54 -05:00
|
|
|
export desugar_doc_attr;
|
2012-04-15 03:07:47 -05:00
|
|
|
|
|
|
|
// Accessors
|
|
|
|
export get_attr_name;
|
|
|
|
export get_meta_item_name;
|
|
|
|
export get_meta_item_value_str;
|
|
|
|
export get_meta_item_list;
|
|
|
|
export get_name_value_str_pair;
|
|
|
|
|
|
|
|
// Searching
|
2011-06-28 13:24:24 -05:00
|
|
|
export find_attrs_by_name;
|
2011-06-28 18:52:11 -05:00
|
|
|
export find_meta_items_by_name;
|
2011-06-28 14:53:59 -05:00
|
|
|
export contains;
|
2011-07-13 20:13:19 -05:00
|
|
|
export contains_name;
|
2012-04-15 03:07:47 -05:00
|
|
|
export attrs_contains_name;
|
|
|
|
export first_attr_value_str_by_name;
|
|
|
|
export last_meta_item_value_str_by_name;
|
|
|
|
export last_meta_item_list_by_name;
|
|
|
|
|
|
|
|
// Higher-level applications
|
2011-06-28 17:46:09 -05:00
|
|
|
export sort_meta_items;
|
2011-06-29 16:17:23 -05:00
|
|
|
export remove_meta_items_by_name;
|
2012-04-15 03:07:47 -05:00
|
|
|
export find_linkage_attrs;
|
|
|
|
export find_linkage_metas;
|
2012-06-26 18:18:37 -05:00
|
|
|
export foreign_abi;
|
2012-04-15 03:07:47 -05:00
|
|
|
export inline_attr;
|
|
|
|
export find_inline_attr;
|
|
|
|
export require_unique_names;
|
2011-06-28 13:24:24 -05:00
|
|
|
|
2012-04-15 03:07:47 -05:00
|
|
|
/* Constructors */
|
|
|
|
|
2013-01-11 17:07:48 -06:00
|
|
|
fn mk_name_value_item_str(name: ~str, value: ~str) ->
|
2012-09-20 20:15:39 -05:00
|
|
|
@ast::meta_item {
|
2012-06-10 02:49:59 -05:00
|
|
|
let value_lit = dummy_spanned(ast::lit_str(@value));
|
2012-08-01 19:30:05 -05:00
|
|
|
return mk_name_value_item(name, value_lit);
|
2012-04-06 00:10:51 -05:00
|
|
|
}
|
|
|
|
|
2012-07-18 18:18:02 -05:00
|
|
|
fn mk_name_value_item(name: ~str, +value: ast::lit)
|
2012-09-20 20:15:39 -05:00
|
|
|
-> @ast::meta_item {
|
|
|
|
return @dummy_spanned(ast::meta_name_value(name, value));
|
2011-06-28 13:24:24 -05:00
|
|
|
}
|
|
|
|
|
2012-09-20 20:15:39 -05:00
|
|
|
fn mk_list_item(name: ~str, +items: ~[@ast::meta_item]) ->
|
|
|
|
@ast::meta_item {
|
|
|
|
return @dummy_spanned(ast::meta_list(name, items));
|
2012-03-02 15:14:10 -06:00
|
|
|
}
|
|
|
|
|
2012-09-20 20:15:39 -05:00
|
|
|
fn mk_word_item(name: ~str) -> @ast::meta_item {
|
|
|
|
return @dummy_spanned(ast::meta_word(name));
|
2012-03-02 12:05:30 -06:00
|
|
|
}
|
|
|
|
|
2012-09-20 20:15:39 -05:00
|
|
|
fn mk_attr(item: @ast::meta_item) -> ast::attribute {
|
2013-01-13 18:51:48 -06:00
|
|
|
dummy_spanned(ast::attribute_ { style: ast::attr_inner,
|
|
|
|
value: *item,
|
|
|
|
is_sugared_doc: false })
|
2011-06-28 13:24:24 -05:00
|
|
|
}
|
|
|
|
|
2012-11-12 21:32:48 -06:00
|
|
|
fn mk_sugared_doc_attr(text: ~str,
|
2012-11-15 21:37:29 -06:00
|
|
|
+lo: BytePos, +hi: BytePos) -> ast::attribute {
|
2012-06-30 05:54:54 -05:00
|
|
|
let lit = spanned(lo, hi, ast::lit_str(@text));
|
2013-01-13 18:51:48 -06:00
|
|
|
let attr = ast::attribute_ {
|
2012-06-30 05:54:54 -05:00
|
|
|
style: doc_comment_style(text),
|
2012-07-18 18:18:02 -05:00
|
|
|
value: spanned(lo, hi, ast::meta_name_value(~"doc", lit)),
|
2012-06-30 05:54:54 -05:00
|
|
|
is_sugared_doc: true
|
|
|
|
};
|
2013-01-13 18:51:48 -06:00
|
|
|
spanned(lo, hi, attr)
|
2012-06-30 05:54:54 -05:00
|
|
|
}
|
2012-04-15 03:07:47 -05:00
|
|
|
|
|
|
|
/* Conversion */
|
|
|
|
|
2012-09-20 20:15:39 -05:00
|
|
|
fn attr_meta(attr: ast::attribute) -> @ast::meta_item { @attr.node.value }
|
2012-04-15 03:07:47 -05:00
|
|
|
|
|
|
|
// Get the meta_items from inside a vector of attributes
|
2012-09-20 20:15:39 -05:00
|
|
|
fn attr_metas(attrs: ~[ast::attribute]) -> ~[@ast::meta_item] {
|
2012-10-18 11:14:11 -05:00
|
|
|
do attrs.map |a| { attr_meta(*a) }
|
2012-01-26 18:23:34 -06:00
|
|
|
}
|
|
|
|
|
2012-09-21 20:43:30 -05:00
|
|
|
fn desugar_doc_attr(attr: &ast::attribute) -> ast::attribute {
|
2012-06-30 05:54:54 -05:00
|
|
|
if attr.node.is_sugared_doc {
|
|
|
|
let comment = get_meta_item_value_str(@attr.node.value).get();
|
2012-07-18 18:18:02 -05:00
|
|
|
let meta = mk_name_value_item_str(~"doc",
|
|
|
|
strip_doc_comment_decoration(comment));
|
2012-08-01 19:30:05 -05:00
|
|
|
return mk_attr(meta);
|
2012-06-30 05:54:54 -05:00
|
|
|
} else {
|
2012-09-21 20:43:30 -05:00
|
|
|
*attr
|
2012-06-30 05:54:54 -05:00
|
|
|
}
|
|
|
|
}
|
2012-04-15 03:07:47 -05:00
|
|
|
|
|
|
|
/* Accessors */
|
|
|
|
|
2012-07-18 18:18:02 -05:00
|
|
|
fn get_attr_name(attr: ast::attribute) -> ~str {
|
2011-06-28 13:24:24 -05:00
|
|
|
get_meta_item_name(@attr.node.value)
|
|
|
|
}
|
|
|
|
|
2012-09-20 20:15:39 -05:00
|
|
|
fn get_meta_item_name(meta: @ast::meta_item) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match meta.node {
|
2012-12-04 12:50:00 -06:00
|
|
|
ast::meta_word(ref n) => (*n),
|
|
|
|
ast::meta_name_value(ref n, _) => (*n),
|
|
|
|
ast::meta_list(ref n, _) => (*n)
|
2011-06-28 13:24:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
|
|
|
* Gets the string value if the meta_item is a meta_name_value variant
|
|
|
|
* containing a string, otherwise none
|
|
|
|
*/
|
2012-09-20 20:15:39 -05:00
|
|
|
fn get_meta_item_value_str(meta: @ast::meta_item) -> Option<~str> {
|
2012-08-06 14:34:08 -05:00
|
|
|
match meta.node {
|
2012-07-18 18:18:02 -05:00
|
|
|
ast::meta_name_value(_, v) => match v.node {
|
2012-08-20 14:23:37 -05:00
|
|
|
ast::lit_str(s) => option::Some(*s),
|
|
|
|
_ => option::None
|
2012-07-18 18:18:02 -05:00
|
|
|
},
|
2012-08-20 14:23:37 -05:00
|
|
|
_ => option::None
|
2011-07-05 19:01:23 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Gets a list of inner meta items from a list meta_item type
|
2012-09-20 20:15:39 -05:00
|
|
|
fn get_meta_item_list(meta: @ast::meta_item) -> Option<~[@ast::meta_item]> {
|
2012-08-06 14:34:08 -05:00
|
|
|
match meta.node {
|
2012-08-20 14:23:37 -05:00
|
|
|
ast::meta_list(_, l) => option::Some(/* FIXME (#2543) */ copy l),
|
|
|
|
_ => option::None
|
2011-10-29 19:35:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
|
|
|
* If the meta item is a nam-value type with a string value then returns
|
|
|
|
* a tuple containing the name and string value, otherwise `none`
|
|
|
|
*/
|
2012-09-20 20:15:39 -05:00
|
|
|
fn get_name_value_str_pair(item: @ast::meta_item) -> Option<(~str, ~str)> {
|
2012-08-06 14:34:08 -05:00
|
|
|
match attr::get_meta_item_value_str(item) {
|
2012-12-04 12:50:00 -06:00
|
|
|
Some(ref value) => {
|
2012-04-15 03:07:47 -05:00
|
|
|
let name = attr::get_meta_item_name(item);
|
2012-12-04 12:50:00 -06:00
|
|
|
Some((name, (*value)))
|
2012-04-15 03:07:47 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
None => None
|
2012-04-15 03:07:47 -05:00
|
|
|
}
|
|
|
|
}
|
2011-06-28 14:53:59 -05:00
|
|
|
|
2012-04-15 03:07:47 -05:00
|
|
|
|
|
|
|
/* Searching */
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Search a list of attributes and return only those with a specific name
|
2013-01-10 01:17:57 -06:00
|
|
|
fn find_attrs_by_name(attrs: &[ast::attribute], name: &str) ->
|
2012-06-29 18:26:56 -05:00
|
|
|
~[ast::attribute] {
|
2013-01-05 21:33:37 -06:00
|
|
|
let filter: &fn(a: &ast::attribute) -> Option<ast::attribute> = |a| {
|
|
|
|
if name == get_attr_name(*a) {
|
|
|
|
option::Some(*a)
|
|
|
|
} else {
|
|
|
|
option::None
|
2012-04-15 03:07:47 -05:00
|
|
|
}
|
2013-01-05 21:33:37 -06:00
|
|
|
};
|
2012-08-01 19:30:05 -05:00
|
|
|
return vec::filter_map(attrs, filter);
|
2012-04-15 03:07:47 -05:00
|
|
|
}
|
|
|
|
|
2012-12-11 14:43:33 -06:00
|
|
|
/// Search a list of meta items and return only those with a specific name
|
2013-01-11 17:07:48 -06:00
|
|
|
fn find_meta_items_by_name(metas: &[@ast::meta_item], name: &str) ->
|
2012-09-20 20:15:39 -05:00
|
|
|
~[@ast::meta_item] {
|
2013-01-11 17:07:48 -06:00
|
|
|
let mut rs = ~[];
|
|
|
|
for metas.each |mi| {
|
|
|
|
if name == get_meta_item_name(*mi) {
|
|
|
|
rs.push(*mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rs
|
2012-04-15 03:07:47 -05:00
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
|
|
|
* Returns true if a list of meta items contains another meta item. The
|
|
|
|
* comparison is performed structurally.
|
|
|
|
*/
|
2012-09-20 20:15:39 -05:00
|
|
|
fn contains(haystack: ~[@ast::meta_item], needle: @ast::meta_item) -> bool {
|
2012-06-30 18:19:07 -05:00
|
|
|
for haystack.each |item| {
|
2012-09-20 20:15:39 -05:00
|
|
|
if eq(*item, needle) { return true; }
|
2012-04-15 03:07:47 -05:00
|
|
|
}
|
2012-08-01 19:30:05 -05:00
|
|
|
return false;
|
2011-06-28 14:53:59 -05:00
|
|
|
}
|
|
|
|
|
2012-09-20 20:15:39 -05:00
|
|
|
fn eq(a: @ast::meta_item, b: @ast::meta_item) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
return match a.node {
|
2012-12-04 12:50:00 -06:00
|
|
|
ast::meta_word(ref na) => match b.node {
|
|
|
|
ast::meta_word(ref nb) => (*na) == (*nb),
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => false
|
2012-08-06 19:14:32 -05:00
|
|
|
},
|
2012-12-04 12:50:00 -06:00
|
|
|
ast::meta_name_value(ref na, va) => match b.node {
|
2012-12-04 23:13:02 -06:00
|
|
|
ast::meta_name_value(ref nb, vb) => {
|
|
|
|
(*na) == (*nb) && va.node == vb.node
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => false
|
2012-08-06 19:14:32 -05:00
|
|
|
},
|
2012-08-24 16:04:38 -05:00
|
|
|
ast::meta_list(*) => {
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
// ~[Fixme-sorting]
|
2011-07-01 14:51:46 -05:00
|
|
|
// FIXME (#607): Needs implementing
|
|
|
|
// This involves probably sorting the list by name and
|
|
|
|
// meta_item variant
|
2012-07-14 00:57:48 -05:00
|
|
|
fail ~"unimplemented meta_item variant"
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-06-28 14:53:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-11 17:07:48 -06:00
|
|
|
fn contains_name(metas: &[@ast::meta_item], name: &str) -> bool {
|
2011-07-27 07:19:39 -05:00
|
|
|
let matches = find_meta_items_by_name(metas, name);
|
2012-08-01 19:30:05 -05:00
|
|
|
return vec::len(matches) > 0u;
|
2011-07-13 20:13:19 -05:00
|
|
|
}
|
|
|
|
|
2013-01-10 01:17:57 -06:00
|
|
|
fn attrs_contains_name(attrs: &[ast::attribute], name: &str) -> bool {
|
2012-04-15 03:07:47 -05:00
|
|
|
vec::is_not_empty(find_attrs_by_name(attrs, name))
|
|
|
|
}
|
|
|
|
|
2012-07-18 18:18:02 -05:00
|
|
|
fn first_attr_value_str_by_name(attrs: ~[ast::attribute], name: ~str)
|
2012-08-20 14:23:37 -05:00
|
|
|
-> Option<~str> {
|
2012-07-18 18:18:02 -05:00
|
|
|
|
2012-04-15 03:07:47 -05:00
|
|
|
let mattrs = find_attrs_by_name(attrs, name);
|
|
|
|
if vec::len(mattrs) > 0u {
|
2012-09-20 20:15:39 -05:00
|
|
|
return get_meta_item_value_str(attr_meta(mattrs[0]));
|
2012-04-15 03:07:47 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
return option::None;
|
2012-04-15 03:07:47 -05:00
|
|
|
}
|
|
|
|
|
2012-09-20 20:15:39 -05:00
|
|
|
fn last_meta_item_by_name(items: ~[@ast::meta_item], name: ~str)
|
|
|
|
-> Option<@ast::meta_item> {
|
2012-07-18 18:18:02 -05:00
|
|
|
|
2012-04-15 03:07:47 -05:00
|
|
|
let items = attr::find_meta_items_by_name(items, name);
|
|
|
|
vec::last_opt(items)
|
|
|
|
}
|
|
|
|
|
2012-09-20 20:15:39 -05:00
|
|
|
fn last_meta_item_value_str_by_name(items: ~[@ast::meta_item], name: ~str)
|
2012-08-20 14:23:37 -05:00
|
|
|
-> Option<~str> {
|
2012-07-18 18:18:02 -05:00
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match last_meta_item_by_name(items, name) {
|
2012-09-20 20:15:39 -05:00
|
|
|
Some(item) => match attr::get_meta_item_value_str(item) {
|
2012-12-04 12:50:00 -06:00
|
|
|
Some(ref value) => Some((*value)),
|
2012-08-20 14:23:37 -05:00
|
|
|
None => None
|
2012-08-06 19:14:32 -05:00
|
|
|
},
|
2012-08-20 14:23:37 -05:00
|
|
|
None => None
|
2012-04-15 03:07:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-20 20:15:39 -05:00
|
|
|
fn last_meta_item_list_by_name(items: ~[@ast::meta_item], name: ~str)
|
|
|
|
-> Option<~[@ast::meta_item]> {
|
2012-07-18 18:18:02 -05:00
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match last_meta_item_by_name(items, name) {
|
2012-09-20 20:15:39 -05:00
|
|
|
Some(item) => attr::get_meta_item_list(item),
|
2012-08-20 14:23:37 -05:00
|
|
|
None => None
|
2012-04-15 03:07:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Higher-level applications */
|
|
|
|
|
2012-06-21 18:44:10 -05:00
|
|
|
// FIXME (#607): This needs to sort by meta_item variant in addition to
|
|
|
|
// the item name (See [Fixme-sorting])
|
2012-09-20 20:15:39 -05:00
|
|
|
fn sort_meta_items(+items: ~[@ast::meta_item]) -> ~[@ast::meta_item] {
|
|
|
|
pure fn lteq(ma: &@ast::meta_item, mb: &@ast::meta_item) -> bool {
|
2012-07-18 18:18:02 -05:00
|
|
|
pure fn key(m: &ast::meta_item) -> ~str {
|
2012-08-06 14:34:08 -05:00
|
|
|
match m.node {
|
2012-12-04 12:50:00 -06:00
|
|
|
ast::meta_word(ref name) => (*name),
|
|
|
|
ast::meta_name_value(ref name, _) => (*name),
|
|
|
|
ast::meta_list(ref name, _) => (*name)
|
2011-06-28 17:46:09 -05:00
|
|
|
}
|
|
|
|
}
|
2012-09-20 20:15:39 -05:00
|
|
|
key(*ma) <= key(*mb)
|
2011-06-28 17:46:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// This is sort of stupid here, converting to a vec of mutables and back
|
2013-01-22 19:22:44 -06:00
|
|
|
let v: ~[mut @ast::meta_item] = vec::cast_to_mut(items);
|
2012-09-27 19:05:13 -05:00
|
|
|
std::sort::quick_sort(v, lteq);
|
2013-01-22 19:22:44 -06:00
|
|
|
vec::cast_from_mut(move v)
|
2011-06-28 17:46:09 -05:00
|
|
|
}
|
|
|
|
|
2012-09-20 20:15:39 -05:00
|
|
|
fn remove_meta_items_by_name(items: ~[@ast::meta_item], name: ~str) ->
|
|
|
|
~[@ast::meta_item] {
|
2011-06-29 16:17:23 -05:00
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return vec::filter_map(items, |item| {
|
2012-09-28 00:20:47 -05:00
|
|
|
if get_meta_item_name(*item) != name {
|
|
|
|
option::Some(/* FIXME (#2543) */ copy *item)
|
2012-06-07 22:12:05 -05:00
|
|
|
} else {
|
2012-08-20 14:23:37 -05:00
|
|
|
option::None
|
2012-06-07 22:12:05 -05:00
|
|
|
}
|
|
|
|
});
|
2011-06-29 16:17:23 -05:00
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
2012-08-22 18:43:23 -05:00
|
|
|
* From a list of crate attributes get only the meta_items that affect crate
|
2012-07-04 16:53:12 -05:00
|
|
|
* linkage
|
|
|
|
*/
|
2013-01-11 17:07:48 -06:00
|
|
|
fn find_linkage_metas(attrs: &[ast::attribute]) -> ~[@ast::meta_item] {
|
2012-08-22 18:43:23 -05:00
|
|
|
do find_attrs_by_name(attrs, ~"link").flat_map |attr| {
|
|
|
|
match attr.node.value.node {
|
|
|
|
ast::meta_list(_, items) => /* FIXME (#2543) */ copy items,
|
|
|
|
_ => ~[]
|
2011-07-05 13:46:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-14 18:54:13 -05:00
|
|
|
fn foreign_abi(attrs: ~[ast::attribute]) -> Either<~str, ast::foreign_abi> {
|
2012-08-06 14:34:08 -05:00
|
|
|
return match attr::first_attr_value_str_by_name(attrs, ~"abi") {
|
2012-08-20 14:23:37 -05:00
|
|
|
option::None => {
|
2012-08-14 18:54:13 -05:00
|
|
|
either::Right(ast::foreign_abi_cdecl)
|
2011-11-20 12:15:40 -06:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
option::Some(~"rust-intrinsic") => {
|
2012-08-14 18:54:13 -05:00
|
|
|
either::Right(ast::foreign_abi_rust_intrinsic)
|
2012-03-23 06:51:20 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
option::Some(~"cdecl") => {
|
2012-08-14 18:54:13 -05:00
|
|
|
either::Right(ast::foreign_abi_cdecl)
|
2011-11-20 12:15:40 -06:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
option::Some(~"stdcall") => {
|
2012-08-14 18:54:13 -05:00
|
|
|
either::Right(ast::foreign_abi_stdcall)
|
2011-11-20 12:15:40 -06:00
|
|
|
}
|
2012-12-04 12:50:00 -06:00
|
|
|
option::Some(ref t) => {
|
|
|
|
either::Left(~"unsupported abi: " + (*t))
|
2011-11-20 12:15:40 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-04-15 03:07:47 -05:00
|
|
|
enum inline_attr {
|
|
|
|
ia_none,
|
|
|
|
ia_hint,
|
2012-07-25 19:29:34 -05:00
|
|
|
ia_always,
|
|
|
|
ia_never,
|
2012-01-16 23:12:08 -06:00
|
|
|
}
|
|
|
|
|
2012-09-19 20:00:26 -05:00
|
|
|
impl inline_attr : cmp::Eq {
|
2012-11-14 20:59:30 -06:00
|
|
|
pure fn eq(&self, other: &inline_attr) -> bool {
|
|
|
|
((*self) as uint) == ((*other) as uint)
|
|
|
|
}
|
|
|
|
pure fn ne(&self, other: &inline_attr) -> bool { !(*self).eq(other) }
|
2012-09-19 20:00:26 -05:00
|
|
|
}
|
2012-09-07 20:53:14 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// True if something like #[inline] is found in the list of attrs.
|
2013-01-22 13:57:39 -06:00
|
|
|
fn find_inline_attr(attrs: &[ast::attribute]) -> inline_attr {
|
2012-07-05 17:58:25 -05:00
|
|
|
// FIXME (#2809)---validate the usage of #[inline] and #[inline(always)]
|
2012-06-30 18:19:07 -05:00
|
|
|
do vec::foldl(ia_none, attrs) |ia,attr| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match attr.node.value.node {
|
2012-07-18 18:18:02 -05:00
|
|
|
ast::meta_word(~"inline") => ia_hint,
|
|
|
|
ast::meta_list(~"inline", items) => {
|
2012-07-14 00:57:48 -05:00
|
|
|
if !vec::is_empty(find_meta_items_by_name(items, ~"always")) {
|
2012-04-15 03:07:47 -05:00
|
|
|
ia_always
|
2012-07-25 19:29:34 -05:00
|
|
|
} else if !vec::is_empty(
|
|
|
|
find_meta_items_by_name(items, ~"never")) {
|
|
|
|
ia_never
|
2012-04-15 03:07:47 -05:00
|
|
|
} else {
|
|
|
|
ia_hint
|
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => ia
|
2012-01-16 23:12:08 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-15 03:07:47 -05:00
|
|
|
fn require_unique_names(diagnostic: span_handler,
|
2013-01-11 17:07:48 -06:00
|
|
|
metas: &[@ast::meta_item]) {
|
2012-09-19 17:13:04 -05:00
|
|
|
let map = map::HashMap();
|
2012-06-30 18:19:07 -05:00
|
|
|
for metas.each |meta| {
|
2012-09-20 20:15:39 -05:00
|
|
|
let name = get_meta_item_name(*meta);
|
2012-06-07 22:12:05 -05:00
|
|
|
|
2012-06-14 20:46:33 -05:00
|
|
|
// FIXME: How do I silence the warnings? --pcw (#2619)
|
2012-07-18 18:18:02 -05:00
|
|
|
if map.contains_key(name) {
|
2012-04-15 03:07:47 -05:00
|
|
|
diagnostic.span_fatal(meta.span,
|
2012-08-22 19:24:52 -05:00
|
|
|
fmt!("duplicate meta item `%s`", name));
|
2012-04-15 03:07:47 -05:00
|
|
|
}
|
2012-07-18 18:18:02 -05:00
|
|
|
map.insert(name, ());
|
2012-01-16 23:12:08 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-28 13:24:24 -05:00
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|
|
|
|
//
|