• Nico Weber's avatar
    win: Make v8 build with /Zc:twoPhase, and improve a comment. · c6e6c2c6
    Nico Weber authored
    The C++ standard says that template functions should be parsed immediately,
    and only type-dependent things should be deferred.
    
    cl.exe (MSVC's compiler) instead deferred parsing of all template functions
    until the end of the translation unit, and unreferenced template functions
    are not parsed at all. clang-cl emulates cl.exe's behavior.
    
    Recently, cl.exe (and clang-cl) grew a /Zc:twoPhase flag that opts in to the
    standards-conforming behavior, and system headers are now clean enough
    to build with this flag set.
    
    This cleans up v8 to also build with this flag. There was just a single issue:
    RecyclingZoneAllocator() is unused and contains invalid code: It calls
    the superclass ctor using `ZoneAllocator(nullptr, nullptr)`, when it should
    be doing `ZoneAllocator<T>(nullptr, nullptr)`. With /Zc:twoPhase, this is
    now a parsing error. However, since the RecyclingZoneAllocator() default
    constructor isn't used anywhere, just delete it.
    
    Finally, improve the comment for ZoneAllocator's default constructor to
    explain why it's needed on Windows.
    
    Bug: chromium:969702
    Change-Id: I7a516afde67fe090a512d7c7214a3c6932754aca
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1652503
    Auto-Submit: Nico Weber <thakis@chromium.org>
    Commit-Queue: Sigurd Schneider <sigurds@chromium.org>
    Reviewed-by: 's avatarSigurd Schneider <sigurds@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#62108}
    c6e6c2c6
Name
Last commit
Last update
benchmarks Loading commit data...
build_overrides Loading commit data...
custom_deps Loading commit data...
docs Loading commit data...
gni Loading commit data...
include Loading commit data...
infra Loading commit data...
samples Loading commit data...
src Loading commit data...
test Loading commit data...
testing Loading commit data...
third_party Loading commit data...
tools Loading commit data...
.clang-format Loading commit data...
.clang-tidy Loading commit data...
.editorconfig Loading commit data...
.git-blame-ignore-revs Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
.gn Loading commit data...
.vpython Loading commit data...
.ycm_extra_conf.py Loading commit data...
AUTHORS Loading commit data...
BUILD.gn Loading commit data...
CODE_OF_CONDUCT.md Loading commit data...
COMMON_OWNERS Loading commit data...
ChangeLog Loading commit data...
DEPS Loading commit data...
ENG_REVIEW_OWNERS Loading commit data...
INFRA_OWNERS Loading commit data...
INTL_OWNERS Loading commit data...
LICENSE Loading commit data...
LICENSE.fdlibm Loading commit data...
LICENSE.strongtalk Loading commit data...
LICENSE.v8 Loading commit data...
LICENSE.valgrind Loading commit data...
MIPS_OWNERS Loading commit data...
OWNERS Loading commit data...
PPC_OWNERS Loading commit data...
PRESUBMIT.py Loading commit data...
README.md Loading commit data...
S390_OWNERS Loading commit data...
WATCHLISTS Loading commit data...
codereview.settings Loading commit data...