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:trackInfoVal
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H
A
D
pgo_profiler.h
103
void UpdateTrackArrayLength(JSTaggedValue
trackInfoVal
, uint32_t newSize);
105
void UpdateTrackElementsKind(JSTaggedValue
trackInfoVal
, ElementsKind newKind);
106
void UpdateTrackInfo(JSTaggedValue
trackInfoVal
);
H
A
D
pgo_profiler.cpp
245
void PGOProfiler::UpdateTrackElementsKind(JSTaggedValue
trackInfoVal
, ElementsKind newKind)
in UpdateTrackElementsKind()
argument
247
if (
trackInfoVal
.IsHeapObject() &&
trackInfoVal
.IsWeak()) {
in UpdateTrackElementsKind()
248
auto trackInfo = TrackInfo::Cast(
trackInfoVal
.GetWeakReferentUnChecked());
in UpdateTrackElementsKind()
269
void PGOProfiler::UpdateTrackArrayLength(JSTaggedValue
trackInfoVal
, uint32_t newSize)
in UpdateTrackArrayLength()
argument
271
if (
trackInfoVal
.IsHeapObject() &&
trackInfoVal
.IsWeak()) {
in UpdateTrackArrayLength()
272
auto trackInfo = TrackInfo::Cast(
trackInfoVal
.GetWeakReferentUnChecked());
in UpdateTrackArrayLength()
295
void PGOProfiler::UpdateTrackInfo(JSTaggedValue
trackInfoVal
)
in UpdateTrackInfo()
argument
297
if (
trackInfoVal
in UpdateTrackInfo()
[all...]
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
parallel_evacuator.cpp
58
auto
trackInfoVal
= JSTaggedValue(each);
in UpdateTrackInfo()
local
59
if (!
trackInfoVal
.IsHeapObject() || !
trackInfoVal
.IsWeak()) {
in UpdateTrackInfo()
62
auto trackInfo =
trackInfoVal
.GetWeakReferentUnChecked();
in UpdateTrackInfo()
/arkcompiler/ets_runtime/ecmascript/
H
A
D
js_hclass.cpp
746
auto
trackInfoVal
= JSHandle<JSArray>(object)->GetTrackInfo();
in TransitToElementsKind()
local
747
thread->GetEcmaVM()->GetPGOProfiler()->UpdateTrackElementsKind(
trackInfoVal
, newKind);
in TransitToElementsKind()
/arkcompiler/ets_runtime/ecmascript/stubs/
H
A
D
runtime_stubs.cpp
596
auto
trackInfoVal
= JSHandle<JSArray>(receiver)->GetTrackInfo();
in DEF_RUNTIME_STUBS()
local
597
thread->GetEcmaVM()->GetPGOProfiler()->UpdateTrackElementsKind(
trackInfoVal
, kind);
in DEF_RUNTIME_STUBS()
Completed in 19 milliseconds