Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:code_region
(Results
1 - 9
of
9
) sorted by relevance
/third_party/node/deps/v8/src/heap/
H
A
D
code-range.cc
177
const base::AddressRegion
code_region
(page_allocator()->begin(),
in RemapEmbeddedBuiltins()
179
CHECK_NE(
code_region
.begin(), kNullAddress);
in RemapEmbeddedBuiltins()
180
CHECK(!
code_region
.is_empty());
in RemapEmbeddedBuiltins()
186
code_region
.contains(reinterpret_cast<Address>(embedded_blob_code_copy),
in RemapEmbeddedBuiltins()
199
void* hint = reinterpret_cast<void*>(
code_region
.end() - allocate_code_size);
in RemapEmbeddedBuiltins()
H
A
D
heap-inl.h
177
inline const base::AddressRegion& Heap::
code_region
() {
in code_region()
function in v8::internal::Heap
H
A
D
factory.cc
296
!V8_ENABLE_THIRD_PARTY_HEAP_BOOL && !heap->
code_region
().is_empty(),
in AllocateCode()
297
heap->
code_region
().contains(code->address()));
in AllocateCode()
2398
!V8_ENABLE_THIRD_PARTY_HEAP_BOOL && !heap->
code_region
().is_empty(),
in CopyCode()
2399
heap->
code_region
().contains(new_code->address()));
in CopyCode()
H
A
D
heap.h
887
const base::AddressRegion&
code_region
();
/third_party/node/deps/v8/src/builtins/
H
A
D
setup-builtins-internal.cc
46
const base::AddressRegion&
code_region
= isolate->heap()->
code_region
();
in BuiltinAssemblerOptions()
local
48
!
code_region
.is_empty() &&
in BuiltinAssemblerOptions()
49
std::ceil(static_cast<float>(
code_region
.size() / MB)) <=
in BuiltinAssemblerOptions()
/third_party/node/deps/v8/src/wasm/
H
A
D
wasm-code-manager.cc
1791
base::AddressRegion
code_region
) const {
in FindJumpTablesForRegionLocked()
1793
auto jump_table_usable = [
code_region
](const WasmCode* jump_table) {
in FindJumpTablesForRegionLocked()
1799
code_region
.end() > table_start ?
code_region
.end() - table_start : 0,
in FindJumpTablesForRegionLocked()
1800
table_end >
code_region
.begin() ? table_end -
code_region
.begin() : 0);
in FindJumpTablesForRegionLocked()
1812
// {
code_region
}.
in FindJumpTablesForRegionLocked()
/third_party/node/deps/v8/src/execution/
H
A
D
isolate.cc
3364
const base::AddressRegion&
code_region
= heap()->
code_region
();
in ThrowInternal()
local
3365
void* start = reinterpret_cast<void*>(
code_region
.begin());
in ThrowInternal()
3755
GetShortBuiltinsCallRegion().contains(heap_.
code_region
())) {
in ThrowInternal()
4010
GetShortBuiltinsCallRegion().contains(heap_.
code_region
());
in ThrowInternal()
4193
const base::AddressRegion&
code_region
= heap()->
code_region
();
in ThrowInternal()
local
4194
void* start = reinterpret_cast<void*>(
code_region
.begin());
in ThrowInternal()
4195
size_t size_in_bytes =
code_region
.size();
in ThrowInternal()
/third_party/node/deps/v8/src/profiler/
H
A
D
tick-sample.cc
257
isolate->heap()->
code_region
().contains(
in GetStackSample()
/third_party/node/deps/v8/src/api/
H
A
D
api.cc
9325
const base::AddressRegion&
code_region
= isolate->heap()->
code_region
();
in GetCodeRange()
local
9326
*start = reinterpret_cast<void*>(
code_region
.begin());
in GetCodeRange()
9327
*length_in_bytes =
code_region
.size();
in GetCodeRange()
Completed in 49 milliseconds