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:HasObject
(Results
1 - 12
of
12
) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/tests/
H
A
D
frame_test.cpp
72
EXPECT_TRUE(frameHandler.GetVReg(0).
HasObject
());
in TEST_F()
74
EXPECT_FALSE(frameHandler.GetVReg(0).
HasObject
());
in TEST_F()
83
EXPECT_FALSE(frameHandler.GetVReg(0).
HasObject
());
in TEST_F()
87
EXPECT_FALSE(frameHandler.GetVReg(0).
HasObject
());
in TEST_F()
94
EXPECT_TRUE(frameHandler.GetVReg(0).
HasObject
());
in TEST_F()
H
A
D
interpreter_test.cpp
240
EXPECT_FALSE(frameHandler.GetVReg(0).
HasObject
());
in TEST_F()
243
EXPECT_FALSE(frameHandler.GetVReg(1).
HasObject
());
in TEST_F()
246
EXPECT_FALSE(frameHandler.GetVReg(2U).
HasObject
());
in TEST_F()
249
EXPECT_FALSE(frameHandler.GetVReg(3U).
HasObject
());
in TEST_F()
252
EXPECT_FALSE(frameHandler.GetVReg(4U).
HasObject
());
in TEST_F()
257
EXPECT_FALSE(frameHandler.GetVReg(V4_MAX).
HasObject
());
in TEST_F()
260
EXPECT_FALSE(frameHandler.GetVReg(V8_MAX).
HasObject
());
in TEST_F()
263
EXPECT_FALSE(frameHandler.GetVReg(V16_MAX).
HasObject
());
in TEST_F()
268
EXPECT_FALSE(frameHandler.GetVReg(V4_MAX - 2U).
HasObject
());
in TEST_F()
271
EXPECT_FALSE(frameHandler.GetVReg(V16_MAX - 2U).
HasObject
());
in TEST_F()
[all...]
H
A
D
stack_walker_test.cpp
324
if (reg.
HasObject
()) {
in FirstRunModifyVregs()
345
if (reg.
HasObject
()) {
in CheckVregs()
/arkcompiler/runtime_core/static_core/runtime/include/
H
A
D
stack_walker-inl.h
29
if (OBJECTS && !vreg.
HasObject
()) {
in InvokeCallback()
93
return !resReg.
HasObject
() || InvokeCallback<OBJECTS, WITH_REG_INFO>(func, regInfo, resReg);
in IterateRegsForCFrameStatic()
125
return !resReg.
HasObject
() || InvokeCallback<OBJECTS, WITH_REG_INFO>(func, regInfo, resReg);
in IterateRegsForCFrameDynamic()
139
if (OBJECTS && !vreg.
HasObject
()) {
in IterateRegsForIFrameInternal()
142
auto type = vreg.
HasObject
() ? OBJ_TYPE : PRIMITIVE_TYPE;
in IterateRegsForIFrameInternal()
150
auto type = acc.
HasObject
() ? OBJ_TYPE : PRIMITIVE_TYPE;
in IterateRegsForIFrameInternal()
H
A
D
value.h
87
if (vreg.
HasObject
()) {
in FromVReg()
H
A
D
method-inl.h
158
if (acc.
HasObject
()) {
in GetReturnValueFromAcc()
/arkcompiler/runtime_core/static_core/runtime/interpreter/
H
A
D
vregister.h
184
// They can help you to access the tag info, like `
HasObject
`, `SetPrimitive`
237
ALWAYS_INLINE inline bool
HasObject
() const
in HasObject()
function in ark::interpreter::VRegisterRef
239
return static_cast<const T *>(this)->
HasObject
();
in HasObject()
244
ASSERT(!other.
HasObject
());
in MovePrimitive()
250
ASSERT(other.
HasObject
());
in MoveReference()
359
if (
HasObject
()) {
in DumpVReg()
422
ALWAYS_INLINE inline bool
HasObject
() const
in HasObject()
function in ark::interpreter::StaticVRegisterRef
513
ALWAYS_INLINE inline bool
HasObject
() const
in HasObject()
function in ark::interpreter::DynamicVRegisterRef
521
ASSERT(!other.
HasObject
());
in MovePrimitive()
527
ASSERT(other.
HasObject
());
in MoveReference()
[all...]
H
A
D
acc_vregister-inl.h
112
ALWAYS_INLINE inline bool
HasObject
() const
in HasObject()
function in ark::interpreter::AccVRegisterTRef
123
ASSERT(!other.
HasObject
());
in MovePrimitive()
132
ASSERT(other.
HasObject
());
in MoveReference()
/arkcompiler/runtime_core/static_core/runtime/
H
A
D
stack_walker.cpp
326
ASSERT(vreg.
HasObject
() && "Trying to change object variable by scalar value");
in SetVRegValue()
329
ASSERT(!vreg.
HasObject
() && "Trying to change object variable by scalar value");
in SetVRegValue()
649
if (!vreg.
HasObject
()) {
in DebugSingleFrameVerify()
654
// Use Frame::VRegister::
HasObject
() to detect objects
in DebugSingleFrameVerify()
672
ASSERT(vreg.
HasObject
());
in DebugSingleFrameVerify()
676
ASSERT(vreg.
HasObject
());
in DebugSingleFrameVerify()
787
ASSERT(vreg.
HasObject
());
in Dump()
/arkcompiler/runtime_core/static_core/runtime/bridge/
H
A
D
bridge.cpp
58
return reg.
HasObject
() ? static_cast<int64_t>(bit_cast<uintptr_t>(reg.GetReference())) : reg.GetLong();
in GetVRegValue()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/
H
A
D
gc_root.cpp
182
if (UNLIKELY(vRegister.
HasObject
())) {
in VisitRegisterRoot()
/arkcompiler/runtime_core/static_core/runtime/tooling/
H
A
D
debugger.cpp
283
ASSERT(vreg.
HasObject
());
in GetThisVariableByFrame()
885
return reg.
HasObject
() ? reinterpret_cast<uintptr_t>(reg.GetReference()) : reg.GetLong();
in GetVRegValue()
894
return reg.
HasObject
() ? PtFrame::RegisterKind::REFERENCE : PtFrame::RegisterKind::PRIMITIVE;
in GetVRegKind()
Completed in 19 milliseconds