Lines Matching refs:code_pages
39 bool PCIsInCodePages(size_t code_pages_length, const MemoryRange* code_pages,
41 DCHECK(std::is_sorted(code_pages, code_pages + code_pages_length,
48 std::upper_bound(code_pages, code_pages + code_pages_length, fake_range,
52 DCHECK_IMPLIES(it != code_pages + code_pages_length, pc < it->start);
53 if (it == code_pages) return false;
118 const MemoryRange* code_pages,
124 if (PCIsInV8(code_pages_length, code_pages, pc) &&
132 while (PCIsInV8(code_pages_length, code_pages, next_pc)) {
163 bool Unwinder::PCIsInV8(size_t code_pages_length, const MemoryRange* code_pages,
165 return pc && PCIsInCodePages(code_pages_length, code_pages, pc);