libsyntax: Do not derive Hash for Ident
This commit is contained in:
parent
f492ec4bf4
commit
f37d6fc6f3
@ -65,6 +65,7 @@ use ptr::P;
|
|||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
use std::borrow::Cow;
|
use std::borrow::Cow;
|
||||||
|
use std::hash::{Hash, Hasher};
|
||||||
use serialize::{Encodable, Decodable, Encoder, Decoder};
|
use serialize::{Encodable, Decodable, Encoder, Decoder};
|
||||||
|
|
||||||
/// A name is a part of an identifier, representing a string or gensym. It's
|
/// A name is a part of an identifier, representing a string or gensym. It's
|
||||||
@ -84,7 +85,7 @@ pub struct SyntaxContext(pub u32);
|
|||||||
/// An identifier contains a Name (index into the interner
|
/// An identifier contains a Name (index into the interner
|
||||||
/// table) and a SyntaxContext to track renaming and
|
/// table) and a SyntaxContext to track renaming and
|
||||||
/// macro expansion per Flatt et al., "Macros That Work Together"
|
/// macro expansion per Flatt et al., "Macros That Work Together"
|
||||||
#[derive(Clone, Copy, Eq, Hash)]
|
#[derive(Clone, Copy, Eq)]
|
||||||
pub struct Ident {
|
pub struct Ident {
|
||||||
pub name: Name,
|
pub name: Name,
|
||||||
pub ctxt: SyntaxContext
|
pub ctxt: SyntaxContext
|
||||||
@ -133,22 +134,35 @@ impl Ident {
|
|||||||
|
|
||||||
impl PartialEq for Ident {
|
impl PartialEq for Ident {
|
||||||
fn eq(&self, other: &Ident) -> bool {
|
fn eq(&self, other: &Ident) -> bool {
|
||||||
if self.ctxt == other.ctxt {
|
if self.ctxt != other.ctxt {
|
||||||
self.name == other.name
|
// There's no one true way to compare Idents. They can be compared
|
||||||
} else {
|
// non-hygienically `id1.name == id2.name`, hygienically
|
||||||
// IF YOU SEE ONE OF THESE FAILS: it means that you're comparing
|
// `mtwt::resolve(id1) == mtwt::resolve(id2)`, or even member-wise
|
||||||
// idents that have different contexts. You can't fix this without
|
// `(id1.name, id1.ctxt) == (id2.name, id2.ctxt)` depending on the situation.
|
||||||
// knowing whether the comparison should be hygienic or non-hygienic.
|
// Ideally, PartialEq should not be implemented for Ident at all, but that
|
||||||
// if it should be non-hygienic (most things are), just compare the
|
// would be too impractical, because many larger structures (Token, in particular)
|
||||||
// 'name' fields of the idents.
|
// including Idents as their parts derive PartialEq and use it for non-hygienic
|
||||||
|
// comparisons. That's why PartialEq is implemented and defaults to non-hygienic
|
||||||
|
// comparison. Hash is implemented too and is consistent with PartialEq, i.e. only
|
||||||
|
// the name of Ident is hashed. Still try to avoid comparing idents in your code
|
||||||
|
// (especially as keys in hash maps), use one of the three methods listed above
|
||||||
|
// explicitly.
|
||||||
//
|
//
|
||||||
// On the other hand, if the comparison does need to be hygienic,
|
// If you see this panic, then some idents from different contexts were compared
|
||||||
// one example and its non-hygienic counterpart would be:
|
// non-hygienically. It's likely a bug. Use one of the three comparison methods
|
||||||
// syntax::parse::token::Token::mtwt_eq
|
// listed above explicitly.
|
||||||
// syntax::ext::tt::macro_parser::token_name_eq
|
|
||||||
panic!("idents with different contexts are compared with operator `==`: \
|
panic!("idents with different contexts are compared with operator `==`: \
|
||||||
{:?}, {:?}.", self, other);
|
{:?}, {:?}.", self, other);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.name == other.name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Hash for Ident {
|
||||||
|
fn hash<H: Hasher>(&self, state: &mut H) {
|
||||||
|
self.name.hash(state)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ use std::collections::HashMap;
|
|||||||
pub struct SCTable {
|
pub struct SCTable {
|
||||||
table: RefCell<Vec<SyntaxContext_>>,
|
table: RefCell<Vec<SyntaxContext_>>,
|
||||||
mark_memo: RefCell<HashMap<(SyntaxContext,Mrk),SyntaxContext>>,
|
mark_memo: RefCell<HashMap<(SyntaxContext,Mrk),SyntaxContext>>,
|
||||||
rename_memo: RefCell<HashMap<(SyntaxContext,Name,SyntaxContext,Name),SyntaxContext>>,
|
rename_memo: RefCell<HashMap<(SyntaxContext,(Name,SyntaxContext),Name),SyntaxContext>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(PartialEq, RustcEncodable, RustcDecodable, Hash, Debug, Copy, Clone)]
|
#[derive(PartialEq, RustcEncodable, RustcDecodable, Hash, Debug, Copy, Clone)]
|
||||||
@ -82,7 +82,7 @@ fn apply_rename_internal(id: Ident,
|
|||||||
to: Name,
|
to: Name,
|
||||||
ctxt: SyntaxContext,
|
ctxt: SyntaxContext,
|
||||||
table: &SCTable) -> SyntaxContext {
|
table: &SCTable) -> SyntaxContext {
|
||||||
let key = (ctxt, id.name, id.ctxt, to);
|
let key = (ctxt, (id.name, id.ctxt), to);
|
||||||
|
|
||||||
*table.rename_memo.borrow_mut().entry(key).or_insert_with(|| {
|
*table.rename_memo.borrow_mut().entry(key).or_insert_with(|| {
|
||||||
SyntaxContext(idx_push(&mut *table.table.borrow_mut(), Rename(id, to, ctxt)))
|
SyntaxContext(idx_push(&mut *table.table.borrow_mut(), Rename(id, to, ctxt)))
|
||||||
|
Loading…
Reference in New Issue
Block a user