Home
last modified time | relevance | path

Searched full:regular (Results 1 – 25 of 52) sorted by relevance

123

/arkcompiler/ets_runtime/ecmascript/mem/
Dmem.h65 // Regular objects will be allocated on regular regions and migrated on spaces.
66 // They will never be moved to huge object space. So we take half of a regular
67 // region as the border of regular objects.
Dmem_map_allocator.cpp27 MemMap MemMapAllocator::Allocate(size_t size, size_t alignment, bool regular, int prot) in Allocate() argument
35 if (regular) { in Allocate()
Dmem_map_allocator.h29 // Regular region with length of DEFAULT_REGION_SIZE(256kb)
93 // Non regular region with length of DEFAULT_REGION_SIZE(256kb) multiple
202 MemMap Allocate(size_t size, size_t alignment, bool regular, int prot);
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_graph_coloring.cpp33 ig->Reserve(ranges->regular.size() + ranges->physical.size()); in BuildIG()
43 for (auto current_interval : ranges->regular) { in BuildIG()
293 COMPILER_LOG(INFO, REGALLOC) << "Ranges reg " << general_ranges.regular.size() << " fp " in Allocate()
294 << fp_ranges.regular.size(); in Allocate()
301 if (!general_ranges.regular.empty()) { in Allocate()
313 if (!fp_ranges.regular.empty()) { in Allocate()
372 AddRange(interval, &ranges->regular); in InitWorkingRanges()
395 for (auto interval : ranges->regular) { in Presplit()
399 for (auto next : ranges->regular) { in Presplit()
424 AddRange(split, &ranges->regular); in Presplit()
Dreg_alloc_graph_coloring.h34 : regular(allocator->Adapter()), physical(allocator->Adapter()) in WorkingRanges()
38 InstructionsRanges regular; // NOLINT(misc-non-private-member-variables-in-classes) member
/arkcompiler/runtime_core/libpandabase/
DREADME.md77 - regular arguments
81 Regular arguments are typical non-positional arguments like ```--arg=1```
86 e.g: `--compiler-dump:folder=ir_dump,compact`. Sub-arguments follow the same rules as the regular a…
89 To access compound arguments from `C++`, regular convention should be used, for accessing sub-argum…
112 - `std::string GetRegularArgs()` - returns string with all regular arguments and their values
161 …t may not be a tail argument. Positional values verified the same way as regular values, differenc…
/arkcompiler/runtime_core/compiler/docs/
Daot_resolve_string.md11 During AOT compilation `LoadString` instruction could be either encoded as regular `ResolveString` …
16 …resolution attempt requires runtime call, so usage of regular `ResolveString` call reduces the ove…
32 `RuntimeStringAot` runtime call resolves the string as a regular `RuntimeString` call, but also doe…
Dmemory_coalescing_doc.md10 | Code | Regular | Optimized |
37 * Separate instructions that will represent coalesced memory accesses from regular accesses.
/arkcompiler/runtime_core/runtime/mem/
Dmem_stats.h76 * Number of allocated large and regular (size <= FREELIST_MAX_ALLOC_SIZE) objects for all time
81 * Number of freed large and regular (size <= FREELIST_MAX_ALLOC_SIZE) objects for all time
101 * Number of alive large and regular (size <= FREELIST_MAX_ALLOC_SIZE) objects now
/arkcompiler/runtime_core/docs/
Don-stack-replacement.md47 Both, OSR and regular compilation use the same hotness counter. First time, when counter is overflo…
48 whether method is already compiled or not. If not, we start compilation in regular mode. Otherwise,…
71 Codegen creates special OsrStackMap for each SaveStateOsr instruction. Difference from regular stac…
80 New opcode(OsrSaveState) has the same properties as regular SaveState, except that codegen handles …
Dirtoc.md37 Pseudo instructions are described like regular instructions in the `instructions.yaml` file, but in…
/arkcompiler/runtime_core/tests/verifier-tests/
Dinitobj-bad-03.pa22 initobj foo # initobj must call constuctor, not regular function
/arkcompiler/runtime_core/runtime/arch/amd64/
Dcommon_amd64.S20 // This trampoline solves this problem by just invoking the entrypoint via regular call.
/arkcompiler/runtime_core/compiler/tools/aotdump/
Daotdump.yaml35 description: A regular expression that specifies methods to dump
/arkcompiler/ets_runtime/test/moduletest/regexpcallthrow/
Dregexpcallthrow.js18 * @tc.desc:test throw in regular expressions
/arkcompiler/runtime_core/libark_defect_scan_aux/tests/unittest/
Dmodule_info_test.js24 // regular import
/arkcompiler/runtime_core/bytecode_optimizer/
Doptions.yaml43 description: A regular expression that specifies methods to optimize
/arkcompiler/runtime_core/tests/cts-generator/
DREADME.md158 1. Run all tests using regular build or using `tests` or `cts-geerator` targets.
164 3. If all test passed, congrats! Now you can enable tests for regular
/arkcompiler/ets_frontend/ts2panda/tests/expression/
Dregular.test.js27 describe("Regular Expression", function () {
/arkcompiler/runtime_core/runtime/tests/
Dinternal_allocator_test.cpp72 // Regular object sizes in TEST_F()
118 // Regular object size in TEST_F()
/arkcompiler/ets_frontend/ts2panda/scripts/
DdiagnosticMessages.json182 "Unterminated regular expression literal.": {
535 "Incorrect regular expression": {
539 "Invalid regular expression: '{0}': Invalid escape": {
567 "Invalid regular expression flag '{0}'": {
/arkcompiler/ets_runtime/
DREADME.md32 │ ├─ regexp # Regular expression engine module
/arkcompiler/runtime_core/compiler/optimizer/code_generator/
Dframe_info.h119 // 'Native' means just a regular prologue, that is used for native functions.
/arkcompiler/runtime_core/runtime/mem/gc/static/
Dgc_marker_static-inl.h104 … // Handle Class handles static fields only, so we need to Handle regular fields explicitly too in MarkInstance()
/arkcompiler/runtime_core/runtime/mem/gc/g1/
Dg1-allocator.h99 * Collect non regular regions (i.e. remove dead objects from Humongous and NonMovable regions

123