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:codeBegin
(Results
1 - 3
of
3
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/
H
A
D
js_stackinfo.h
58
uintptr_t
codeBegin
;
member
64
uintptr_t
codeBegin
;
member
66
MethodInfo(uintptr_t methodId, uintptr_t
codeBegin
, uint32_t codeSize)
in MethodInfo()
67
: methodId(methodId),
codeBegin
(
codeBegin
), codeSize(codeSize) {}
in MethodInfo()
70
return lhs.
codeBegin
< rhs.
codeBegin
;
in operator <()
H
A
D
js_stackinfo.cpp
521
uintptr_t
codeBegin
= reinterpret_cast<uintptr_t>(cda.GetInstructions());
in ReadMethodInfo()
local
522
return std::make_optional<MethodInfo>(methodId,
codeBegin
, codeSize);
in ReadMethodInfo()
563
bool isRight = realPc >= (vec[mid].
codeBegin
+ vec[mid].codeSize);
in TranslateByteCodePc()
564
bool isLeft = realPc < vec[mid].
codeBegin
;
in TranslateByteCodePc()
565
//
codeBegin
<= realPc <
codeBegin
+ codeSize
in TranslateByteCodePc()
567
return std::make_optional<CodeInfo>(realPc - vec[mid].
codeBegin
, vec[mid].methodId, vec[mid].codeSize);
in TranslateByteCodePc()
671
jsFunction->
codeBegin
= byteCodePc - offset;
1848
jsFunction->
codeBegin
= byteCodePc - offset;
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/tests/
H
A
D
js_stackinfo_test.cpp
336
uintptr_t byteCodePc1 = methods1[0].
codeBegin
;
in HWTEST_F_L0()
337
uintptr_t byteCodePc2 = methods2[0].
codeBegin
;
in HWTEST_F_L0()
Completed in 4 milliseconds