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:preFrameSp
(Results
1 - 3
of
3
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/
H
A
D
frames.cpp
655
uintptr_t *
preFrameSp
= ComputePrevFrameSp(it);
in GetArgv()
local
656
return GetArgv(
preFrameSp
);
in GetArgv()
666
uintptr_t *
preFrameSp
= reinterpret_cast<uintptr_t *>(const_cast<JSTaggedType *>(sp)) + delta / sizeof(uintptr_t);
in ComputePrevFrameSp()
local
667
return
preFrameSp
;
in ComputePrevFrameSp()
685
uintptr_t *
preFrameSp
= frame->ComputePrevFrameSp(it);
in GCIterate()
local
686
auto argc = frame->GetArgc(
preFrameSp
);
in GCIterate()
687
JSTaggedType *argv = frame->GetArgv(reinterpret_cast<uintptr_t *>(
preFrameSp
));
in GCIterate()
721
uintptr_t *
preFrameSp
= ComputePrevFrameSp(it);
in GetArgv()
local
722
return GetArgv(
preFrameSp
);
in GetArgv()
730
uintptr_t *
preFrameSp
in ComputePrevFrameSp()
local
748
uintptr_t *
preFrameSp
= frame->ComputePrevFrameSp(it);
GCIterate()
local
[all...]
H
A
D
frames.h
577
JSTaggedType* GetArgv(uintptr_t *
preFrameSp
) const
in GetArgv()
580
return reinterpret_cast<JSTaggedType *>(
preFrameSp
+ offset * sizeof(uint64_t) / sizeof(uintptr_t));
in GetArgv()
583
size_t GetArgc(uintptr_t *
preFrameSp
) const
in GetArgc()
585
return *
preFrameSp
;
in GetArgc()
1829
JSTaggedType* GetArgv(uintptr_t *
preFrameSp
) const
in GetArgv()
1832
return reinterpret_cast<JSTaggedType *>(
preFrameSp
+ offset * sizeof(uint64_t) / sizeof(uintptr_t));
in GetArgv()
1835
size_t GetArgc(uintptr_t *
preFrameSp
) const
in GetArgc()
1837
return *
preFrameSp
;
in GetArgc()
/arkcompiler/ets_runtime/ecmascript/deoptimizer/
H
A
D
deoptimizer.cpp
272
auto
preFrameSp
= frame->ComputePrevFrameSp(it);
in AssistCollectDeoptBundleVec()
local
273
frameArgc_ = frame->GetArgc(
preFrameSp
);
in AssistCollectDeoptBundleVec()
274
frameArgvs_ = frame->GetArgv(
preFrameSp
);
in AssistCollectDeoptBundleVec()
Completed in 7 milliseconds