• 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
..
api Loading commit data...
asmjs Loading commit data...
ast Loading commit data...
base Loading commit data...
builtins Loading commit data...
codegen Loading commit data...
common Loading commit data...
compiler Loading commit data...
compiler-dispatcher Loading commit data...
d8 Loading commit data...
date Loading commit data...
debug Loading commit data...
deoptimizer Loading commit data...
diagnostics Loading commit data...
execution Loading commit data...
extensions Loading commit data...
flags Loading commit data...
handles Loading commit data...
heap Loading commit data...
ic Loading commit data...
init Loading commit data...
inspector Loading commit data...
interpreter Loading commit data...
json Loading commit data...
libplatform Loading commit data...
libsampler Loading commit data...
logging Loading commit data...
numbers Loading commit data...
objects Loading commit data...
parsing Loading commit data...
profiler Loading commit data...
protobuf Loading commit data...
regexp Loading commit data...
roots Loading commit data...
runtime Loading commit data...
sanitizer Loading commit data...
snapshot Loading commit data...
strings Loading commit data...
tasks Loading commit data...
third_party Loading commit data...
torque Loading commit data...
tracing Loading commit data...
trap-handler Loading commit data...
utils Loading commit data...
wasm Loading commit data...
zone Loading commit data...
DEPS Loading commit data...
OWNERS Loading commit data...