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:unsharedCp
(Results
1 - 7
of
7
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
ntype_bytecode_lowering.h
88
JSTaggedValue
unsharedCp
= compilationEnv_->FindOrCreateUnsharedConstpool(cp);
in GetArrayLiteralValue()
local
89
return compilationEnv_->GetArrayLiteralFromCache(
unsharedCp
, cpIdx, recordName_);
in GetArrayLiteralValue()
H
A
D
ntype_hcr_lowering.h
77
JSTaggedValue
unsharedCp
= compilationEnv_->FindOrCreateUnsharedConstpool(cp);
in GetArrayLiteralValue()
local
78
return compilationEnv_->GetArrayLiteralFromCache(
unsharedCp
, cpIdx, recordName_);
in GetArrayLiteralValue()
H
A
D
type_info_accessors.cpp
1375
JSTaggedValue
unsharedCp
= compilationEnv_->FindOrCreateUnsharedConstpool(methodOffset);
in GetObject()
local
1376
if (
unsharedCp
.IsUndefined()) {
in GetObject()
1379
return compilationEnv_->GetObjectLiteralFromCache(
unsharedCp
, imm, recordName_);
in GetObject()
H
A
D
slowpath_lowering.cpp
2780
JSTaggedValue
unsharedCp
;
in LowerDefineFunc()
local
2782
unsharedCp
= compilationEnv_->FindConstpool(compilationEnv_->GetJSPandaFile(), 0);
in LowerDefineFunc()
2785
unsharedCp
= compilationEnv_->FindOrCreateUnsharedConstpool(methodOffset);
in LowerDefineFunc()
2787
auto obj = compilationEnv_->GetMethodFromCache(
unsharedCp
, acc_.GetConstantValue(methodId));
in LowerDefineFunc()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
H
A
D
program_object.cpp
102
JSTaggedValue
unsharedCp
= thread->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(constpool);
in GetStringFromCache()
local
103
taggedPool = ConstantPool::Cast(
unsharedCp
.GetTaggedObject());
in GetStringFromCache()
H
A
D
program_object.h
508
JSTaggedValue
unsharedCp
= thread->GetCurrentEcmaContext()->FindOrCreateUnsharedConstpool(constpool);
in GetMethodFromCache()
local
509
taggedPool = ConstantPool::Cast(
unsharedCp
.GetTaggedObject());
in GetMethodFromCache()
/arkcompiler/ets_runtime/ecmascript/stubs/
H
A
D
runtime_stubs-inl.h
2303
JSTaggedValue
unsharedCp
= thread->GetCurrentEcmaContext()->FindUnsharedConstpool(constpoolHandle.GetTaggedValue());
2304
if (!
unsharedCp
.IsHole()) {
2305
JSHandle<ConstantPool> unsharedCpHandle(thread,
unsharedCp
);
Completed in 20 milliseconds