| /arkcompiler/runtime_core/docs/changelogs/ |
| D | 2024-04-08-file_format-changelog.md | 5 * Version 9 File format with this changes is incompatible with version <=12.0.0.0 of Runtime. 11 ## Version section in 2024-04-08-file_format-changelog 12 1. We update the version to 12.0.1.0 15 1. We delete ProtoItem's data from file format from version 12.0.1.0. 16 2. We invalid the [proto_idx] field by setting [0xffff] in Method from version 12.0.1.0. 19 1. We delete the corresponding [field_idx_off] offsets-array from file format from version 12.0.1.0. 20 …he [field_idx_size] & [field_idx_off] by setting [0xffffffff] in IndexHeader from version 12.0.1.0. 21 3. We delete the corresponding [proto_idx_off] offsets-array from file format from version 12.0.1.0. 22 …he [proto_idx_size] & [proto_idx_off] by setting [0xffffffff] in IndexHeader from version 12.0.1.0.
|
| D | 2024-08-29-isa&&file_format-changelog.md | 5 * Version 10 ## Version section in 2024-08-29-isa&&file_format-changelog 11 Bytecode version is updated from 12.0.6.0 to 13.0.0.0. 19 …& [literalarrays_idx_off] in header is set to an invalid value (0xffffffff) since version 13.0.0.0. 22 The corresponding [literalarrays_idx] offsets-array in file format is deleted since version 13.0.0.…
|
| D | 2024-05-24-isa-changelog.md | 5 * Version 8 ## Version section in 2024-05-24-isa-changelog 9 We update version from 12.0.2.0 to 12.0.3.0 12 …nstructions, the following two bytecode instructions are added as an improved version with ic slot:
|
| /arkcompiler/runtime_core/libabckit/src/mock/ |
| D | abckit_mock.h | 3 * Licensed under the Apache License, Version 2.0 (the "License"); 32 AbckitApi const *AbckitGetMockApiImpl(AbckitApiVersion version); 33 AbckitInspectApi const *AbckitGetMockInspectApiImpl(AbckitApiVersion version); 34 AbckitModifyApi const *AbckitGetMockModifyApiImpl(AbckitApiVersion version); 35 AbckitIsaApiDynamic const *AbckitGetMockIsaApiDynamicImpl(AbckitApiVersion version); 36 AbckitIsaApiStatic const *AbckitGetMockIsaApiStaticImpl(AbckitApiVersion version); 37 AbckitArktsInspectApi const *AbckitGetMockArktsInspectApiImpl(AbckitApiVersion version); 38 AbckitArktsModifyApi const *AbckitGetMockArktsModifyApiImpl(AbckitApiVersion version); 39 AbckitJsModifyApi const *AbckitGetMockJsModifyApiImpl(AbckitApiVersion version); 40 AbckitJsInspectApi const *AbckitGetMockJsInspectApiImpl(AbckitApiVersion version); [all …]
|
| /arkcompiler/ets_frontend/arkguard/ |
| D | package-lock.json | 3 "version": "1.1.3", string 8 "version": "0.8.1", string 17 "version": "3.1.1", string 23 "version": "1.4.15", string 28 "version": "0.3.9", string 38 "version": "1.0.9", string 44 "version": "1.0.11", string 50 "version": "1.0.3", string 56 "version": "1.0.4", string 62 "version": "4.3.11", string [all …]
|
| D | Version.md | 2 … and important bugfixes. This file will alse be packaged and you can see the version you are using. 4 ## Version 1.1.5 9 ## Version 1.1.4 14 ## Version 1.1.3
|
| /arkcompiler/runtime_core/static_core/scripts/llvm/ |
| D | README.md | 19 VERSION=<version string, which is included in build/install directory names>(default: "main") 20 PACKAGE_VERSION=<kit version>(default: $VERSION) # must match REQUIRED_LLVM_VERSION in libllvmbacke… 23 BUILD_X86_DEBUG=<debug version for x86_64 architecure>(default: false) 24 BUILD_X86_RELEASE=<release version for x86_64 architecure>(default: false) 25 BUILD_AARCH64_DEBUG=<debug version for arm64 architecure>(default: false) 26 BUILD_AARCH64_RELEASE=<release version for arm64 architecure>(default: false) 27 BUILD_OHOS_RELEASE=<release version for OHOS platform (OHOS SDK build)>(default: false) 28 BUILD_OHOS_RELEASE_GN=<release version for OHOS GN platform (GN build)>(default: false) 34 DO_TAR=<when install, also pack llvm-$VERSION-*-*.tar.xz archives for corresponding folders>(defaul… 44 OPTIMIZE_DEBUG=<compile debug version with -O2>(default: true) [all …]
|
| /arkcompiler/ets_runtime/ecmascript/jspandafile/tests/ |
| D | js_pandafile_snapshot_test.cpp | 3 * Licensed under the Apache License, Version 2.0 (the "License"); 39 …DataToFile(JSThread *thread, JSPandaFile *jsPandaFile, const CString &path, const CString &version) in WriteDataToFile() argument 41 return JSPandaFileSnapshot::WriteDataToFile(thread, jsPandaFile, path, version); in WriteDataToFile() 151 CString version = "version 205.0.1.120(SP20)"; in HWTEST_F_L0() local 155 ASSERT_TRUE(MockJSPandaFileSnapshot::WriteDataToFile(thread, serializePf.get(), path, version)); in HWTEST_F_L0() 160 ASSERT_TRUE(JSPandaFileSnapshot::ReadData(thread, deserializePf, path, version)); in HWTEST_F_L0() 180 CString version = "version 205.0.1.120(SP20)"; in HWTEST_F_L0() local 184 ASSERT_TRUE(MockJSPandaFileSnapshot::WriteDataToFile(thread, serializePf.get(), path, version)); in HWTEST_F_L0() 187 … ASSERT_FALSE(MockJSPandaFileSnapshot::WriteDataToFile(thread, serializePf.get(), path, version)); in HWTEST_F_L0() 195 CString version = "version 205.0.1.120(SP20)"; in HWTEST_F_L0() local [all …]
|
| /arkcompiler/ets_runtime/ecmascript/dfx/hprof/rawheap_translate/ |
| D | utils.h | 3 * Licensed under the Apache License, Version 2.0 (the "License"); 124 class Version { 126 Version(int major, int minor, int build) : major_(major), minor_(minor), build_(build) {} in Version() function 127 Version() = default; 128 ~Version() = default; 130 bool Parse(const std::string &version); 132 bool operator<(const Version &version) const 134 if (major_ > version.major_) { 138 if (major_ == version.major_ && minor_ > version.minor_) { 142 if (major_ == version.major_ && minor_ == version.minor_ && build_ >= version.build_) { [all …]
|
| /arkcompiler/ets_frontend/ets2panda/linter/stats_calculator/ |
| D | package-lock.json | 3 "version": "1.0.0", string 8 "version": "18.11.7", string 14 "version": "1.0.2", string 20 "version": "1.1.11", string 30 "version": "0.0.1", string 36 "version": "1.0.0", string 42 "version": "7.2.3", string 56 "version": "1.0.6", string 66 "version": "2.0.4", string 72 "version": "3.1.2", string [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/backend/ |
| D | setup.py | 5 # Licensed under the Apache License, Version 2.0 (the "License"); 26 def format_local(version): argument 27 """Format a local version""" 28 dist = version.distance or 0 29 loc = "dirty." if version.dirty else "" 30 return "" if dist == 0 and not version.dirty else f"+{loc}{version.node}"
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | file_header.h | 3 * Licensed under the Apache License, Version 2.0 (the "License"); 42 static uint32_t ToVersionNumber(const VersionType &version) in ToVersionNumber() argument 44 return ReverseBytes(bit_cast<uint32_t>(version)); in ToVersionNumber() 65 static std::optional<VersionType> strToVersion(const std::string& version) in strToVersion() argument 67 std::vector<std::string> versionNumber = StringHelper::SplitString(version, "."); in strToVersion() 102 LOG_ECMA(DEBUG) << "Magic:" << ConvToStr(magic_) << ", version:" << InternalGetVersion(); in VerifyVersion() 116 void SetVersion(VersionType version) in SetVersion() argument 118 version_ = version; in SetVersion() 129 LOG_HOST_TOOL_ERROR << fileDesc << " version error, expected version should be " in VerifyVersion() 142 bool InternalSetVersion(const std::string &version) in InternalSetVersion() argument [all …]
|
| /arkcompiler/ets_runtime/ecmascript/ohos/ |
| D | module_snapshot_interfaces.cpp | 3 * Licensed under the Apache License, Version 2.0 (the "License"); 32 CString version = OhosVersionInfoTools::GetRomVersion(); in Serialize() local 33 if (version.empty()) { in Serialize() 34 LOG_ECMA(ERROR) << "ModuleSnapshotInterface::Serialize rom version is empty"; in Serialize() 37 ModuleSnapshot::SerializeDataAndPostSavingJob(vm, path, version); in Serialize() 49 CString version = OhosVersionInfoTools::GetRomVersion(); in Deserialize() local 50 if (version.empty()) { in Deserialize() 51 LOG_ECMA(ERROR) << "ModuleSnapshotInterface::Serialize rom version is empty"; in Deserialize() 54 ModuleSnapshot::DeserializeData(vm, path, version); in Deserialize()
|
| /arkcompiler/ets_frontend/ets2panda/linter/cookbook_convertor/ |
| D | package-lock.json | 3 "version": "1.0.0", string 9 "version": "1.0.0", string 18 "version": "18.11.7", string 24 "version": "1.0.2", string 30 "version": "1.1.11", string 40 "version": "0.0.1", string 46 "version": "1.0.0", string 52 "version": "7.2.3", string 72 "version": "1.0.6", string 82 "version": "2.0.4", string [all …]
|
| /arkcompiler/runtime_core/static_core/libpandafile/templates/ |
| D | file_format_version.h.erb | 3 * Licensed under the Apache License, Version 2.0 (the "License"); 26 constexpr std::array<uint8_t, File::VERSION_SIZE> VERSION {<%= Panda::version.split('.').join(', ')… 29 std::string GetVersion(const std::array<uint8_t, File::VERSION_SIZE> &version); 35 ss << "Bytecode version " << GetVersion(VERSION) << '\n'; 36 ss << "Minimum supported bytecode version " << GetVersion(MIN_VERSION) << '\n';
|
| /arkcompiler/ets_frontend/ets2panda/linter/ |
| D | package-lock.json | 3 "version": "1.0.0", string 9 "version": "1.0.0", string 50 "version": "1.0.8", string 58 "version": "0.9.11-arkts1.2", string 69 "version": "0.5.7", string 78 "version": "0.46.0", string 92 "version": "4.7.0", string 110 "version": "3.4.3", string 122 "version": "4.12.1", string 131 "version": "1.2.9", string [all …]
|
| /arkcompiler/runtime_core/libpandafile/templates/ |
| D | file_format_version.h.erb | 3 * Licensed under the Apache License, Version 2.0 (the "License"); 34 constexpr std::array<uint8_t, File::VERSION_SIZE> version {<%= Panda::version.split('.').join(', ')… 42 std::string GetVersion(const std::array<uint8_t, File::VERSION_SIZE> &version); 51 ss << "Bytecode version " << GetVersion(version) << '\n'; 52 ss << "Minimum supported bytecode version " << GetVersion(minVersion) << '\n'; 58 % current_version_raw = Panda::version.split('.') 71 std::cout << std::setw(WIDTH) << "api" << std::setw(WIDTH) << "file version" << std::endl; 90 // if there is no corresponding api version, the default branch is current version. 91 return version;
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/bytecodehar/projects/bytecodehar-annotations-version-update/ |
| D | compileContextInfo.json | 11 "version": "", string 20 "version": "2.0.0", string 29 "version": "2.0.0", string 38 "version": "", string 47 "version": "", string
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/bytecodehar/projects/bytecodehar-version-update/ |
| D | compileContextInfo.json | 11 "version": "", string 20 "version": "2.0.0", string 29 "version": "2.0.0", string 38 "version": "", string 47 "version": "", string
|
| /arkcompiler/runtime_core/taihe/compiler/taihe/ |
| D | _version.py | 4 # Licensed under the Apache License, Version 2.0 (the "License"); 17 # don't change, don't track in version control 19 __all__ = ["__version__", "__version_tuple__", "version", "version_tuple"] 30 version: str 35 __version__ = version = '0.34.1'
|
| /arkcompiler/ets_frontend/ets2panda/test/options/ |
| D | CMakeLists.txt | 2 # Licensed under the Apache License, Version 2.0 (the "License"); 38 check_option_help_otput(version "--version" "Es2panda Version") 39 check_option_help_otput(version_build "--version" "Build date:") 40 check_option_help_otput(version_hash "--version" "Last commit hash")
|
| /arkcompiler/ets_runtime/ecmascript/module/tests/ |
| D | module_snapshot_test.cpp | 3 * Licensed under the Apache License, Version 2.0 (the "License"); 27 … static bool SerializeDataAndSaving(const EcmaVM *vm, const CString &path, const CString &version) in SerializeDataAndSaving() argument 39 return WriteDataToFile(thread, serializeData, filePath, version); in SerializeDataAndSaving() 41 …ol MockSerializeAndSavingBufferEmpty(const EcmaVM *vm, const CString &path, const CString &version) in MockSerializeAndSavingBufferEmpty() argument 50 return WriteDataToFile(thread, serializeData, filePath, version); in MockSerializeAndSavingBufferEmpty() 52 …kSerializeAndSavingHasIncompleteData(const EcmaVM *vm, const CString &path, const CString &version) in MockSerializeAndSavingHasIncompleteData() argument 61 return WriteDataToFile(thread, serializeData, filePath, version); in MockSerializeAndSavingHasIncompleteData() 378 CString version = "version 205.0.1.120(SP20)"; in CheckRestoreUpdatedBindingBeforeSerialize() local 392 ASSERT_TRUE(MockModuleSnapshot::SerializeDataAndSaving(vm, path, version)); in CheckRestoreUpdatedBindingBeforeSerialize() 402 ASSERT_TRUE(ModuleSnapshot::DeserializeData(vm, path, version)); in CheckRestoreUpdatedBindingBeforeSerialize() [all …]
|
| /arkcompiler/runtime_core/libabckit/tests/scenarios/parameter_check/dynamic/ |
| D | api_modifier.h | 3 * Licensed under the Apache License, Version 2.0 (the "License"); 31 …ApiModifier(enum AbckitApiVersion version, AbckitFile *file, const AbckitApi *impl, MethodInfo met… in ApiModifier() argument 34 implM_ = AbckitGetModifyApiImpl(version); in ApiModifier() 35 implI_ = AbckitGetInspectApiImpl(version); in ApiModifier() 36 implG_ = AbckitGetGraphApiImpl(version); in ApiModifier() 37 dynG_ = AbckitGetIsaApiDynamicImpl(version); in ApiModifier()
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/bytecodehar/projects/bytecodehar-dependency-resolve/ |
| D | compileContextInfo.json | 11 "version": "", string 20 "version": "2.0.0", string 29 "version": "2.0.0", string 38 "version": "2.0.0", string
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/bytecodehar/projects/bytecodehar-annotations-test-project/ |
| D | compileContextInfo.json | 11 "version": "", string 20 "version": "2.0.0", string 29 "version": "2.0.0", string 38 "version": "2.0.0", string
|