| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
| H A D | dwarf.h | 22 #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 D | intrinsic_op.h | 21 #define DEF_MIR_INTRINSIC(STR, NAME, RETURN_TYPE, ...) INTRN_##STR,
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| H A D | gate_meta_data_builder.h | 63 #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 D | pass_options.h | 45 #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 D | share_gate_meta_data.cpp | 25 #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 D | circuit.h | 109 #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 D | gate_matchers.h | 66 #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 D | share_opcodes.h | 143 #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 D | dfx_option.h | 27 #define DFX_OPTION_ELEM(D, NAME, STR) D(NAME, DfxOptionHandler::DfxOptionId::NAME##_ID, STR)
|
| /arkcompiler/ets_frontend/ets2panda/compiler/lowering/ |
| H A D | checkerPhase.h | 24 static constexpr std::string_view NAME = "CheckerPhase"; member in ark::es2panda::compiler::CheckerPhase 27 return NAME;
|
| /arkcompiler/runtime_core/compiler/ |
| H A D | compiler_logger.cpp | 36 #define DEF(COMPONENT, NAME) \ in SetComponents() 37 if (NAME == arg) { \ in SetComponents()
|
| H A D | compiler_options.h | 123 #define DEF(FEATURE, NAME) \ in ParseEnabledCpuFeatures() 124 if (NAME == arg) { \ in ParseEnabledCpuFeatures()
|
| /arkcompiler/runtime_core/static_core/compiler/ |
| H A D | compiler_logger.cpp | 36 #define CONTINUE_DEF(COMPONENT, NAME) \ in SetComponents() 37 if ((NAME) == arg) { \ in SetComponents()
|
| H A D | compiler_options.h | 140 #define CONTINUE_DEF(FEATURE, NAME) \ in ParseEnabledCpuFeatures() 141 if ((NAME) == arg) { \ in ParseEnabledCpuFeatures()
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/ |
| H A D | llvm_logger.cpp | 35 #define DEF(COMPONENT, NAME) \ in SetComponents() 36 if ((NAME) == arg) { \ in SetComponents()
|
| /arkcompiler/runtime_core/static_core/verification/util/tests/ |
| H A D | environment.cpp | 46 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 D | debugger_api.cpp | 51 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 D | api_test.h | 95 #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 D | vtable.h | 27 NAME = 0, enumerator 33 ITEM_FIRST = NAME,
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
| H A D | intrinsics.cpp | 25 #define DEF_MIR_INTRINSIC(X, NAME, RETURN_TYPE, ...) \ 26 {(NAME), {(RETURN_TYPE), ##__VA_ARGS__}},
|
| /arkcompiler/ets_frontend/ets2panda/checker/types/ets/ |
| H A D | etsDynamicType.h | 23 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 D | logger.h | 40 #define LOG_COMPONENT_ELEM(D, NAME, STR) D(NAME, NAME, STR)
|
| /arkcompiler/ets_runtime/ecmascript/ts_types/ |
| H A D | global_ts_type_ref.h | 139 #define IS_TYPE_MODULE(NAME, MODULEID) \ 140 inline bool Is##NAME##Module() const \
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/ |
| H A D | build-docs.sh | 92 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 D | config_parse.cpp | 103 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()
|