|
14 | 14 | //! ownership of the original.
|
15 | 15 |
|
16 | 16 | use std::borrow::Cow;
|
| 17 | +use std::hash::Hash; |
17 | 18 | use std::{cmp, fmt, iter};
|
18 | 19 |
|
19 | 20 | use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
|
20 | 21 | use rustc_data_structures::sync::{self, Lrc};
|
21 | 22 | use rustc_macros::{Decodable, Encodable, HashStable_Generic};
|
22 |
| -use rustc_serialize::{Decodable, Encodable}; |
| 23 | +use rustc_serialize::{Decodable, Encodable, Encoder}; |
| 24 | +use rustc_span::def_id::{CrateNum, DefIndex}; |
23 | 25 | use rustc_span::{sym, Span, SpanDecoder, SpanEncoder, Symbol, DUMMY_SP};
|
24 | 26 |
|
25 | 27 | use crate::ast::{AttrStyle, StmtKind};
|
@@ -140,6 +142,11 @@ impl fmt::Debug for LazyAttrTokenStream {
|
140 | 142 |
|
141 | 143 | impl<S: SpanEncoder> Encodable<S> for LazyAttrTokenStream {
|
142 | 144 | fn encode(&self, _s: &mut S) {
|
| 145 | + // FIXME(pr-time): Just a reminder that this exists/was tried out, |
| 146 | + // but probably not necessary anymore (see below). |
| 147 | + // self.to_attr_token_stream().encode(s) |
| 148 | + // We should not need to anymore, now that we `flatten`? |
| 149 | + // Yep, that seems to be true! :) |
143 | 150 | panic!("Attempted to encode LazyAttrTokenStream");
|
144 | 151 | }
|
145 | 152 | }
|
@@ -296,6 +303,96 @@ pub struct AttrsTarget {
|
296 | 303 | #[derive(Clone, Debug, Default, Encodable, Decodable)]
|
297 | 304 | pub struct TokenStream(pub(crate) Lrc<Vec<TokenTree>>);
|
298 | 305 |
|
| 306 | +struct HashEncoder<H: std::hash::Hasher> { |
| 307 | + hasher: H, |
| 308 | +} |
| 309 | + |
| 310 | +impl<H: std::hash::Hasher> Encoder for HashEncoder<H> { |
| 311 | + fn emit_usize(&mut self, v: usize) { |
| 312 | + self.hasher.write_usize(v) |
| 313 | + } |
| 314 | + |
| 315 | + fn emit_u128(&mut self, v: u128) { |
| 316 | + self.hasher.write_u128(v) |
| 317 | + } |
| 318 | + |
| 319 | + fn emit_u64(&mut self, v: u64) { |
| 320 | + self.hasher.write_u64(v) |
| 321 | + } |
| 322 | + |
| 323 | + fn emit_u32(&mut self, v: u32) { |
| 324 | + self.hasher.write_u32(v) |
| 325 | + } |
| 326 | + |
| 327 | + fn emit_u16(&mut self, v: u16) { |
| 328 | + self.hasher.write_u16(v) |
| 329 | + } |
| 330 | + |
| 331 | + fn emit_u8(&mut self, v: u8) { |
| 332 | + self.hasher.write_u8(v) |
| 333 | + } |
| 334 | + |
| 335 | + fn emit_isize(&mut self, v: isize) { |
| 336 | + self.hasher.write_isize(v) |
| 337 | + } |
| 338 | + |
| 339 | + fn emit_i128(&mut self, v: i128) { |
| 340 | + self.hasher.write_i128(v) |
| 341 | + } |
| 342 | + |
| 343 | + fn emit_i64(&mut self, v: i64) { |
| 344 | + self.hasher.write_i64(v) |
| 345 | + } |
| 346 | + |
| 347 | + fn emit_i32(&mut self, v: i32) { |
| 348 | + self.hasher.write_i32(v) |
| 349 | + } |
| 350 | + |
| 351 | + fn emit_i16(&mut self, v: i16) { |
| 352 | + self.hasher.write_i16(v) |
| 353 | + } |
| 354 | + |
| 355 | + fn emit_raw_bytes(&mut self, s: &[u8]) { |
| 356 | + self.hasher.write(s) |
| 357 | + } |
| 358 | +} |
| 359 | + |
| 360 | +impl<H: std::hash::Hasher> SpanEncoder for HashEncoder<H> { |
| 361 | + fn encode_span(&mut self, span: Span) { |
| 362 | + span.hash(&mut self.hasher) |
| 363 | + } |
| 364 | + |
| 365 | + fn encode_symbol(&mut self, symbol: Symbol) { |
| 366 | + symbol.hash(&mut self.hasher) |
| 367 | + } |
| 368 | + |
| 369 | + fn encode_expn_id(&mut self, expn_id: rustc_span::ExpnId) { |
| 370 | + expn_id.hash(&mut self.hasher) |
| 371 | + } |
| 372 | + |
| 373 | + fn encode_syntax_context(&mut self, syntax_context: rustc_span::SyntaxContext) { |
| 374 | + syntax_context.hash(&mut self.hasher) |
| 375 | + } |
| 376 | + |
| 377 | + fn encode_crate_num(&mut self, crate_num: CrateNum) { |
| 378 | + crate_num.hash(&mut self.hasher) |
| 379 | + } |
| 380 | + |
| 381 | + fn encode_def_index(&mut self, def_index: DefIndex) { |
| 382 | + def_index.hash(&mut self.hasher) |
| 383 | + } |
| 384 | + |
| 385 | + fn encode_def_id(&mut self, def_id: rustc_span::def_id::DefId) { |
| 386 | + def_id.hash(&mut self.hasher) |
| 387 | + } |
| 388 | +} |
| 389 | + |
| 390 | +impl Hash for TokenStream { |
| 391 | + fn hash<H: std::hash::Hasher>(&self, state: &mut H) { |
| 392 | + Encodable::encode(self, &mut HashEncoder { hasher: state }); |
| 393 | + } |
| 394 | +} |
| 395 | + |
299 | 396 | /// Indicates whether a token can join with the following token to form a
|
300 | 397 | /// compound token. Used for conversions to `proc_macro::Spacing`. Also used to
|
301 | 398 | /// guide pretty-printing, which is where the `JointHidden` value (which isn't
|
|
0 commit comments