• Ng Zhi An's avatar
    [gdbjit] Fix overlapping AddressRegion check · 5e8e2d04
    Ng Zhi An authored
    Whenever we are adding a new AddressRegion to the CodeMap, we first
    remove all overlapping regions. The logic to check for overlapping
    region is incomplete. For example, if all existing regions are less than
    the region to be added, we incorrectly remove all regions, effectively
    deleting all JITCodeEntry we have constructed.
    
    We extract this overlapping check into a helper function, so that we can
    unittest this without worrying about JITCodeEvent functionality, and also
    without dealing with V8 internals (like Isolate and SFI).
    
    The overlapping logic is rather hard to understand, has many special
    cases, it will probably be much easier to just loop through all the
    entries, rather than using lower_bound. Ideally, we can refactor this to
    use some sort of sweep-line algorithm. Hopefully the unittests catch the
    most obvious cases.
    
    Bug: v8:11908
    Change-Id: Id96975599ac59974185c3dbf64cdfceb17e98d18
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3105381
    Commit-Queue: Zhi An Ng <zhin@chromium.org>
    Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
    Cr-Commit-Position: refs/heads/main@{#76397}
    5e8e2d04
Name
Last commit
Last update
..
api Loading commit data...
asmjs Loading commit data...
assembler Loading commit data...
base Loading commit data...
codegen Loading commit data...
compiler Loading commit data...
compiler-dispatcher Loading commit data...
date Loading commit data...
debug Loading commit data...
diagnostics Loading commit data...
execution Loading commit data...
heap Loading commit data...
interpreter Loading commit data...
libplatform Loading commit data...
logging Loading commit data...
numbers Loading commit data...
objects Loading commit data...
parser Loading commit data...
profiler Loading commit data...
regexp Loading commit data...
regress Loading commit data...
runtime Loading commit data...
strings Loading commit data...
tasks Loading commit data...
torque Loading commit data...
utils Loading commit data...
wasm Loading commit data...
zone Loading commit data...
BUILD.gn Loading commit data...
DEPS Loading commit data...
run-all-unittests.cc Loading commit data...
test-helpers.cc Loading commit data...
test-helpers.h Loading commit data...
test-utils.cc Loading commit data...
test-utils.h Loading commit data...
testcfg.py Loading commit data...
unittests.status Loading commit data...