• Clemens Hammacher's avatar
    [wasm] Store protected instructions in an OwnedVector · ce2d01bc
    Clemens Hammacher authored
    We currently store the protected instructions per code object in a
    {std::unique_ptr<std::vector<ProtectedInstructionData>>}. This wastes
    memory, because it requires two heap allocations, plus the vector might
    over-allocate (and it currently does, because it is filled dynamically
    during compilation).
    This CL changes that to store the protected instructions in an
    {OwnedVector}. This requires one copy after generating the list of
    {ProtectedInstructionData} in an {std::vector} during compilation, but
    saves memory afterwards.
    
    R=mstarzinger@chromium.org
    
    Bug: chromium:856938
    Change-Id: Ie290a17dc32f27fbbfe0c000a52297181c954550
    Reviewed-on: https://chromium-review.googlesource.com/1116701Reviewed-by: 's avatarMichael Starzinger <mstarzinger@chromium.org>
    Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#54052}
    ce2d01bc
Name
Last commit
Last update
..
benchmarks Loading commit data...
cctest Loading commit data...
common Loading commit data...
debugger Loading commit data...
fuzzer Loading commit data...
inspector Loading commit data...
intl Loading commit data...
js-perf-test Loading commit data...
memory Loading commit data...
message Loading commit data...
mjsunit Loading commit data...
mkgrokdump Loading commit data...
mozilla Loading commit data...
preparser Loading commit data...
test262 Loading commit data...
torque Loading commit data...
unittests Loading commit data...
wasm-spec-tests Loading commit data...
webkit Loading commit data...
BUILD.gn Loading commit data...