diff options
| author | Eli Friedman <eli.friedman@gmail.com> | 2011-04-18 05:02:31 +0000 |
|---|---|---|
| committer | Eli Friedman <eli.friedman@gmail.com> | 2011-04-18 05:02:31 +0000 |
| commit | 0e40208d7bb3ff2cac8bad38a578bfe52e7d3ff8 (patch) | |
| tree | ffeeacac5d5587ec09348da9353b01be144ea5cf /llvm/lib/MC | |
| parent | 73a559fe93e7c683b2729db639056ee6c7f49815 (diff) | |
| download | bcm5719-llvm-0e40208d7bb3ff2cac8bad38a578bfe52e7d3ff8.tar.gz bcm5719-llvm-0e40208d7bb3ff2cac8bad38a578bfe52e7d3ff8.zip | |
Make the StringMaps attached to MCContext use the MCContext's allocator;
reduces the number of calls to malloc().
llvm-svn: 129687
Diffstat (limited to 'llvm/lib/MC')
| -rw-r--r-- | llvm/lib/MC/MCContext.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCContext.cpp b/llvm/lib/MC/MCContext.cpp index af8cd8eb141..8faa72ecb4e 100644 --- a/llvm/lib/MC/MCContext.cpp +++ b/llvm/lib/MC/MCContext.cpp @@ -27,7 +27,9 @@ typedef StringMap<const MCSectionCOFF*> COFFUniqueMapTy; MCContext::MCContext(const MCAsmInfo &mai, const TargetAsmInfo *tai) : - MAI(mai), TAI(tai), NextUniqueID(0), + MAI(mai), TAI(tai), + Allocator(), Symbols(Allocator), UsedNames(Allocator), + NextUniqueID(0), CurrentDwarfLoc(0,0,0,DWARF2_FLAG_IS_STMT,0,0), AllowTemporaryLabels(true) { MachOUniquingMap = 0; |

