Home
last modified time | relevance | path

Searched refs:functions (Results 1 – 25 of 39) sorted by relevance

12

/arkcompiler/ets_frontend/es2panda/lexer/scripts/
Dkeywords.rb183 def collect_functions(functions, keys) argument
197 if functions.has_key?(func_name)
198 functions[func_name].add(key[offset + 1])
200 functions[func_name] = Set[key[offset + 1]]
214 functions = {}
216 collect_functions(functions, group.keys)
/arkcompiler/runtime_core/docs/diagrams/
Dstatic-analyzer-gc-func-list-gen.puactivity16 title Generation list of GC unsafe functions(can have GC happen during work)
20 :List of functions which can have GC inside;
27 ->Parse bodies of functions and get list of calling functions
28 and put them to list of all functions in project;
31 :List of all functions in project;
33 :Generate list of all functions which can call GC (GC FUNCTION LIST);
Dstatic-analyzer-warnings-generation.puactivity26 while (iterate over called functions)
/arkcompiler/ets_frontend/ts2panda/src/
Dpandasm.ts125 public functions: Array<Function>; property in Program
137 this.functions = [];
/arkcompiler/ets_frontend/es2panda/compiler/core/
DcompileQueue.cpp119 const auto &functions = context_->Binder()->Functions(); in Schedule() local
121 for (auto *function : functions) { in Schedule()
/arkcompiler/runtime_core/tests/checked/
Dmonitor.pa24 #! CHECKER Check monitors for inlined functions: lse isn't applied
51 #! CHECKER Check monitors for inlined functions: lse is applied
/arkcompiler/toolchain/tooling/test/
Dpt_returns_test.cpp191 auto functions = std::vector<std::unique_ptr<FunctionCoverage>>(); in HWTEST_F_L0() local
201 scriptCoverage->SetFunctions(std::move(functions)); in HWTEST_F_L0()
222 auto functions = std::vector<std::unique_ptr<FunctionCoverage>>(); in HWTEST_F_L0() local
232 scriptCoverage->SetFunctions(std::move(functions)); in HWTEST_F_L0()
/arkcompiler/runtime_core/docs/
Druntime-compiled_code-interaction.md17 Panda runtime as a set of functions aimed to execute managed code. The runtime consists of several …
20 The interpreter is a part of the runtime aimed to execute bytecode of managed functions. The interp…
21 …tness counter (see [Structure of `panda::Method`](#structure-of-pandamethod)) of managed functions.
28 Panda runtime and managed code must call functions according to the target calling convention.
98 * Call of managed functions or runtime entrypoints
307 …ombined from several managed functions (inlined functions). If the runtime needs to get informatio…
388 When compiled code is combined from several managed functions (inlined functions) `Deoptimize` reco…
Dassembly_format.md60 … primitive data types, aggregate data types, members of aggregate data types, functions and labels.
66 …efixed identifiers can be used for naming metadata annotations, aggregate data types and functions.
317 ### Static and virtual functions
494 - Assembler doesn't guarantee that functions, records and their fields will be located in binary fi…
499 # External records and functions:
533 … the assembler!) can be additionally processed during linkage to "bind" functions to records makin…
535 **Strings** and **arrays** can be thought as `external` record with some manipulating functions. Th…
559 * Specify `cref` and indirect calls to functions.
Don-stack-replacement.md130 # Call assembly functions to do OSR magic
/arkcompiler/runtime_core/cmake/
DDoxygen.cmake13 # Convenience functions for autogenerate documentation.
DClangTidy.cmake150 …"-fuchsia-default-arguments-calls" # disabled because we use functions with default arguments a lot
151 …"-fuchsia-default-arguments-declarations" # disabled because we use functions with default argumen…
155 "-readability-convert-member-functions-to-static" # TODO(knazarov) fix all occurences
DTesting.cmake13 # Convenience functions for testing Panda.
DCommonTesting.cmake13 # Convenience functions for testing Panda.
DDefinitions.cmake95 # Also calling conventions of functions that use global register variables are different:
97 # and epilog of such functions and gcc doesn't do it. So it's necessary to inline all
/arkcompiler/runtime_core/cmake/toolchain/
Dcommon.cmake13 # Common functions for add environment for compiling and cross-compiling.
/arkcompiler/ets_frontend/es2panda/lexer/templates/
Dkeywords.h.erb53 % functions.each do |key, prefixes|
/arkcompiler/runtime_core/docs/bc_verification/
Dabsint_checks.md47 ### (todo) Checks for usage of some functions/intrinsics
/arkcompiler/ets_runtime/
DREADME.md34 │ ├─ stubs # Runtime stub functions
/arkcompiler/ets_frontend/es2panda/test/
Dtest_tsc_ignore_list.txt36 es2panda/test/TypeScript/tests/cases/conformance/functions/functionWithUseStrictAndSimpleParameterL…
/arkcompiler/runtime_core/compiler/docs/
Dpaoc.md87 # Keys are functions' full names (i.e. `class::method`).
Dplt.md111 Resolver returns `index+1` value using `x16`, and don't call any other functions like `PLT CallStat…
202 …`MakeCallAot` function with properly calculated offset. Resolvers are placed after all functions in
/arkcompiler/runtime_core/
DREADME.md28 … # Cmake script that contains the toolchain files and common cmake functions used to define t…
DCMakeLists.txt191 # ----- Panda CMake functions --------------------------------------------------
/arkcompiler/toolchain/tooling/base/
Dpt_types.cpp2853 std::unique_ptr<PtJson> functions; in Create() local
2854 ret = params.GetArray("functions", &functions); in Create()
2856 int32_t len = functions->GetSize(); in Create()
2858 std::unique_ptr<PtJson> arrayEle = functions->Get(i); in Create()
2886 std::unique_ptr<PtJson> functions = PtJson::CreateArray(); in ToJson() local
2890 functions->Push(functions_[i]->ToJson()); in ToJson()
2892 result->Add("functions", functions); in ToJson()

12