Home
last modified time | relevance | path

Searched refs:NAME (Results 1 - 25 of 52) sorted by relevance

123

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
H A Ddwarf.h22 #define DW_TAG(ID, NAME) DW_TAG_##NAME = (ID),
30 #define DW_AT(ID, NAME) DW_AT_##NAME = (ID),
37 #define DW_FORM(ID, NAME) DW_FORM_##NAME = (ID),
43 #define DW_OP(ID, NAME) DW_OP_##NAME = (ID),
50 #define DW_ATE(ID, NAME) DW_ATE_##NAME
[all...]
H A Dintrinsic_op.h21 #define DEF_MIR_INTRINSIC(STR, NAME, RETURN_TYPE, ...) INTRN_##STR,
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dgate_meta_data_builder.h63 #define DECLARE_CACHED_GATE_META(NAME, OP, R, S, D, V) \
64 GateMetaData cached##NAME##_ { OpCode::OP, R, S, D, V };
80 #define DECLARE_CACHED_GATE_META(NAME, OP, R, S, D, V) \
81 GateMetaData cached##NAME##1_{ OpCode::OP, R, S, D, ONE_VALUE }; \
82 GateMetaData cached##NAME##2_{ OpCode::OP, R, S, D, TWO_VALUE }; \
83 GateMetaData cached##NAME##3_{ OpCode::OP, R, S, D, THREE_VALUE }; \
84 GateMetaData cached##NAME##4_{ OpCode::OP, R, S, D, FOUR_VALUE }; \
85 GateMetaData cached##NAME##5_{ OpCode::OP, R, S, D, FIVE_VALUE };
89 #define DECLARE_CACHED_GATE_META(NAME, OP, R, S, D, V) \
90 OneParameterMetaData cached##NAME##
[all...]
H A Dpass_options.h45 #define OPTION_BUILDER(NAME, DEFAULT) \
46 Builder &Enable##NAME(bool value) { \
47 options_.enable##NAME##_ = value; \
51 #define OPTIONS(NAME, DEFAULT) bool \
52 enable##NAME##_{DEFAULT};
54 #define GET_OPTION(NAME, DEFAULT) \
55 bool Enable##NAME() const { return enable##NAME##_; }
57 #define SET_OPTION(NAME, DEFAULT) \
58 void Set##NAME(boo
[all...]
H A Dshare_gate_meta_data.cpp25 #define GATE_NAME_MAP(NAME, OP, R, S, D, V) { OpCode::OP, #OP }, in Str()
218 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \
219 const GateMetaData* GateMetaBuilder::NAME() \
221 return &cache_.cached##NAME##_; \
226 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \
227 const GateMetaData* GateMetaBuilder::NAME(bool value) \
235 #define DECLARE_GATE_META_WITH_BOOL_VALUE_IN(NAME, OP, R, S, D, V) \
236 const GateMetaData* GateMetaBuilder::NAME(size_t value, bool flag) \
244 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \
245 const GateMetaData* GateMetaBuilder::NAME(size_
[all...]
H A Dcircuit.h109 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \
110 const GateMetaData* NAME() \
112 return metaBuilder_.NAME(); \
117 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \
118 const GateMetaData* NAME(size_t value) \
120 return metaBuilder_.NAME(value); \
125 #define DECLARE_GATE_META(NAME, OP, R, S, D, V) \
126 const GateMetaData* NAME(uint64_t value) \
128 return metaBuilder_.NAME(value); \
133 #define DECLARE_GATE_META(NAME, O
[all...]
H A Dgate_matchers.h66 #define DECLARE_IS_GATE(NAME, OP, R, S, D, V) \
67 bool Is##NAME() const \
80 #define DECLARE_IS_INST(NAME, OPCODEID, MACHINETYPEID) \
81 bool Ism##NAME() const \
89 #define DECLARE_IS_INST(NAME, OPCODEID, CONDITION) \
90 bool Ism##NAME() const \
H A Dshare_opcodes.h143 #define DECLARE_GATE_OPCODE(NAME, OP, R, S, D, V) OP,
154 #define DECLARE_GATE_OPCODE(NAME) NAME,
/arkcompiler/runtime_core/static_core/libpandabase/os/
H A Ddfx_option.h27 #define DFX_OPTION_ELEM(D, NAME, STR) D(NAME, DfxOptionHandler::DfxOptionId::NAME##_ID, STR)
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/
H A DcheckerPhase.h24 static constexpr std::string_view NAME = "CheckerPhase"; member in ark::es2panda::compiler::CheckerPhase
27 return NAME;
/arkcompiler/runtime_core/compiler/
H A Dcompiler_logger.cpp36 #define DEF(COMPONENT, NAME) \ in SetComponents()
37 if (NAME == arg) { \ in SetComponents()
H A Dcompiler_options.h123 #define DEF(FEATURE, NAME) \ in ParseEnabledCpuFeatures()
124 if (NAME == arg) { \ in ParseEnabledCpuFeatures()
/arkcompiler/runtime_core/static_core/compiler/
H A Dcompiler_logger.cpp36 #define CONTINUE_DEF(COMPONENT, NAME) \ in SetComponents()
37 if ((NAME) == arg) { \ in SetComponents()
H A Dcompiler_options.h140 #define CONTINUE_DEF(FEATURE, NAME) \ in ParseEnabledCpuFeatures()
141 if ((NAME) == arg) { \ in ParseEnabledCpuFeatures()
/arkcompiler/runtime_core/static_core/libllvmbackend/
H A Dllvm_logger.cpp35 #define DEF(COMPONENT, NAME) \ in SetComponents()
36 if ((NAME) == arg) { \ in SetComponents()
/arkcompiler/runtime_core/static_core/verification/util/tests/
H A Denvironment.cpp46 static const auto NAME = in EnvOptions() local
49 static const auto EQ = NAME.OfString("="); // NOLINT(readability-static-accessed-through-instance) in EnvOptions()
94 static const auto KV_PAIR = ~WS >> NAME >> ~WS >> EQ >> ~WS >> VALUE >> ~WS >> DELIM |= KV_PAIR_HANDLER; in EnvOptions()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
H A Ddebugger_api.cpp51 SetNotFoundException(regNumber, coroutine, ark::ets::tooling::EtsTypeName<T>::NAME); in DebuggerAPIGetLocal()
60 SetRuntimeException(regNumber, coroutine, ark::ets::tooling::EtsTypeName<T>::NAME); in DebuggerAPIGetLocal()
133 SetNotFoundException(regNumber, coroutine, ark::ets::tooling::EtsTypeName<T>::NAME); in DebuggerAPISetLocal()
143 SetRuntimeException(regNumber, coroutine, ark::ets::tooling::EtsTypeName<T>::NAME); in DebuggerAPISetLocal()
/arkcompiler/runtime_core/static_core/runtime/tests/tooling/
H A Dapi_test.h95 #define DEFINE_EVENT_DEF(NAME) NAME, // CC-OFF(G.PRE.02) list generation.
103 #define DEFINE_EVENT_NAME(NAME) #NAME,
/arkcompiler/ets_runtime/ecmascript/
H A Dvtable.h27 NAME = 0, enumerator
33 ITEM_FIRST = NAME,
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
H A Dintrinsics.cpp25 #define DEF_MIR_INTRINSIC(X, NAME, RETURN_TYPE, ...) \
26 {(NAME), {(RETURN_TYPE), ##__VA_ARGS__}},
/arkcompiler/ets_frontend/ets2panda/checker/types/ets/
H A DetsDynamicType.h23 static constexpr auto NAME = 0; member in ark::es2panda::checker::ETSDynamicType
33 : ETSObjectType(allocator, std::get<NAME>(label), std::get<ASSEMBLER_NAME>(label), in ETSDynamicType()
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Dlogger.h40 #define LOG_COMPONENT_ELEM(D, NAME, STR) D(NAME, NAME, STR)
/arkcompiler/ets_runtime/ecmascript/ts_types/
H A Dglobal_ts_type_ref.h139 #define IS_TYPE_MODULE(NAME, MODULEID) \
140 inline bool Is##NAME##Module() const \
/arkcompiler/runtime_core/static_core/plugins/ets/doc/
H A Dbuild-docs.sh92 if [[ "${NAME}" != "Ubuntu" ]]; then
93 echo "WARNING: OS name is ${NAME}, but only Ubuntu is supported at the moment"
/arkcompiler/runtime_core/static_core/verification/config/parse/
H A Dconfig_parse.cpp103 static const auto NAME = P3::OfCharset("abcdefghijklmnopqrstuvwxyz_") |= NAME_HANDLER; in ParseConfig() local
115 static const auto SECTION_START = ~SP >> NAME >> ~SP >> LCURL >> ~SP >> NL; in ParseConfig()

Completed in 13 milliseconds

123