Home
last modified time | relevance | path

Searched full:which (Results 1 – 25 of 1036) sorted by relevance

12345678910>>...42

/arkcompiler/ets_frontend/test/scripts/
Dreadme.md5 2. Run xts test which in auto_xts_test
6 3. Run sdk_test which in sdk_test
7 4. Run performance test which in performance_test
8 5. Run spider script which in get commit log
/arkcompiler/runtime_core/static_core/runtime/mem/gc/heap-space-misc/
Dcrossing_map.h29 // If enabled - we will manage elements, which cross map borders.
40 // which will be dynamically allocated/deallocated via internal allocator:
58 // This element (or map) can be used to get the first object address, which starts inside this page…
59 // or an object address, which crosses the borders of this page.
65 * @param start_addr - first bit of the memory which must be covered by the Crossing Map.
66 * @param size - size of the memory which must be covered by the Crossing Map.
98 * @brief Find and return the first object, which starts in an interval inclusively
99 * or an object, which crosses the interval border.
101 * we find the first object, which crosses the border of this interval.
104 * @return Returns the first object which starts inside an interval,
[all …]
/arkcompiler/runtime_core/static_core/docs/
Dimport-export.md19 …dments, which allow other implementation approaches, and on the other hand, several hot fixes has …
41 It is ensured currently via the *ETSParser::ParseDefaultSources* method, which parse an internally …
50 Which paths included in this list are stored in a vector that can be retrieved via the *Helpers::St…
72 …parsing process of the package directive and is set with the module name, which is either the pack…
73 …- The declaration module is not handled now, which is a special kind of compilation units that con…
161 … a common abc from multiple abc files, which is useful for packages. This would allows to run runt…
162which currently creates a large etsstdlib.abc at runtime, ignoring that each lib element belongs t…
171 …ope is investigated, and so on. The searching lasts at the global scope - which is the end of the …
177 Aware of this, global scope has an extra **foreignBindings_** member that helps to know which varia…
226 …is a string literal which can be points to a module (separate module | package module) or a folder…
[all …]
Dtask_manager.md11 It is some limited by time task, which has these properties:
13 - for which VM instance (`static` or `dynamic`) this task is executed;
14 - which component is the owner of this task (`GC`, `JIT`, etc.)
21 WorkerThread is the thread which executing tasks. Each WorkerThread has two queues - one for the fo…
25 …er creates array of tasks in proportion based on the current context(i.e. which language currently…
31 It is a queue for tasks of the same "kind" or "components" (for example "JIT") which is fullfilled …
63 The thread which is responsible for Task execution.
Dcfi_directives.md7 `CFI` (**Call Frame Information**) is a subset of these debug symbols which is responsible for corr…
34 There are bridges which `hack` stack memory (setting `stack pointer` to other stack frame), i.e.:
38 These bridges return control flow to code which has not called them.
41 … going to return to previous frame. So we directly specify other frame in which we will return + s…
Drationale-for-bytecode.md47 In _stack-based_ approach, operands are implicitly encoded in the operation, which results in
60 In _register-based approach_, operands are explicitly encoded in the operation, which results in
79 more _dispatch overhead_. Which means that the stack-based bytecode is slower by nature.
99 Panda bytecode has a dedicated register called _accumulator_, which is addressed implicitly
129 which also saves us encoding space and improves performance
148 It easy to see that to address virtual registers 4 and 5 we need just 3 bits which allows to encode
156 This trick gives us just `1 + 0.5 + 0.5 = 2` bytes for a single instructions, which get us closer
178 (which is rare) and which is supposed to have only acc-reg form. Another good candidates for
205 and Python-style addition within a single instruction, which would eventually lead us to an
220 which do not distinguish between integers and pointers on many platforms). The key constraint is
Dcode_metainfo.md9 registers which are live during this call instruction. Since all virtual regisetrs should be saved …
10 we call the runtime, we can save information in which stack slot specific vreg is live.
51 Header is followed by data, which is a rows with fixed length. Row length is equal to sum of column…
118 | NATIVE_PC | Native address to which this stackmap corresponds |
119 | BYTECODE_PC | Bytecode address to which this stackmap corresponds |
133 | BYTECODE_PC | Bytecode address to which this inline info corresponds |
156 This is a Bitmap table, where column is a bit mask, that determines which CPU register holds a mana…
160 This is a Bitmap table, where column is a bit mask, that determines which stack slot holds a manage…
168 This is a Bitmap table, where column is a bit mask, that determines which virtual register is modif…
/arkcompiler/runtime_core/static_core/runtime/include/
Dmethod.h179 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in Method()
197 // store which should become visible acquire in Method()
371 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in GetCompiledEntryPoint()
378 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in GetCompiledEntryPoint()
386 // store which should become visible acquire in SetCompiledEntryPoint()
406 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in GetCompilationStatus()
419 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in SetCompilationStatus()
424 // which should become visible acquire in SetCompilationStatus()
430 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in AtomicSetCompilationStatus()
478 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in GetAccessFlags()
[all …]
/arkcompiler/runtime_core/libpandabase/mem/
Dbase_mem_stats.cpp65 …quire order reason: data race with allocated_ with dependecies on reads after the load which should in GetAllocated()
72 …quire order reason: data race with allocated_ with dependecies on reads after the load which should in GetFreed()
84 // which should become visible in GetAllocatedHeap()
98 // which should become visible in GetFreedHeap()
113 …quire order reason: data race with allocated_ with dependecies on reads after the load which should in GetFootprint()
118 …with acquire order reason: data race with allocated_ with dependecies on reads after the load which in GetFootprint()
122 …with acquire order reason: data race with allocated_ with dependecies on reads after the load which in GetFootprint()
125 …quire order reason: data race with allocated_ with dependecies on reads after the load which should in GetFootprint()
Dmem_pool.h76 * @param space_type - type of the space which arena allocated for
77 * @param allocator_type - type of the allocator which arena allocated for
105 * @param space_type - type of the space which pool allocated for
106 * @param allocator_type - type of the allocator which arena allocated for
128 * Get info about the allocator in which this address is used
138 * Get space type which this address used for
/arkcompiler/runtime_core/static_core/libpandabase/mem/
Dbase_mem_stats.cpp64 …quire order reason: data race with allocated_ with dependecies on reads after the load which should in GetAllocated()
71 …quire order reason: data race with allocated_ with dependecies on reads after the load which should in GetFreed()
83 // which should become visible in GetAllocatedHeap()
97 // which should become visible in GetFreedHeap()
112 …quire order reason: data race with allocated_ with dependecies on reads after the load which should in GetFootprint()
117 …with acquire order reason: data race with allocated_ with dependecies on reads after the load which in GetFootprint()
121 …with acquire order reason: data race with allocated_ with dependecies on reads after the load which in GetFootprint()
124 …quire order reason: data race with allocated_ with dependecies on reads after the load which should in GetFootprint()
/arkcompiler/runtime_core/docs/
Dcfi_directives.md7 `CFI` (**Call Frame Information**) is a subset of these debug symbols which is responsible for corr…
34 There are bridges which `hack` stack memory (setting `stack pointer` to other stack frame), i.e.:
38 These bridges return control flow to code which has not called them.
41 … going to return to previous frame. So we directly specify other frame in which we will return + s…
Drationale-for-bytecode.md47 In _stack-based_ approach, operands are implicitly encoded in the operation, which results in
60 In _register-based approach_, operands are explicitly encoded in the operation, which results in
79 more _dispatch overhead_. Which means that the stack-based bytecode is slower by nature.
99 Panda bytecode has a dedicated register called _accumulator_, which is addressed implicitly
129 which also saves us encoding space and improves performance
148 It easy to see that to address virtual registers 4 and 5 we need just 3 bits which allows to encode
156 This trick gives us just `1 + 0.5 + 0.5 = 2` bytes for a single instructions, which get us closer
178 (which is rare) and which is supposed to have only acc-reg form. Another good candidates for
205 and Python-style addition within a single instruction, which would eventually lead us to an
220 which do not distinguish between integers and pointers on many platforms). The key constraint is
Dcode_metainfo.md9 registers which are live during this call instruction. Since all virtual regisetrs should be saved …
10 we call the runtime, we can save information in which stack slot specific vreg is live.
51 Header is followed by data, which is a rows with fixed length. Row length is equal to sum of column…
118 | NATIVE_PC | Native address to which this stackmap corresponds |
119 | BYTECODE_PC | Bytecode address to which this stackmap corresponds |
133 | BYTECODE_PC | Bytecode address to which this inline info corresponds |
156 This is a Bitmap table, where column is a bit mask, that determines which CPU register holds a mana…
160 This is a Bitmap table, where column is a bit mask, that determines which stack slot holds a manage…
168 This is a Bitmap table, where column is a bit mask, that determines which virtual register is modif…
/arkcompiler/runtime_core/isa/
DREADME9 and tools, faster changes (which is important on early stages of development),
14 Directory with example template files which show how could one generate needed
19 API for quering parsed yaml data which could be used for template generation.
/arkcompiler/runtime_core/static_core/isa/
DREADME9 and tools, faster changes (which is important on early stages of development),
14 Directory with example template files which show how could one generate needed
19 API for quering parsed yaml data which could be used for template generation.
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dhash_base.h31 * @param key - a key which should be hashed
33 * @param seed - seed which is used to calculate hash
42 * @param key - a key which should be hashed
62 * @param seed - seed which is used to calculate hash
/arkcompiler/runtime_core/libpandabase/utils/
Dhash_base.h32 * @param key - a key which should be hashed
34 * @param seed - seed which is used to calculate hash
43 * @param key - a key which should be hashed
63 * @param seed - seed which is used to calculate hash
/arkcompiler/runtime_core/static_core/runtime/tests/intrusive-tests/
DREADME.md7 Each intrusive test contains a map from control points to the testing code which controls the seque…
11 - implementing synchronization points, which are source code modules with parameterized functions, …
23 - <INTRISIVE_TEST_NAME>, which represents index of this test (e.g., `CLASS_GET_BASE_INTRUSIVE_TEST`…
24 - <intrusive_test_name>, which is the name of a directory with this test (e.g., `class_get_base_int…
97 …race checker to see this data race by organizing a thread interleaving on which the data race can …
/arkcompiler/runtime_core/libziparchive/
Dzip_archive.h159 …* Add a new file filename(resident in memory pbuf which has size of size |buf_size|) to the archiv…
160 …* append takes value from APPEND_STATUS_CREATE(which will create the archive zipname for first tim…
161 * APPEND_STATUS_ADDINZIP(which will append filename into exsisted zip archive zipname).
162 …* level takes value from Z_BEST_COMPRESSION(which will deflate the pbuf with best compression effe…
163 * Z_NO_COMPRESSION(which will store the pbuf into zipname without compression).
/arkcompiler/runtime_core/static_core/compiler/docs/
Dlicm_conditions_doc.md7 Conditions which have been hoisted out of a loop are executed less often, providing a speedup
15 Condition chain is graph which looks like
30 Each basic block in the chain has S0 successor which is called `multiple_predecessor_successor' (al…
31 Only last basic block in chain (B) has S1 successor which is called `single_predecessor_successor`.
32 Both S0 and S1 successors can have predeccessors which are not part of the chain.
34 …, skipping irreducible and OSR loops. In each loop it finds condition chains, which can be hoisted:
Dif_conversion_doc.md34 `JBB`(Join BB) -- true or false successor of `BB`, which will be joined to BB
35 `PBB`(Phi BB) -- false or true successor of `BB`, which contain PHI instruction for BB and JBB
48 `JBB`(Join BB), `JBB 2` -- true and false successors of BB, which will be joined to `BB `
49 `PBB`(Phi BB) -- the successor of `JBB` and `JBB 2`, which contain PHI instruction for `JBB` and `J…
59 6. The number of Phi instruction in `PBB`, which have different inputs from corresponding predecess…
/arkcompiler/runtime_core/static_core/libziparchive/
Dzip_archive.h163 …* Add a new file filename(resident in memory pbuf which has size of size |buf_size|) to the archiv…
164 …* append takes value from APPEND_STATUS_CREATE(which will create the archive zipname for first tim…
165 * APPEND_STATUS_ADDINZIP(which will append filename into exsisted zip archive zipname).
166 …* level takes value from Z_BEST_COMPRESSION(which will deflate the pbuf with best compression effe…
167 * Z_NO_COMPRESSION(which will store the pbuf into zipname without compression).
/arkcompiler/ets_frontend/es2panda/test/patch/11/hotfix/hotfix-throwerror/add-dup-name-function/
Dbase_mod.js16 // Test scenario: add function which has same name as exits functions, es2abc can specify and throw…
20 function B() { // add function B, which has a duplicate name
/arkcompiler/ets_frontend/es2panda/test/patch/11/coldfix/coldfix-noerror/add-dup-name-function/
Dbase_mod.js16 // Test scenario: add function which has same name as exits functions, es2abc can support it.
20 function B() { // add function B, which has a duplicate name

12345678910>>...42