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:codeDesc
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/jit/
H
A
D
jit_task.cpp
157
size_t JitTask::ComputePayLoadSize(MachineCodeDesc &
codeDesc
)
in ComputePayLoadSize()
argument
159
ComputeAlignedSizes(
codeDesc
);
in ComputePayLoadSize()
160
if (
codeDesc
.codeType == MachineCodeType::BASELINE_CODE) {
in ComputePayLoadSize()
163
size_t payLoadSize =
codeDesc
.stackMapSizeAlign +
codeDesc
.codeSizeAlign;
in ComputePayLoadSize()
166
codeDesc
.instructionsSize =
codeDesc
.codeSizeAlign;
in ComputePayLoadSize()
168
<< allocSize << " (instruction size): " <<
codeDesc
.codeSizeAlign;
in ComputePayLoadSize()
173
return payLoadSize -
codeDesc
.codeSizeAlign;
in ComputePayLoadSize()
176
return
codeDesc
in ComputePayLoadSize()
[all...]
H
A
D
jit_task.h
234
static size_t PUBLIC_API ComputePayLoadSize(MachineCodeDesc &
codeDesc
);
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/
H
A
D
baseline_compiler.h
84
bool CollectMemoryCodeInfos(MachineCodeDesc &
codeDesc
);
H
A
D
baseline_compiler.cpp
180
bool BaselineCompiler::CollectMemoryCodeInfos(MachineCodeDesc &
codeDesc
)
in CollectMemoryCodeInfos()
argument
182
codeDesc
.codeAddr = reinterpret_cast<uint64_t>(GetBaselineAssembler().GetBuffer());
in CollectMemoryCodeInfos()
183
codeDesc
.codeSize = GetBaselineAssembler().GetBufferSize();
in CollectMemoryCodeInfos()
184
codeDesc
.codeType = MachineCodeType::BASELINE_CODE;
in CollectMemoryCodeInfos()
185
codeDesc
.stackMapOrOffsetTableAddr = reinterpret_cast<uint64_t>(nativePcOffsetTable.GetData());
in CollectMemoryCodeInfos()
186
codeDesc
.stackMapOrOffsetTableSize = nativePcOffsetTable.GetSize();
in CollectMemoryCodeInfos()
188
codeDesc
.codeSigner = 0;
in CollectMemoryCodeInfos()
193
codeDesc
.codeSigner = reinterpret_cast<uintptr_t>(singleton->GetCodeSigner());
in CollectMemoryCodeInfos()
197
JitCompiler::AllocFromFortAndCopy(*compilationEnv,
codeDesc
) == false) {
in CollectMemoryCodeInfos()
Completed in 12 milliseconds