Skip to content

ir: Cleanup a bunch of constructors #1095

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/codegen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use ir::derive::{CanDeriveCopy, CanDeriveDebug, CanDeriveDefault,
CanDerivePartialEq, CanDeriveEq, CannotDeriveReason};
use ir::dot;
use ir::enum_ty::{Enum, EnumVariant, EnumVariantValue};
use ir::function::{Abi, Function, FunctionSig};
use ir::function::{Abi, Function, FunctionSig, Linkage};
use ir::int::IntKind;
use ir::item::{IsOpaque, Item, ItemCanonicalName, ItemCanonicalPath};
use ir::item_kind::ItemKind;
Expand Down Expand Up @@ -3127,6 +3127,13 @@ impl CodeGenerator for Function {
debug!("<Function as CodeGenerator>::codegen: item = {:?}", item);
debug_assert!(item.is_enabled_for_codegen(ctx));

// We can't currently do anything with Internal functions so just
// avoid generating anything for them.
match self.linkage() {
Linkage::Internal => return,
Linkage::External => {}
}

// Similar to static member variables in a class template, we can't
// generate bindings to template functions, because the set of
// instantiations is open ended and we have no way of knowing which
Expand Down
20 changes: 10 additions & 10 deletions src/ir/comp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ impl Method {
/// Construct a new `Method`.
pub fn new(kind: MethodKind, signature: FunctionId, is_const: bool) -> Self {
Method {
kind: kind,
signature: signature,
is_const: is_const,
kind,
signature,
is_const,
}
}

Expand Down Expand Up @@ -311,7 +311,7 @@ impl Bitfield {
assert!(raw.bitfield_width().is_some());

Bitfield {
offset_into_unit: offset_into_unit,
offset_into_unit,
data: raw.0,
getter_name: None,
setter_name: None,
Expand Down Expand Up @@ -420,13 +420,13 @@ impl RawField {
offset: Option<usize>,
) -> RawField {
RawField(FieldData {
name: name,
ty: ty,
comment: comment,
name,
ty,
comment,
annotations: annotations.unwrap_or_default(),
bitfield_width: bitfield_width,
mutable: mutable,
offset: offset,
bitfield_width,
mutable,
offset,
})
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/ir/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ impl<'ctx> WhitelistedItemsTraversal<'ctx> {
R: IntoIterator<Item = ItemId>,
{
WhitelistedItemsTraversal {
ctx: ctx,
ctx,
traversal: ItemTraversal::new(ctx, roots, predicate),
}
}
Expand Down
12 changes: 6 additions & 6 deletions src/ir/enum_ty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ impl Enum {
/// Construct a new `Enum` with the given representation and variants.
pub fn new(repr: Option<TypeId>, variants: Vec<EnumVariant>) -> Self {
Enum {
repr: repr,
variants: variants,
repr,
variants,
}
}

Expand Down Expand Up @@ -204,10 +204,10 @@ impl EnumVariant {
custom_behavior: Option<EnumVariantCustomBehavior>,
) -> Self {
EnumVariant {
name: name,
comment: comment,
val: val,
custom_behavior: custom_behavior,
name,
comment,
val,
custom_behavior,
}
}

Expand Down
44 changes: 32 additions & 12 deletions src/ir/function.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ impl FunctionKind {
}
}

/// The style of linkage
#[derive(Debug, Clone, Copy)]
pub enum Linkage {
/// Externally visible and can be linked against
External,
/// Not exposed externally. 'static inline' functions will have this kind of linkage
Internal
}

/// A function declaration, with a signature, arguments, and argument names.
///
/// The argument names vector must be the same length as the ones in the
Expand All @@ -69,23 +78,28 @@ pub struct Function {

/// The kind of function this is.
kind: FunctionKind,

/// The linkage of the function.
linkage: Linkage,
}

impl Function {
/// Construct a new function.
pub fn new(
name: String,
mangled_name: Option<String>,
sig: TypeId,
signature: TypeId,
comment: Option<String>,
kind: FunctionKind,
linkage: Linkage
) -> Self {
Function {
name: name,
mangled_name: mangled_name,
signature: sig,
comment: comment,
kind: kind,
name,
mangled_name,
signature,
comment,
kind,
linkage,
}
}

Expand All @@ -108,6 +122,12 @@ impl Function {
pub fn kind(&self) -> FunctionKind {
self.kind
}

/// Get this function's linkage.
pub fn linkage(&self) -> Linkage {
self.linkage
}

}

impl DotAttributes for Function {
Expand Down Expand Up @@ -477,11 +497,11 @@ impl ClangSubItemParser for Function {
}

let linkage = cursor.linkage();
if linkage != CXLinkage_External &&
linkage != CXLinkage_UniqueExternal
{
return Err(ParseError::Continue);
}
let linkage = match linkage {
CXLinkage_External | CXLinkage_UniqueExternal => Linkage::External,
CXLinkage_Internal => Linkage::Internal,
_ => return Err(ParseError::Continue)
};

// Grab the signature using Item::from_ty.
let sig =
Expand Down Expand Up @@ -511,7 +531,7 @@ impl ClangSubItemParser for Function {

let comment = cursor.raw_comment();

let function = Self::new(name, mangled_name, sig, comment, kind);
let function = Self::new(name, mangled_name, sig, comment, kind, linkage);
Ok(ParseResult::New(function, Some(cursor)))
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/ir/layout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ impl Layout {
/// packed.
pub fn new(size: usize, align: usize) -> Self {
Layout {
size: size,
align: align,
size,
align,
packed: false,
}
}
Expand Down
9 changes: 3 additions & 6 deletions src/ir/template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,16 +214,13 @@ pub struct TemplateInstantiation {

impl TemplateInstantiation {
/// Construct a new template instantiation from the given parts.
pub fn new<I>(
template_definition: TypeId,
template_args: I,
) -> TemplateInstantiation
pub fn new<I>(definition: TypeId, args: I) -> TemplateInstantiation
where
I: IntoIterator<Item = TypeId>,
{
TemplateInstantiation {
definition: template_definition,
args: template_args.into_iter().collect(),
definition,
args: args.into_iter().collect(),
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/ir/traversal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ impl Edge {
/// Construct a new edge whose referent is `to` and is of the given `kind`.
pub fn new(to: ItemId, kind: EdgeKind) -> Edge {
Edge {
to: to,
kind: kind,
to,
kind,
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions src/ir/ty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ impl Type {
is_const: bool,
) -> Self {
Type {
name: name,
layout: layout,
kind: kind,
is_const: is_const,
name,
layout,
kind,
is_const,
}
}

Expand Down
12 changes: 6 additions & 6 deletions src/ir/var.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@ impl Var {
/// Construct a new `Var`.
pub fn new(
name: String,
mangled: Option<String>,
mangled_name: Option<String>,
ty: TypeId,
val: Option<VarType>,
is_const: bool,
) -> Var {
assert!(!name.is_empty());
Var {
name: name,
mangled_name: mangled,
ty: ty,
val: val,
is_const: is_const,
name,
mangled_name,
ty,
val,
is_const,
}
}

Expand Down