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:DEAD
(Results
1 - 11
of
11
) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/checker/ets/
H
A
D
baseAnalyzer.h
32
enum class LivenessStatus {
DEAD
, ALIVE };
member in ark::es2panda::ark::es2panda::checker::LivenessStatus
80
return value ? LivenessStatus::ALIVE : LivenessStatus::
DEAD
;
in From()
H
A
D
aliveAnalyzer.cpp
180
if (node != nullptr && node->IsClassStaticBlock() && status_ == LivenessStatus::
DEAD
) {
in AnalyzeDef()
191
if (status_ == LivenessStatus::
DEAD
) {
in AnalyzeStat()
442
if (status_ != LivenessStatus::
DEAD
) {
in AnalyzeTry()
458
if (status_ == LivenessStatus::
DEAD
) {
in AnalyzeTry()
465
status_ = isAlive ? LivenessStatus::ALIVE : LivenessStatus::
DEAD
;
in AnalyzeTry()
H
A
D
aliveAnalyzer.h
44
status_ = LivenessStatus::
DEAD
;
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
combined_pass_visitor.cpp
67
ASSERT(acc_.GetDependCount(gate) == 1 || acc_.GetOpCode(replacement) == OpCode::
DEAD
); // 1: one dep
in ReplaceGate()
72
ASSERT(acc_.GetStateCount(gate) == 1 || acc_.GetOpCode(replacement) == OpCode::
DEAD
); // 1: one state
in ReplaceGate()
88
if (acc_.GetOpCode(replacement) == OpCode::
DEAD
) {
in ReplaceGate()
H
A
D
graph_linearizer.h
81
stateKind_ = StateKind::
DEAD
;
in SetDead()
86
return stateKind_ == StateKind::
DEAD
;
in IsDead()
225
DEAD
enumerator
H
A
D
gate.cpp
248
if (opcode != OpCode::NOP && opcode != OpCode::
DEAD
) {
in GetValueInAndOut()
365
if (GetOpCode() == OpCode::NOP || GetOpCode() == OpCode::
DEAD
) {
in CheckNOP()
799
ASSERT(opcode != OpCode::NOP && opcode != OpCode::
DEAD
);
in DumpHeader()
818
ASSERT(opcode != OpCode::NOP && opcode != OpCode::
DEAD
);
in DumpInputs()
849
ASSERT(opcode != OpCode::NOP && opcode != OpCode::
DEAD
);
in DumpOutputs()
877
if (opcode == OpCode::NOP || opcode == OpCode::
DEAD
) {
in ToString()
896
if (opcode != OpCode::NOP && opcode != OpCode::
DEAD
) {
in ShortPrint()
H
A
D
share_gate_meta_data.cpp
197
return (opcode_ == OpCode::NOP || opcode_ == OpCode::
DEAD
);
in IsNop()
202
return opcode_ == OpCode::
DEAD
;
in IsDead()
H
A
D
graph_editor.cpp
68
case OpCode::
DEAD
:
in RemoveGate()
H
A
D
share_opcodes.h
37
V(Dead,
DEAD
, GateFlags::NONE_FLAG, 0, 0, 0) \
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/
H
A
D
llvm_ir_builder.cpp
230
OpCode::
DEAD
, OpCode::RETURN_LIST,
in InitializeHandlers()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/
H
A
D
litecg_ir_builder.cpp
876
OpCode::
DEAD
,
in InitializeHandlers()
Completed in 18 milliseconds