Home
last modified time | relevance | path

Searched refs:code_pages (Results 1 - 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/diagnostics/
H A Dunwinder.cc39 bool PCIsInCodePages(size_t code_pages_length, const MemoryRange* code_pages, in PCIsInCodePages() argument
41 DCHECK(std::is_sorted(code_pages, code_pages + code_pages_length, in PCIsInCodePages()
48 std::upper_bound(code_pages, code_pages + code_pages_length, fake_range, in PCIsInCodePages()
52 DCHECK_IMPLIES(it != code_pages + code_pages_length, pc < it->start); in PCIsInCodePages()
53 if (it == code_pages) return false; in PCIsInCodePages()
118 const MemoryRange* code_pages, in TryUnwindV8Frames()
124 if (PCIsInV8(code_pages_length, code_pages, pc) && in TryUnwindV8Frames()
132 while (PCIsInV8(code_pages_length, code_pages, next_p in TryUnwindV8Frames()
116 TryUnwindV8Frames(const JSEntryStubs& entry_stubs, size_t code_pages_length, const MemoryRange* code_pages, RegisterState* register_state, const void* stack_base) TryUnwindV8Frames() argument
163 PCIsInV8(size_t code_pages_length, const MemoryRange* code_pages, void* pc) PCIsInV8() argument
[all...]
/third_party/node/deps/v8/include/
H A Dv8-unwinder.h97 * \param code_pages A list of all of the ranges in which V8 has allocated
113 const MemoryRange* code_pages,
118 * Whether the PC is within the V8 code range represented by code_pages.
126 static bool PCIsInV8(size_t code_pages_length, const MemoryRange* code_pages,
/third_party/node/deps/v8/include/v8-include/
H A Dv8-unwinder.h97 * \param code_pages A list of all of the ranges in which V8 has allocated
113 const MemoryRange* code_pages,
118 * Whether the PC is within the V8 code range represented by code_pages.
126 static bool PCIsInV8(size_t code_pages_length, const MemoryRange* code_pages,
/third_party/node/deps/v8/src/api/
H A Dapi.cc9364 std::vector<MemoryRange>* code_pages = isolate->GetCodePages(); in CopyCodePages()
9366 DCHECK_NOT_NULL(code_pages); in CopyCodePages()
9372 size_t limit = std::min(capacity, code_pages->size()); in CopyCodePages()
9374 code_pages_out[i] = code_pages->at(i); in CopyCodePages()
9376 return code_pages->size(); in CopyCodePages()

Completed in 24 milliseconds