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:GetMark
(Results
1 - 17
of
17
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
combined_pass_visitor.cpp
52
if (acc_.
GetMark
(*it) == MarkCode::FINISHED) {
in LogicallyReplaceGate()
85
if (acc_.
GetMark
(*it) == MarkCode::FINISHED) {
in ReplaceGate()
146
if (acc_.
GetMark
(gate) == MarkCode::PREVISIT) {
in VisitGraph()
160
if (acc_.
GetMark
(gate) == MarkCode::FINISHED) {
in ReVisitGate()
210
if (acc_.
GetMark
(input) < MarkCode::VISITED) {
in VisitTopGate()
223
if (acc_.
GetMark
(input) < MarkCode::VISITED) {
in VisitTopGate()
245
if (acc_.
GetMark
(*it) == MarkCode::FINISHED) {
in VisitTopGate()
H
A
D
useless_gate_elimination.cpp
52
if (acc_.
GetMark
(in) != MarkCode::VISITED) {
in MarkGate()
71
if (acc_.
GetMark
(gate) != MarkCode::VISITED) {
in EliminateUnmarkedGate()
H
A
D
graph_linearizer.h
56
return acc.
GetMark
(state_) == MarkCode::NO_MARK;
in IsUnvisited()
61
return acc.
GetMark
(state_) == MarkCode::VISITED;
in IsVisited()
66
return acc.
GetMark
(state_) == MarkCode::FINISHED;
in IsFinished()
H
A
D
circuit.cpp
249
MarkCode Circuit::
GetMark
(GateRef gate) const
in GetMark()
function in panda::ecmascript::kungfu::Circuit
251
return LoadGatePtrConst(gate)->
GetMark
(GetTime());
in GetMark()
H
A
D
gate.h
204
[[nodiscard]] MarkCode
GetMark
(TimeStamp stamp) const;
H
A
D
gate_accessor.cpp
32
MarkCode GateAccessor::
GetMark
(GateRef gate) const
in GetMark()
function in panda::ecmascript::kungfu::GateAccessor
34
return circuit_->
GetMark
(gate);
in GetMark()
44
return
GetMark
(gate) == MarkCode::FINISHED;
in IsFinished()
49
return
GetMark
(gate) == MarkCode::VISITED;
in IsVisited()
54
return
GetMark
(gate) == MarkCode::PREVISIT;
in IsPrevisit()
59
return
GetMark
(gate) == MarkCode::NO_MARK;
in IsNotMarked()
H
A
D
graph_linearizer.cpp
92
if (acc_.
GetMark
(bTrue) == MarkCode::NO_MARK) {
in VisitStateGates()
96
if (acc_.
GetMark
(bFalse) == MarkCode::NO_MARK) {
in VisitStateGates()
103
if (acc_.IsStateIn(useIt) && acc_.IsState(*useIt) && acc_.
GetMark
(*useIt) == MarkCode::NO_MARK) {
in VisitStateGates()
H
A
D
verifier.cpp
276
if (circuit->
GetMark
(predGate) == MarkCode::NO_MARK) {
in RunFlowCyclesFind()
288
if (circuit->
GetMark
(predGate) == MarkCode::NO_MARK) {
in RunFlowCyclesFind()
H
A
D
circuit.h
286
MarkCode
GetMark
(GateRef gate) const;
H
A
D
state_split_linearizer.cpp
121
if (acc_.
GetMark
(gate) == MarkCode::NO_MARK &&
in DeleteUnusedGates()
H
A
D
gate_accessor.h
524
MarkCode
GetMark
(GateRef gate) const;
H
A
D
scheduler.cpp
68
acc.IsState(*useIt) && acc.
GetMark
(*useIt) == MarkCode::NO_MARK) {
in CalculateDominatorTree()
H
A
D
gate.cpp
1020
MarkCode Gate::
GetMark
(TimeStamp stamp) const
in GetMark()
function in panda::ecmascript::kungfu::Gate
/arkcompiler/runtime_core/static_core/runtime/include/
H
A
D
object_header.h
61
inline MarkWord
GetMark
() const
in GetMark()
function in ark::ObjectHeader
145
return
GetMark
().IsMarkedForGC();
in IsMarkedForGC()
153
SetMark(
GetMark
().SetMarkedForGC());
in SetMarkedForGC()
166
SetMark(
GetMark
().SetUnMarkedForGC());
in SetUnMarkedForGC()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
H
A
D
ets_object.h
196
return
GetMark
().GetState() == MarkWord::STATE_HASHED;
in IsHashed()
202
return
GetMark
().GetHash();
in GetInteropHash()
/arkcompiler/runtime_core/static_core/runtime/
H
A
D
object_header.cpp
97
auto mark =
GetMark
();
in GetHashCodeMTSingle()
/arkcompiler/runtime_core/static_core/runtime/mem/
H
A
D
object_helpers.cpp
344
MarkWord markWord = ref->
GetMark
(); // no need atomic because stw
in UpdateRefToMovedObject()
Completed in 18 milliseconds