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:TypedUnOp
(Results
1 - 13
of
13
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
mcr_gate_meta_data.cpp
55
std::string GateMetaData::Str(
TypedUnOp
op)
in Str()
57
const std::map<
TypedUnOp
, const char *> strMap = {
in Str()
58
#define TYPED_UN_OP_NAME_MAP(OP) {
TypedUnOp
::OP, #OP },
in Str()
H
A
D
number_speculative_lowering.cpp
252
TypedUnOp
Op = acc_.GetTypedUnAccessor(gate).GetTypedUnOp();
in VisitTypedUnaryOp()
254
case
TypedUnOp
::TYPED_INC: {
in VisitTypedUnaryOp()
255
VisitNumberMonocular<
TypedUnOp
::TYPED_INC>(gate);
in VisitTypedUnaryOp()
258
case
TypedUnOp
::TYPED_DEC: {
in VisitTypedUnaryOp()
259
VisitNumberMonocular<
TypedUnOp
::TYPED_DEC>(gate);
in VisitTypedUnaryOp()
262
case
TypedUnOp
::TYPED_NEG: {
in VisitTypedUnaryOp()
263
VisitNumberMonocular<
TypedUnOp
::TYPED_NEG>(gate);
in VisitTypedUnaryOp()
266
case
TypedUnOp
::TYPED_ISFALSE: {
in VisitTypedUnaryOp()
270
case
TypedUnOp
::TYPED_ISTRUE: {
in VisitTypedUnaryOp()
274
case
TypedUnOp
in VisitTypedUnaryOp()
[all...]
H
A
D
number_speculative_lowering.h
68
template<
TypedUnOp
Op>
94
template<
TypedUnOp
Op>
96
template<
TypedUnOp
Op>
H
A
D
range_analysis.cpp
117
case
TypedUnOp
::TYPED_INC:
in VisitTypedUnaryOp()
120
case
TypedUnOp
::TYPED_DEC:
in VisitTypedUnaryOp()
123
case
TypedUnOp
::TYPED_NEG:
in VisitTypedUnaryOp()
126
case
TypedUnOp
::TYPED_NOT:
in VisitTypedUnaryOp()
364
case
TypedUnOp
::TYPED_INC:
in PrintRangeInfo()
367
case
TypedUnOp
::TYPED_DEC:
in PrintRangeInfo()
370
case
TypedUnOp
::TYPED_NEG:
in PrintRangeInfo()
H
A
D
mcr_gate_meta_data.h
116
enum class
TypedUnOp
: uint8_t {
class
250
TypedUnOp
GetTypedUnOp() const
in GetTypedUnOp()
255
static uint64_t ToValue(ParamType paramType,
TypedUnOp
unaryOp)
in ToValue()
262
using TypedUnOpBits = TypedValueBits::NextField<
TypedUnOp
, OPRAND_TYPE_BITS>;
H
A
D
typed_bytecode_lowering.h
113
template<
TypedUnOp
Op>
220
template<
TypedUnOp
Op>
H
A
D
array_bounds_check_elimination.cpp
263
if (op ==
TypedUnOp
::TYPED_INC) {
in DoUnaryArithmeticOp()
265
} else if (op ==
TypedUnOp
::TYPED_DEC) {
in DoUnaryArithmeticOp()
316
case
TypedUnOp
::TYPED_INC: {
in DoPhi()
320
case
TypedUnOp
::TYPED_DEC: {
in DoPhi()
414
if (op ==
TypedUnOp
::TYPED_INC) {
in GetInstrAndConstValueFromUnaryOp()
417
} else if (op ==
TypedUnOp
::TYPED_DEC) {
in GetInstrAndConstValueFromUnaryOp()
H
A
D
type_info_accessors.cpp
85
TypedUnOp
unOp = accessor.GetTypedUnOp();
in IsTrustedBooleanType()
87
case
TypedUnOp
::TYPED_ISTRUE:
in IsTrustedBooleanType()
88
case
TypedUnOp
::TYPED_ISFALSE:
in IsTrustedBooleanType()
142
TypedUnOp
unOp = accessor.GetTypedUnOp();
in IsTrustedNumberType()
144
case
TypedUnOp
::TYPED_DEC:
in IsTrustedNumberType()
145
case
TypedUnOp
::TYPED_INC:
in IsTrustedNumberType()
146
case
TypedUnOp
::TYPED_NEG:
in IsTrustedNumberType()
147
case
TypedUnOp
::TYPED_NOT:
in IsTrustedNumberType()
H
A
D
share_gate_meta_data.h
40
enum class
TypedUnOp
: uint8_t;
189
static std::string Str(
TypedUnOp
op);
H
A
D
number_speculative_retype.cpp
657
TypedUnOp
Op = acc_.GetTypedUnAccessor(gate).GetTypedUnOp();
in VisitTypedUnaryOp()
659
case
TypedUnOp
::TYPED_INC:
in VisitTypedUnaryOp()
660
case
TypedUnOp
::TYPED_DEC:
in VisitTypedUnaryOp()
661
case
TypedUnOp
::TYPED_NEG:
in VisitTypedUnaryOp()
663
case
TypedUnOp
::TYPED_NOT:
in VisitTypedUnaryOp()
665
case
TypedUnOp
::TYPED_ISFALSE:
in VisitTypedUnaryOp()
666
case
TypedUnOp
::TYPED_ISTRUE:
in VisitTypedUnaryOp()
H
A
D
typed_bytecode_lowering.cpp
200
LowerTypedUnOp<
TypedUnOp
::TYPED_NEG>(gate);
in Lower()
203
LowerTypedUnOp<
TypedUnOp
::TYPED_NOT>(gate);
in Lower()
206
LowerTypedUnOp<
TypedUnOp
::TYPED_INC>(gate);
in Lower()
209
LowerTypedUnOp<
TypedUnOp
::TYPED_DEC>(gate);
in Lower()
371
template<
TypedUnOp
Op>
376
if (Op ==
TypedUnOp
::TYPED_NEG && tacc.GetParamType().IsIntOverflowType()) {
in LowerTypedUnOp()
432
template<
TypedUnOp
Op>
1478
result = builder_.TypedUnaryOp<
TypedUnOp
::TYPED_ISFALSE>(tacc.GetValue(), paramType);
in LowerTypedIsTrueOrFalse()
1480
result = builder_.TypedUnaryOp<
TypedUnOp
::TYPED_ISTRUE>(tacc.GetValue(), paramType);
in LowerTypedIsTrueOrFalse()
H
A
D
mcr_circuit_builder.h
591
template<
TypedUnOp
Op>
H
A
D
circuit_builder.h
575
template<
TypedUnOp
Op>
Completed in 23 milliseconds