/arkcompiler/ets_runtime/ecmascript/ |
D | runtime_call_id.h | 869 #define INTERPRETER_CALLER_ID(name) INTERPRETER_ID_##name, argument 870 #define RUNTIME_CALLER_ID(name) RUNTIME_ID_##name, argument 873 #define BUILTINS_API_ID(class, name) BUILTINS_ID_##class##_##name, argument 875 #define ABSTRACT_OPERATION_ID(class, name) ABSTRACT_ID_##class##_##name, argument 877 #define MEM_ALLOCATE_AND_GC_ID(name) MEM_ID##name, argument 883 #define DEF_RUNTIME_ID(name) RUNTIME_ID_##name, argument 891 #define INTERPRETER_TRACE(thread, name) \ argument 896 #define RUNTIME_TRACE(thread, name) \ argument 902 #define INTERPRETER_TRACE(thread, name) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usag… argument 905 #define RUNTIME_TRACE(thread, name) \ argument [all …]
|
D | message_string.cpp | 26 #define DEF_COMMON_MESSAGE(name, string) (string), argument 29 #define DEF_ASM_INTERPRETER_STUB_MESSAGE(name) #name, argument 34 #define DEF_BUILTINS_STUB_MESSAGE(name) "Builtins Stub "#name, argument 39 #define DEF_ISHEAPOBJECT_MESSAGE(name) #name"DebugCheck IR:line:%d", argument
|
/arkcompiler/ets_runtime/docs/ |
D | development-example-zh.md | 18 ### 运行前准备 45 ### 运行hello-world.js 84 ### 反汇编hello-world.abc 137 ### 运行前准备 153 ### 运行Test262 255 ### 测试运行示例
|
D | development-example.md | 10 ### Preparations 38 ### Running **hello-world.js** 75 ### Disassembling **hello-world.abc** 122 ### Preparations 138 ### Running Test262 243 ### Example
|
/arkcompiler/ets_frontend/es2panda/binder/ |
D | declaration.h | 122 explicit MultiDecl(ArenaAllocator *allocator, util::StringView name) in MultiDecl() 143 explicit EnumLiteralDecl(util::StringView name, bool isConst) : Decl(name), isConst_(isConst) {} in EnumLiteralDecl() 172 …explicit InterfaceDecl(ArenaAllocator *allocator, util::StringView name) : MultiDecl(allocator, na… in InterfaceDecl() 182 explicit FunctionDecl(ArenaAllocator *allocator, util::StringView name, const ir::AstNode *node) in FunctionDecl() 206 explicit PropertyDecl(util::StringView name) : Decl(name) {} in PropertyDecl() 216 explicit MethodDecl(util::StringView name) : Decl(name) {} in MethodDecl() 226 explicit EnumDecl(util::StringView name) : Decl(name) {} in EnumDecl() 236 explicit TypeAliasDecl(util::StringView name) : Decl(name) {} in TypeAliasDecl() 246 explicit NamespaceDecl(ArenaAllocator *allocator, util::StringView name) in NamespaceDecl() 259 explicit VarDecl(util::StringView name) : Decl(name) {} in VarDecl() [all …]
|
D | scope.h | 50 bool AddTSVariable(const util::StringView &name, Variable *variable) in AddTSVariable() 61 Variable *FindTSVariable(const util::StringView &name) const in FindTSVariable() 75 bool InTSBindings(const util::StringView &name) const in InTSBindings() 103 Variable *FindExportVariable(const util::StringView &name) const in FindExportVariable() 112 bool AddExportVariable(const util::StringView &name, Variable *var) in AddExportVariable() 117 bool InExportBindings(const util::StringView &name) const in InExportBindings() 124 Variable *FindExportTSVariable(const util::StringView &name) const in FindExportTSVariable() 130 bool AddExportTSVariable(const util::StringView &name, Variable *var) in AddExportTSVariable() 316 Variable *FindLocalTSVariable(const util::StringView &name) const in FindLocalTSVariable() 322 void AddLocalTSVariable(const util::StringView &name, Variable *var) in AddLocalTSVariable() [all …]
|
/arkcompiler/ets_runtime/test/moduletest/ldmodulensbyic/ |
D | animals.js | 16 name : "panda" property 20 name : "lion " property 24 name : "monkey" property
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | rt_call_signature.h | 26 #define DEF_RUNTIME_STUB_ID(name) ID_##name, argument 33 #define DEF_RUNTIME_STUB_ID(name) NOGCSTUB_ID_##name, argument 54 #define DEF_STUB_NAME(name) case ID_##name: { return std::string("RTStub_") + #name; } in GetRTName() argument 66 #define RTSTUB_ID(name) kungfu::RuntimeStubCSigns::ID_##name argument
|
D | rt_call_signature.cpp | 27 #define INIT_SIGNATURES(name) \ in Initialize() argument 40 #define INIT_ASM_SIGNATURES(name) \ in Initialize() argument 53 #define INIT_ASM_SIGNATURES(name) \ in GetASMCSigns() argument
|
D | assembler_module.cpp | 255 #define DECLARE_ASM_STUB_X64_GENERATE(name) \ argument 263 #define DECLARE_JSCALL_TRAMPOLINE_X64_GENERATE(name) \ argument 271 #define DECLARE_ASM_INTERPRETER_TRAMPOLINE_X64_GENERATE(name) \ argument 280 #define DECLARE_JSCALL_TRAMPOLINE_AARCH64_GENERATE(name) … argument 287 #define DECLARE_ASM_INTERPRETER_TRAMPOLINE_AARCH64_GENERATE(name) … argument
|
/arkcompiler/runtime_core/runtime/mem/gc/ |
D | gc_scope.cpp | 22 GCScope<TRACE_TIMING>::GCScope(std::string_view name, GC *gc) in GCScope() 27 GCScope<TRACE_TIMING_PHASE>::GCScope(std::string_view name, GC *gc, GCPhase phase) in GCScope() 34 GCScope<TIMING_PHASE>::GCScope(std::string_view name, GC *gc, GCPhase phase) in GCScope() 39 GCScope<TRACE_PHASE>::GCScope(std::string_view name, GC *gc, GCPhase phase) in GCScope()
|
/arkcompiler/runtime_core/compiler/optimizer/code_generator/ |
D | frame_info.h | 39 #define FRAME_INFO_GET_ATTR(name, var) \ argument 46 #define FRAME_INFO_SET_ATTR(name, var) \ argument 55 #define FRAME_INFO_ATTR(name, var) \ argument 60 #define FRAME_INFO_GET_FIELD(name, type) \ argument 67 #define FRAME_INFO_SET_FIELD(name, type) \ argument 74 #define FRAME_INFO_FIELD(name, type) \ argument
|
/arkcompiler/toolchain/tooling/backend/ |
D | debugger_executor.cpp | 39 Local<JSValueRef> name = runtimeCallInfo->GetCallArgRef(0); in DebuggerGetValue() local 70 Local<JSValueRef> name = runtimeCallInfo->GetCallArgRef(0); in DebuggerSetValue() local 88 …buggerExecutor::GetValue(const EcmaVM *vm, const FrameHandler *frameHandler, Local<StringRef> name) in GetValue() 112 Local<StringRef> name, Local<JSValueRef> value) in SetValue() 138 Local<StringRef> name) in GetLocalValue() 152 Local<StringRef> name, Local<JSValueRef> value) in SetLocalValue() 166 Local<StringRef> name) in GetLexicalValue() 180 Local<StringRef> name, Local<JSValueRef> value) in SetLexicalValue() 193 Local<JSValueRef> DebuggerExecutor::GetGlobalValue(const EcmaVM *vm, Local<StringRef> name) in GetGlobalValue() 198 bool DebuggerExecutor::SetGlobalValue(const EcmaVM *vm, Local<StringRef> name, Local<JSValueRef> va… in SetGlobalValue() [all …]
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/language/destructuring/ |
D | test-obj-expr-destructring-in-for.js | 1 let robotA = {name: "mower", skill: "mowing"}; property 5 for ({name: nameA} = robotA, i = 0; i < 1; i++) { property 9 for ({name: nameA = "name"} = robotA, i = 0; i < 1; i++) { property
|
/arkcompiler/runtime_core/assembler/ |
D | assembly-type.cpp | 40 panda_file::Type::TypeId Type::GetId(std::string_view name, bool ignore_primitive) in GetId() 44 #define PANDATYPE(name, inst_code) {std::string_view(name), panda_file::Type::TypeId::inst_code}, in GetId() argument 64 std::string name(component_name); in GetName() local 100 Type Type::FromName(std::string_view name, bool ignore_primitive) in FromName() 117 bool Type::IsStringType(const std::string &name, panda::panda_file::SourceLang lang) in IsStringType() 128 bool Type::IsPandaPrimitiveType(const std::string &name) in IsPandaPrimitiveType()
|
D | mangling.h | 33 inline std::string DeMangleName(const std::string &name) in DeMangleName() 42 inline std::string MangleFunctionName(const std::string &name, const std::vector<pandasm::Function:… in MangleFunctionName() 55 inline std::string MangleFieldName(const std::string &name, const pandasm::Type &type) in MangleFieldName() 63 inline std::string GetFunctionSignatureFromName(std::string name, in GetFunctionSignatureFromName()
|
/arkcompiler/ets_frontend/es2panda/test/ |
D | test262harness.js | 30 getGlobal(name) { argument 33 setGlobal(name, value) { argument 53 $262.getGlobal = function (name) { argument 56 $262.setGlobal = function (name, value) { argument
|
/arkcompiler/ets_frontend/ |
D | README.md | 55 ### Usage Guidelines<a name="section33105542504"></a> 57 #### Usage For Es2panda #### 210 #### Usage For Ts2panda ####
|
D | README_zh.md | 55 ### 使用说明<a name="section33105542504"></a> 57 #### es2panda使用方式 #### 210 #### ts2panda使用方式 ####
|
/arkcompiler/runtime_core/assembler/tests/ |
D | mangling_tests.cpp | 33 std::string name = "Asm.main"; in TEST() local 39 std::string name = "Asm.main:type1;type2;type3;type4;"; in TEST() local 51 std::string name = "Asm.main"; in TEST() local 57 std::string name = "Asm.main:(type1,type2,type3,type4)"; in TEST() local
|
/arkcompiler/runtime_core/ |
D | README_zh.md | 70 ### 使用说明<a name="section1312121216216"></a> 72 #### 汇编器工具概述 96 #### 反汇编器工具概述
|
D | README.md | 71 ### Usage Guidelines<a name="section1312121216216"></a> 73 #### Assembler ark\_asm 99 #### Disassembler ark\_disasm
|
/arkcompiler/runtime_core/verification/config/options/ |
D | method_options_config.h | 27 MethodOptions &NewOptions(const PandaString &name) in NewOptions() 31 const MethodOptions &GetOptions(const PandaString &name) const in GetOptions() 36 bool IsOptionsPresent(const PandaString &name) const in IsOptionsPresent()
|
/arkcompiler/runtime_core/scripts/ |
D | memusage.py | 38 def __init__(self, name): argument 57 def is_stack_region(name): argument 63 def is_heap_region(name, remote): argument 71 def is_file_path(name): argument 114 def get_mem_info(self, name, remote): argument
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
D | builtins_call_signature.cpp | 27 #define COMMON_INIT(name) \ in Initialize() argument 37 #define INIT_BUILTINS_METHOD(name) \ in Initialize() argument 44 #define INIT_BUILTINS_CONSTRUCTOR(name) \ in Initialize() argument
|