about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-05-26 13:37:55 +0200
committerGitHub <noreply@github.com>2019-05-26 13:37:55 +0200
commit58eb22fdae6847eb292754e466da7922c03fc0e4 (patch)
treec5bcd4a9a6bbadd398da00e1483b2578ead4d82c
parent2268d9923bcb34a6c921d285cca7fa3dba857c02 (diff)
parente396f992558746689e1d562c5a6bb0b92bf70b93 (diff)
downloadrust-58eb22fdae6847eb292754e466da7922c03fc0e4.tar.gz
rust-58eb22fdae6847eb292754e466da7922c03fc0e4.zip
Rollup merge of #61077 - nnethercote:tweak-prefill, r=petrochenkov
Don't arena-allocate static symbols.

It's just a waste of memory. This also gets rid of the special case for
"".

r? @petrochenkov
-rw-r--r--src/libsyntax_pos/symbol.rs19
1 files changed, 6 insertions, 13 deletions
diff --git a/src/libsyntax_pos/symbol.rs b/src/libsyntax_pos/symbol.rs
index b1e1a056db4..26422e891c5 100644
--- a/src/libsyntax_pos/symbol.rs
+++ b/src/libsyntax_pos/symbol.rs
@@ -866,20 +866,13 @@ pub struct Interner {
 }
 
 impl Interner {
-    fn prefill(init: &[&str]) -> Self {
-        let mut this = Interner::default();
-        this.names.reserve(init.len());
-        this.strings.reserve(init.len());
-
-        // We can't allocate empty strings in the arena, so handle this here.
-        assert!(kw::Invalid.as_u32() == 0 && init[0].is_empty());
-        this.names.insert("", kw::Invalid);
-        this.strings.push("");
-
-        for string in &init[1..] {
-            this.intern(string);
+    fn prefill(init: &[&'static str]) -> Self {
+        let symbols = (0 .. init.len() as u32).map(Symbol::new);
+        Interner {
+            strings: init.to_vec(),
+            names: init.iter().copied().zip(symbols).collect(),
+            ..Default::default()
         }
-        this
     }
 
     pub fn intern(&mut self, string: &str) -> Symbol {