| /arkcompiler/ets_frontend/legacy_bin/api8/ |
| D | package-lock.json | 9 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/code-frame/-/code-frame-7.15.8.tgz… string 17 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/compat-data/-/compat-data-7.15.0.t… string 22 "resolved": "https://repo.huaweicloud.com/repository/npm/@babel/core/-/core-7.15.8.tgz", string 44 … "resolved": "https://repo.huaweicloud.com/repository/npm/@babel/generator/-/generator-7.15.8.tgz", string 54 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/helper-annotate-as-pure/-/helper-a… string 62 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/helper-builder-binary-assignment-o… string 71 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/helper-compilation-targets/-/helpe… string 82 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/helper-create-class-features-plugi… string 95 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/helper-create-regexp-features-plug… string 104 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/helper-define-polyfill-provider/-/… string [all …]
|
| /arkcompiler/ets_frontend/ts2panda/ |
| D | package-lock.json | 9 …"resolved": "https://repo.huaweicloud.com/repository/npm/@ampproject/remapping/-/remapping-2.2.0.t… string 18 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/code-frame/-/code-frame-7.18.6.tgz… string 26 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/compat-data/-/compat-data-7.20.14.… string 31 "resolved": "https://repo.huaweicloud.com/repository/npm/@babel/core/-/core-7.20.12.tgz", string 53 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/generator/-/generator-7.20.14.tgz", string 63 …"resolved": "https://repo.huaweicloud.com/repository/npm/@jridgewell/gen-mapping/-/gen-mapping-0.3… string 75 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/helper-annotate-as-pure/-/helper-a… string 83 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/helper-builder-binary-assignment-o… string 92 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/helper-compilation-targets/-/helpe… string 104 …"resolved": "https://repo.huaweicloud.com/repository/npm/@babel/helper-create-class-features-plugi… string [all …]
|
| /arkcompiler/runtime_core/compiler/docs/ |
| D | aot_resolve_string.md | 22 The slow path performs `ResolveStringAot` runtime call that returns resolved string. 27 - `--aot-string-gc-roots-limit` controls how many time the same string should be resolved before it… 37 - if PLT-slot's value is already a pointer then the resolved string gets returned; 38 - if amount of already filled PLT-slots is above `--resolve-string-aot-threshold` then the resolved… 40 … is below `--aot-string-gc-roots-limit` then slot's value is incremented and the resolved string is 43 registered as GC-root in `AotManager` and the resolved string is returned.
|
| D | object_type_check_elimination_doc.md | 18 `IsInstance` is replaced by 1 if an object in input can be cast to the resolved type, else replaced… 23 If an object in input can't be cast to the resolved type `CheckCast` is replaced by deoptimize, els…
|
| D | plt.md | 116 …ut for `ark_aot` compiler) and `class Id` (`panda_file::File::EntityId`) which needs to be resolved 137 ; Shared resolved slow path for PLT resolver |
|
| D | cleanup_doc.md | 71 When removing EmptyBlocks when "special triangle" case is resolved conditional branch instruction (…
|
| /arkcompiler/ets_frontend/es2panda/ir/ts/ |
| D | tsIndexedAccessType.cpp | 41 checker::Type *resolved = GetType(checker); in Check() local 43 if (resolved) { in Check() 71 checker::Type *resolved = checker->GetPropertyTypeForIndexType(baseType, indexType); in GetType() local 73 checker->NodeCache().insert({this, resolved}); in GetType() 75 return resolved; in GetType()
|
| /arkcompiler/runtime_core/runtime/entrypoints/ |
| D | entrypoints.cpp | 467 // to many strings were saved to slots, so simply return the resolved string in ResolveStringAotEntrypoint() 701 …auto *resolved = obj->ClassAddr<Class>()->ResolveVirtualMethod(callee); // SUPPRESS_CSA(alpha.cor… in ResolveVirtualCallEntrypoint() local 702 ASSERT(resolved != nullptr); in ResolveVirtualCallEntrypoint() 704 return reinterpret_cast<uintptr_t>(resolved); in ResolveVirtualCallEntrypoint() 721 auto *resolved = obj_klass->ResolveVirtualMethod(method); in ResolveVirtualCallAotEntrypoint() local 722 ASSERT(resolved != nullptr); in ResolveVirtualCallAotEntrypoint() 730 return reinterpret_cast<uintptr_t>(resolved); in ResolveVirtualCallAotEntrypoint() 737 auto method_resolved = reinterpret_cast<int64_t>(resolved); in ResolveVirtualCallAotEntrypoint() 742 return reinterpret_cast<uintptr_t>(resolved); in ResolveVirtualCallAotEntrypoint() 749 return reinterpret_cast<uintptr_t>(resolved); in ResolveVirtualCallAotEntrypoint() [all …]
|
| /arkcompiler/runtime_core/compiler/optimizer/templates/ |
| D | instructions.rb | 99 resolved = TYPE_ALIASES[token] 100 if resolved 101 @types += resolved
|
| /arkcompiler/runtime_core/irtoc/lang/ |
| D | function.rb | 166 resolved = @unresolved[var_name.to_sym] 167 if resolved 168 raise "Unresolved variable is defined more than once: #{var_name}" unless resolved.inst.nil? 169 resolved.inst = inst 348 raise "Variable cannot be resolved: #{name}" if var.inst.nil?
|
| /arkcompiler/runtime_core/verification/jobs/ |
| D | cache.cpp | 764 …LOG(DEBUG, VERIFIER) << "CACHE: Descriptor " << descriptor << " resolved for language " << src_lan… in ResolveByDescriptor() 775 …: LOG(ERROR, VERIFIER) << "CACHE: Descriptor " << descriptor << " not resolved for language " << s… in ResolveByDescriptor() 783 auto resolved = ResolveByDescriptor(src_lang, descriptor, reportError); in ResolveAndLink() local 784 if (resolved.HasRef()) { in ResolveAndLink() 785 if (Link(resolved.AsPointer())) { in ResolveAndLink() 786 return *resolved; in ResolveAndLink() 866 bool resolved = ResolveAndLink(class_ref.source_lang, &(cachedField->type)); in Link() local 867 if (resolved) { in Link() 884 auto resolved = ResolveByDescriptor(src_lang, descriptor, reportError); in ResolveAndLink() local 885 if (resolved.HasRef()) { in ResolveAndLink() [all …]
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | isinstance.yaml | 51 …ve object type by specified id and if an object in accumulator is an instance of the resolved type, 106 description: Check that compiler fails when type_id cannot be resolved to object type 184 description: Check that compiler fails when type_id cannot be resolved to object type 328 …ve object type by specified id and if an object in accumulator is an instance of the resolved type, 453 …ve object type by specified id and if an object in accumulator is an instance of the resolved type, 621 …ve object type by specified id and if an object in accumulator is an instance of the resolved type, 726 …ve object type by specified id and if an object in accumulator is an instance of the resolved type,
|
| D | call.virt.short.negative.yaml | 46 Method, its class and the number of argument is resolved by given method_id in runtime 619 …Verifier should report that method is not accessible if method_id is not resolved to existing meth… 712 …Verifier should report that method is not accessible if method_id is not resolved to existing meth… 767 …Verifier should report that method is not accessible if method_id is not resolved to existing meth… 905 …Verifier should report that method is not accessible if method_id is not resolved to existing meth…
|
| D | call.virt.range.negative.yaml | 47 Method, its class and the number of argument is resolved by given method_id in runtime 956 …Verifier should report that method is not accessible if method_id is not resolved to existing meth… 1048 …Verifier should report that method is not accessible if method_id is not resolved to existing meth… 1113 …Verifier should report that method is not accessible if method_id is not resolved to existing meth… 1249 …Verifier should report that method is not accessible if method_id is not resolved to existing meth…
|
| D | call.virt.negative.yaml | 47 Method, its class and the number of argument is resolved by given method_id in runtime 974 …Verifier should report that method is not accessible if method_id is not resolved to existing meth… 1066 …Verifier should report that method is not accessible if method_id is not resolved to existing meth… 1118 …Verifier should report that method is not accessible if method_id is not resolved to existing meth… 1255 …Verifier should report that method is not accessible if method_id is not resolved to existing meth…
|
| /arkcompiler/runtime_core/runtime/include/ |
| D | class-inl.h | 512 Method *resolved = nullptr; in ResolveVirtualMethod() local 522 resolved = imtable[method_id]; in ResolveVirtualMethod() 523 if (resolved != nullptr) { in ResolveVirtualMethod() 524 return resolved; in ResolveVirtualMethod() 537 resolved = entry.GetMethods()[method->GetVTableIndex()]; in ResolveVirtualMethod() 543 resolved = vtable[method->GetVTableIndex()]; in ResolveVirtualMethod() 546 return resolved; in ResolveVirtualMethod()
|
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | expected.h | 108 // TODO(aemelenko): Delete next line when the issue 388 is resolved
|
| /arkcompiler/runtime_core/runtime/tooling/ |
| D | pt_hooks_wrapper.h | 160 // TODO(dtrubenkov): Add an assertion when 2125 issue is resolved in GarbageCollectionFinish() 175 // TODO(dtrubenkov): Add an assertion when 2125 issue is resolved in GarbageCollectionStart()
|
| /arkcompiler/runtime_core/docs/ |
| D | aot.md | 108 AOT-compiled code may use special PLT-slots to load resolved string without runtime calls.
|
| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| D | instructions.yaml | 475 …description: Calls initialization of the class that wasn't resolved during compilation before Load… 618 description: Calls static method that was not resolved during compilation 631 …description: Calls virtual method that was not resolved during compilation. First input is an obje… 652 the target function, which will be resolved during linking phase of the host compiler.
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
| D | try_catch_resolving.cpp | 64 // If resolved catch-handler exists, connect it in VisitTry()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | llvm_codegen.cpp | 306 …instSize = 4; // 4: default instruction step size while instruction can't be resolved or be consta… in PrintInstAndStep()
|
| /arkcompiler/ets_frontend/test262/ |
| D | es2021_tests.txt | 265 built-ins/Promise/allSettled/resolved-all-fulfilled.js 266 built-ins/Promise/allSettled/resolved-immed.js 267 built-ins/Promise/allSettled/resolved-all-mixed.js 268 built-ins/Promise/allSettled/resolved-all-rejected.js 269 built-ins/Promise/allSettled/resolved-sequence-extra-ticks.js 270 built-ins/Promise/allSettled/resolved-sequence-mixed.js 271 built-ins/Promise/allSettled/resolved-sequence-with-rejections.js 272 built-ins/Promise/allSettled/resolved-sequence.js 276 built-ins/Promise/allSettled/resolved-then-catch-finally.js 363 built-ins/Promise/any/resolved-sequence-extra-ticks.js [all …]
|
| /arkcompiler/runtime_core/verification/ |
| D | messages.yaml | 518 …message: Argument of method '${method_name}' was not resolved at caching stage (class was not foun…
|
| /arkcompiler/runtime_core/compiler/optimizer/ir_builder/ |
| D | ir_builder.cpp | 160 …m can be deleted during optimizations, unnecessary catch-phi moves will be resolved before Register in BuildInstructionsForBB()
|