• 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
..
arm Loading commit data...
arm64 Loading commit data...
ia32 Loading commit data...
loong64 Loading commit data...
mips Loading commit data...
mips64 Loading commit data...
ppc Loading commit data...
riscv64 Loading commit data...
s390 Loading commit data...
x64 Loading commit data...
DEPS Loading commit data...
OWNERS Loading commit data...
basic-block-profiler.cc Loading commit data...
basic-block-profiler.h Loading commit data...
code-tracer.h Loading commit data...
compilation-statistics.cc Loading commit data...
compilation-statistics.h Loading commit data...
disasm.h Loading commit data...
disassembler.cc Loading commit data...
disassembler.h Loading commit data...
eh-frame.cc Loading commit data...
eh-frame.h Loading commit data...
gdb-jit.cc Loading commit data...
gdb-jit.h Loading commit data...
objects-debug.cc Loading commit data...
objects-printer.cc Loading commit data...
perf-jit.cc Loading commit data...
perf-jit.h Loading commit data...
system-jit-metadata-win.h Loading commit data...
system-jit-win.cc Loading commit data...
system-jit-win.h Loading commit data...
unwinder.cc Loading commit data...
unwinder.h Loading commit data...
unwinding-info-win64.cc Loading commit data...
unwinding-info-win64.h Loading commit data...