/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
H A D | countable_loop_parser.cpp | 27 * Phi(init, update) 29 * update(phi, 1) 32 * where `update` is Add or Sub instruction 49 if (!IsInstIncOrDec(loopInfo_.update)) { in Parse() 91 if (loopInfo_.index->GetInput(backEdgeIdx).GetInst() != loopInfo_.update) { in TryProcessBackEdge() 228 loopInfo_.update = loopExitCmp->GetInput(0).GetInst(); in SetUpdateAndTestInputs() 231 if (!loopInfo_.update->IsPhi()) { in SetUpdateAndTestInputs() 232 std::swap(loopInfo_.update, loopInfo_.test); in SetUpdateAndTestInputs() 234 ASSERT(loopInfo_.update->IsPhi()); in SetUpdateAndTestInputs() 235 if (loopInfo_.update in SetUpdateAndTestInputs() [all...] |
H A D | countable_loop_parser.h | 26 * for (init(a); if_imm(compare(a,test)); update(a)) {...} 32 Inst *update; member 35 ConditionCode normalizedCc; // cc between `update` and `test`
|
/arkcompiler/ets_frontend/ets2panda/util/ast-builders/ |
H A D | forUpdateStatementBuilder.h | 47 ForUpdateStatementBuilder &SetUpdate(Expression *update) in SetUpdate() argument 49 update_ = update; in SetUpdate()
|
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/ |
H A D | tupleLowering.cpp | 33 TupleUpdateConverter(checker::ETSChecker *const checker, ir::UpdateExpression *const update) in TupleUpdateConverter() argument 34 : checker_(checker), update_(update) in TupleUpdateConverter() 72 // Clone argument of update expression (conversion flag might be added to it, so we need to duplicate it to not in GenerateExpressions() 162 static ir::Expression *ConvertTupleUpdate(checker::ETSChecker *const checker, ir::UpdateExpression *const update) in ConvertTupleUpdate() argument 182 auto converter = TupleUpdateConverter {checker, update}; in ConvertTupleUpdate() 184 // Check if argument of update expression is tuple in ConvertTupleUpdate() 187 return update; in ConvertTupleUpdate() 203 sequenceExpr->SetParent(update->Parent()); in ConvertTupleUpdate() 281 // Check if node is an 'update expression', with a member expression as an argument (potentially tuple) in Perform()
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/ |
H A D | chapters.py | 128 filtered.update(self.filter_by_chapter(inc, base_folder, files, extension)) 131 filtered.update(Chapters.__filter_by_mask(mask, files, extension)) 135 excluded.update(self.filter_by_chapter(exc, base_folder, files, extension)) 138 excluded.update(Chapters.__filter_by_mask(mask, files, extension))
|
H A D | runner_base.py | 255 self.excluded_tests.update(excluded_tests) 262 self.ignored_tests.update(ignored_tests) 306 self.tests.update(valid_tests) 352 test_files.update(chapters.filter_by_chapter(chapter, base_folder, files, extension))
|
/arkcompiler/ets_frontend/ets2panda/ir/statements/ |
H A D | forUpdateStatement.h | 30 explicit ForUpdateStatement(AstNode *init, Expression *test, Expression *update, Statement *body) in ForUpdateStatement() argument 31 : LoopStatement(AstNodeType::FOR_UPDATE_STATEMENT), init_(init), test_(test), update_(update), body_(body) in ForUpdateStatement()
|
/arkcompiler/ets_frontend/es2panda/ir/statements/ |
H A D | forUpdateStatement.h | 40 explicit ForUpdateStatement(binder::LoopScope *scope, AstNode *init, Expression *test, Expression *update, in ForUpdateStatement() argument 45 update_(update), in ForUpdateStatement()
|
/arkcompiler/runtime_core/static_core/scripts/ |
H A D | install-deps-ubuntu | 35 apt-get update 44 apt-get update 173 apt-get update 255 update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1 392 apt-get update 425 apt-get update
|
H A D | install-deps-qemu | 96 apt-get update
|
H A D | install-third-party | 217 git submodule update --init "$submodule" 258 echo "$MSG_PREFIX If you need to update all, restart this script with --force-clone"
|
/arkcompiler/toolchain/build/prebuilts_download/ |
H A D | util.py | 79 sha256_obj.update(str(read_json_file(output_file)).encode()) 83 sha256_obj_new.update(str(content).encode())
|
/arkcompiler/ets_frontend/test/scripts/sdk_test/ |
H A D | run.py | 51 os.environ.update(old_env)
|
/arkcompiler/toolchain/build/templates/cxx/ |
H A D | external_deps_handler.py | 29 sha256_obj.update(str(read_json_file(output_file)).encode()) 33 sha256_obj_new.update(str(content).encode())
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | loop_idioms.cpp | 109 AllUsesWithinLoop(storeIdx, loop) && AllUsesWithinLoop(loopInfo.update, loop) && in IsLoopContainsArrayInitIdiom() 138 loopInfo.update->SetMarker(marker); in TryTransformArrayInitIdiom() 151 << "\n\tupdate: " << *loopInfo.update << "\n\tstep: " << loopInfo.constStep in TryTransformArrayInitIdiom()
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/ |
H A D | rich_logging.py | 292 console_options.update(force_terminal=True) 294 console_options.update(force_terminal=False) 296 console_options.update(force_terminal=console.is_terminal) 297 console_options.update(width=console.width) 303 console_options.update(width=width)
|
/arkcompiler/runtime_core/scripts/ |
H A D | gc_pause_stats.py | 115 trigger_info.update({ 122 stats.update({gc_type: trigger_info})
|
H A D | install-deps-qemu | 96 apt-get update
|
H A D | install-deps-ubuntu | 199 apt-get update
|
H A D | install-third-party | 135 git submodule update --init "$submodule" 152 echo "$MSG_PREFIX If you need to update, restart this script with --force-clone"
|
/arkcompiler/ets_frontend/test/scripts/utils/flash_image/ |
H A D | burn_image.py | 55 bar.update(size)
|
/arkcompiler/runtime_core/static_core/scripts/llvm/ |
H A D | build_llvm.sh | 67 qemu=$(which update-binfmts &> /dev/null && \ 68 (update-binfmts --display || true) | grep -q "qemu-aarch64" && \
|
/arkcompiler/ets_runtime/ecmascript/compiler/pgo_type/ |
H A D | pgo_type_manager.h | 60 void RecordHClass(ProfileType rootType, ProfileType childType, JSTaggedType hclass, bool update = false);
|
H A D | pgo_type_manager.cpp | 223 void PGOTypeManager::RecordHClass(ProfileType rootType, ProfileType childType, JSTaggedType hclass, bool update) in RecordHClass() argument 237 if (!update) { in RecordHClass()
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
H A D | doclet.py | 413 self.config.update({'disable_inlining': True}) 417 self.config.update({'aot_opts': self.aot_opts})
|