Searched full:loads (Results 1 – 25 of 77) sorted by relevance
1234
| /arkcompiler/toolchain/test/autotest/aw/implement_api/ |
| D | debugger_api.py | 66 response = json.loads(response) 72 response = json.loads(response) 85 response = json.loads(response) 106 CommonUtils.assert_equal(json.loads(response), expected_response) 111 response = json.loads(response) 117 response = json.loads(response) 125 CommonUtils.assert_equal(json.loads(response), expected_response) 129 CommonUtils.assert_equal(json.loads(response), expected_response) 134 CommonUtils.assert_equal(json.loads(response), {"id": message_id, "result": {}}) 140 response = json.loads(response) [all …]
|
| D | runtime_api.py | 46 … CommonUtils.assert_equal(json.loads(response), {"id": message_id, "result": {"protocol": []}}) 51 CommonUtils.assert_equal(json.loads(response), {"id": message_id, "result": {}}) 56 response = json.loads(response) 67 response = json.loads(response)
|
| D | heap_profiler_api.py | 47 CommonUtils.assert_equal(json.loads(response), {"id": message_id, "result": {}}) 67 CommonUtils.assert_equal(json.loads(response), {"id": message_id, "result": {}}) 80 CommonUtils.assert_equal(json.loads(response), {"id": message_id, "result": {}}) 85 CommonUtils.assert_equal(json.loads(response), {"id": message_id, "result": {}}) 90 response = json.loads(response)
|
| D | profiler_api.py | 46 CommonUtils.assert_equal(json.loads(response), {"id": message_id, "result": {}}) 51 response = json.loads(response) 69 CommonUtils.assert_equal(json.loads(response), {"id": message_id, "result": {}})
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/ |
| D | AbcFile.ets | 30 * Loads ABC file. 43 * Loads ABC file from memory. 63 * Loads class from ABC file.
|
| D | RuntimeLinker.ets | 39 * Loads class into this linker's context. 105 * Loads library from specified path.
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | lse.h | 30 * loads and store. It uses Alias Analysis to determine which memory 38 * 2) delete loads that attempt to load values that were previously loaded or 72 * - on the loop header we record all loads from preheader's heap. They are 83 * candidate is a store, we do nothing. If among aliased accesses only loads, 84 * we simply replace MUST_ALIASed loads with the corresponding candidate.
|
| D | code_sink.cpp | 56 * - Loads that may be aliased by following stores in a basic block 57 * - Loads if there is any presence of monitors in a function 206 // Do not sink loads across a critical edge there may be stores in in IsAcceptableTarget()
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/ |
| D | test_helpers.py | 80 obj = json.loads('{"x": "ok", "y": 5, "z": [3, 4]}') 94 obj = json.loads('{"n": 1, "m":2}') 96 obj = json.loads('{"n": null, "m":2}')
|
| /arkcompiler/runtime_core/libabckit/include/cpp/headers/ |
| D | dynamic_isa.h | 70 …* @brief Creates instruction with opcode LOAD_STRING. This instruction loads the string `string` i… 153 * @brief Creates instruction with opcode LDNAN. This instruction loads the `nan` into `acc`. 159 …* @brief Creates instruction with opcode LDINFINITY. This instruction loads the `infinity` into `a… 165 …* @brief Creates instruction with opcode LDUNDEFINED. This instruction loads the `undefined` into … 171 * @brief Creates instruction with opcode LDNULL. This instruction loads the `null` into `acc`. 177 …* @brief Creates instruction with opcode LDSYMBOL. This instruction loads the object `Symbol` in `… 183 …* @brief Creates instruction with opcode LDGLOBAL. This instruction loads the object `global` into… 189 * @brief Creates instruction with opcode LDTRUE. This instruction loads `true` into `acc`. 195 * @brief Creates instruction with opcode LDFALSE. This instruction loads `false` into `acc`. 201 * @brief Creates instruction with opcode LDHOLE. This instruction loads `hole` into `acc`. [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/compiler/docs/ |
| D | native_call_opt_doc.md | 24 - CompilerGetNativeMethodManagedClass - loads class pointer from the resolved method, converts runt… 25 - CompilerGetMethodNativePointer - loads native pointer from resolved method (this is an address wh… 26 - CompilerGetNativeApiEnv - loads native api environment from a coroutine
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/runner/ |
| D | environment.py | 81 Loads the local environment file .env located near the main.py 88 Loads the global environment file .urunner.env located at the user's home
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/runner/extensions/validators/astchecker/ |
| D | astchecker_validator.py | 61 obj = json.loads(json.dumps(obj)) 66 return errors, json.loads(actual_output) if actual_output else {}
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | lda.null.yaml | 31 description: Check lda.null loads null reference into accumulator.
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/ |
| D | lda.null.yaml | 31 description: Check lda.null loads null reference into accumulator.
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/srcdumper/ |
| D | test_srcdumper.py | 71 original_ast = json.loads(loading_json) 73 dumped_ast = json.loads(loading_json)
|
| /arkcompiler/ets_frontend/testTs/ |
| D | run_testTs.py | 53 skip_test = json.loads(sk_content) 184 out_txt = json.loads(out_do) 188 c = json.loads(out_list[i]) 220 i = json.loads(i.replace("'", '"').replace('\n', ''))
|
| D | config.py | 56 IMPORT_TEST = json.loads(content)
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/runner/sts_utils/ |
| D | test_parameters.py | 36 Loads all parameters for a directory
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/utils/ |
| D | test_parameters.py | 35 Loads all parameters for a directory
|
| /arkcompiler/runtime_core/docs/ |
| D | runtime-debug-api.md | 11 …cess. Debugger functionality is provided via shared library, that runtime loads when works in debu…
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | runtime-debug-api.md | 11 …cess. Debugger functionality is provided via shared library, that runtime loads when works in debu…
|
| /arkcompiler/runtime_core/libabckit/include/c/isa/ |
| D | isa_dynamic.h | 360 …* @brief Creates instruction with opcode LOAD_STRING. This instruction loads the string `str` into… 372 * @brief Creates instruction with opcode LDNAN. This instruction loads the `nan` into `acc`. 382 …* @brief Creates instruction with opcode LDINFINITY. This instruction loads the `infinity` into `a… 392 …* @brief Creates instruction with opcode LDUNDEFINED. This instruction loads the `undefined` into … 402 * @brief Creates instruction with opcode LDNULL. This instruction loads the `null` into `acc`. 412 …* @brief Creates instruction with opcode LDSYMBOL. This instruction loads the object `Symbol` in `… 422 …* @brief Creates instruction with opcode LDGLOBAL. This instruction loads the object `global` into… 432 * @brief Creates instruction with opcode LDTRUE. This instruction loads `true` into `acc`. 442 * @brief Creates instruction with opcode LDFALSE. This instruction loads `false` into `acc`. 452 * @brief Creates instruction with opcode LDHOLE. This instruction loads `hole` into `acc`. [all …]
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | memory_coalescing_doc.md | 46 … type of a single element, so there is an assumption that `LoadArrayPair` loads only multiple valu… 48 | Consecutive Loads | Coalesced Load | 147 ### Loads and Stores with immediate indices
|
| D | code_sink_doc.md | 57 * Loads cannot be sunk into blocks with more than one predecessors (because other predecessors migh… 123 // Do not sink loads across a critical edge there may be stores in other code paths.
|
1234