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:VerificationStage
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/include/
H
A
D
method.h
78
enum class
VerificationStage
{ NOT_VERIFIED = 0, VERIFIED_FAIL = 1, VERIFIED_OK = 2, LAST = VERIFIED_OK };
class in ark::Method
80
static_assert(MinimumBitsToStore(
VerificationStage
::LAST) <= VERIFICATION_STATUS_WIDTH);
837
inline static
VerificationStage
GetVerificationStage(uint32_t value)
in GetVerificationStage()
839
return static_cast<
VerificationStage
>((value & VERIFICATION_STATUS_MASK) >> VERIFICATION_STATUS_SHIFT);
in GetVerificationStage()
842
inline
VerificationStage
GetVerificationStage() const
in GetVerificationStage()
849
inline void SetVerificationStage(enum
VerificationStage
newStage)
in SetVerificationStage()
885
inline static uint32_t MakeVerificationStageValue(uint32_t value,
VerificationStage
newStage)
in MakeVerificationStageValue()
H
A
D
method-inl.h
523
if (!IsIntrinsic() && (GetVerificationStage() != Method::
VerificationStage
::VERIFIED_OK)) {
in TryVerify()
/arkcompiler/runtime_core/static_core/runtime/
H
A
D
method.cpp
473
return stage ==
VerificationStage
::VERIFIED_OK || stage ==
VerificationStage
::VERIFIED_FAIL;
in IsVerified()
481
SetVerificationStage(result ?
VerificationStage
::VERIFIED_OK :
VerificationStage
::VERIFIED_FAIL);
in SetVerified()
497
SetVerificationStage(
VerificationStage
::VERIFIED_OK);
in Verify()
H
A
D
compiler.h
289
methodPtr->GetVerificationStage() != Method::
VerificationStage
::VERIFIED_OK) {
/arkcompiler/runtime_core/static_core/verification/
H
A
D
public.cpp
135
using VStage = Method::
VerificationStage
;
in CheckBeforeVerification()
183
using VStage = Method::
VerificationStage
;
in Verify()
Completed in 6 milliseconds