From 33fdf82dda0a687133016cc41cffd4ece6693d69 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Tue, 16 Jul 2019 08:08:17 +0000 Subject: [PATCH] [WebAssembly] Rename variale references in comments after VariableName -> variableName change llvm-svn: 366192 --- lld/wasm/InputFiles.cpp | 2 +- lld/wasm/MarkLive.cpp | 4 ++-- lld/wasm/SymbolTable.h | 2 +- lld/wasm/SyntheticSections.cpp | 4 ++-- lld/wasm/Writer.cpp | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lld/wasm/InputFiles.cpp b/lld/wasm/InputFiles.cpp index b5233cf..b494546 100644 --- a/lld/wasm/InputFiles.cpp +++ b/lld/wasm/InputFiles.cpp @@ -328,7 +328,7 @@ void ObjFile::parse(bool ignoreComdats) { for (const WasmEvent &e : wasmObj->events()) events.emplace_back(make(types[e.Type.SigIndex], e, this)); - // Populate `Symbols` based on the WasmSymbols in the object. + // Populate `Symbols` based on the symbols in the object. symbols.reserve(wasmObj->getNumberOfSymbols()); for (const SymbolRef &sym : wasmObj->symbols()) { const WasmSymbol &wasmSym = wasmObj->getWasmSymbol(sym.getRawDataRefImpl()); diff --git a/lld/wasm/MarkLive.cpp b/lld/wasm/MarkLive.cpp index 703daf2..9399156 100644 --- a/lld/wasm/MarkLive.cpp +++ b/lld/wasm/MarkLive.cpp @@ -46,9 +46,9 @@ void lld::wasm::markLive() { if (InputChunk *chunk = sym->getChunk()) q.push_back(chunk); - // The ctor functions are all referenced by the synthetic CallCtors + // The ctor functions are all referenced by the synthetic callCtors // function. However, this function does not contain relocations so we - // have to manually mark the ctors as live if CallCtors itself is live. + // have to manually mark the ctors as live if callCtors itself is live. if (sym == WasmSym::callCtors) { if (config->passiveSegments) enqueue(WasmSym::initMemory); diff --git a/lld/wasm/SymbolTable.h b/lld/wasm/SymbolTable.h index 33f02dd..530d5e8 100644 --- a/lld/wasm/SymbolTable.h +++ b/lld/wasm/SymbolTable.h @@ -98,7 +98,7 @@ private: InputFunction *replaceWithUnreachable(Symbol *sym, const WasmSignature &sig, StringRef debugName); - // Maps symbol names to index into the SymVector. -1 means that symbols + // Maps symbol names to index into the symVector. -1 means that symbols // is to not yet in the vector but it should have tracing enabled if it is // ever added. llvm::DenseMap symMap; diff --git a/lld/wasm/SyntheticSections.cpp b/lld/wasm/SyntheticSections.cpp index 020d2c0..6d5d14f 100644 --- a/lld/wasm/SyntheticSections.cpp +++ b/lld/wasm/SyntheticSections.cpp @@ -474,8 +474,8 @@ void NameSection::writeBody() { SubSection sub(WASM_NAMES_FUNCTION); writeUleb128(sub.os, numNames(), "name count"); - // Names must appear in function index order. As it happens ImportedSymbols - // and InputFunctions are numbered in order with imported functions coming + // Names must appear in function index order. As it happens importedSymbols + // and inputFunctions are numbered in order with imported functions coming // first. for (const Symbol *s : out.importSec->importedSymbols) { if (auto *f = dyn_cast(s)) { diff --git a/lld/wasm/Writer.cpp b/lld/wasm/Writer.cpp index 5d81f23..77a29a2 100644 --- a/lld/wasm/Writer.cpp +++ b/lld/wasm/Writer.cpp @@ -191,7 +191,7 @@ void Writer::writeSections() { // to each of the input data sections as well as the explicit stack region. // The default memory layout is as follows, from low to high. // -// - initialized data (starting at Config->GlobalBase) +// - initialized data (starting at Config->globalBase) // - BSS data (not currently implemented in llvm) // - explicit stack (Config->ZStackSize) // - heap start / unallocated -- 2.7.4