├── .ci ├── LICENSE └── LICENSE.sha256 ├── .gitignore ├── AppScope ├── app.json5 └── resources │ └── base │ ├── element │ └── string.json │ └── media │ └── app_icon.png ├── LICENSE ├── README.md ├── code-linter.json5 ├── entry ├── .gitignore ├── build-profile.json5 ├── hvigorfile.ts ├── obfuscation-rules.txt ├── oh-package-lock.json5 ├── oh-package.json5 └── src │ ├── main │ ├── cpp │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── napi_init.cpp │ │ ├── switch_stack.S │ │ └── types │ │ │ └── libentry │ │ │ ├── Index.d.ts │ │ │ └── oh-package.json5 │ ├── ets │ │ ├── entryability │ │ │ └── EntryAbility.ets │ │ └── pages │ │ │ ├── Index.ets │ │ │ └── utils.ets │ ├── module.json5 │ └── resources │ │ ├── base │ │ ├── element │ │ │ ├── color.json │ │ │ └── string.json │ │ ├── media │ │ │ ├── background.png │ │ │ ├── foreground.png │ │ │ ├── layered_image.json │ │ │ └── startIcon.png │ │ └── profile │ │ │ └── main_pages.json │ │ └── rawfile │ │ └── .gitignore │ ├── mock │ └── mock-config.json5 │ ├── ohosTest │ ├── ets │ │ └── test │ │ │ ├── Ability.test.ets │ │ │ └── List.test.ets │ └── module.json5 │ └── test │ ├── List.test.ets │ └── LocalUnit.test.ets ├── generate.perl ├── hvigor └── hvigor-config.json5 ├── hvigorfile.ts ├── oh-package-lock.json5 ├── oh-package.json5 ├── push.sh ├── results ├── README.md ├── best │ ├── fp │ │ └── HBN-AL80-part-d03.csv │ └── int │ │ └── HBN-AL80-part-d03.csv ├── compute.py ├── full │ ├── fp │ │ ├── HAD-W32-part-d03-001.csv │ │ ├── HAD-W32-part-d43-001.csv │ │ ├── HBN-AL80-part-d03-001.csv │ │ ├── HBN-AL80-part-d03-002.csv │ │ ├── HBN-AL80-part-d03-003.csv │ │ └── HBN-AL80-part-d42-001.csv │ └── int │ │ ├── HAD-W32-part-d03-001.csv │ │ ├── HAD-W32-part-d03-002.csv │ │ ├── HAD-W32-part-d42-001.csv │ │ ├── HAD-W32-part-d43-001.csv │ │ ├── HBN-AL80-part-d03-001.csv │ │ ├── HBN-AL80-part-d03-002.csv │ │ ├── HBN-AL80-part-d03-003.csv │ │ └── HBN-AL80-part-d42-001.csv └── template.csv └── screenshot.jpg /.ci/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/.ci/LICENSE -------------------------------------------------------------------------------- /.ci/LICENSE.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/.ci/LICENSE.sha256 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/.gitignore -------------------------------------------------------------------------------- /AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/AppScope/app.json5 -------------------------------------------------------------------------------- /AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/AppScope/resources/base/element/string.json -------------------------------------------------------------------------------- /AppScope/resources/base/media/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/AppScope/resources/base/media/app_icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/README.md -------------------------------------------------------------------------------- /code-linter.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/code-linter.json5 -------------------------------------------------------------------------------- /entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/.gitignore -------------------------------------------------------------------------------- /entry/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/build-profile.json5 -------------------------------------------------------------------------------- /entry/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/hvigorfile.ts -------------------------------------------------------------------------------- /entry/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/obfuscation-rules.txt -------------------------------------------------------------------------------- /entry/oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/oh-package-lock.json5 -------------------------------------------------------------------------------- /entry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/oh-package.json5 -------------------------------------------------------------------------------- /entry/src/main/cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/cpp/.gitignore -------------------------------------------------------------------------------- /entry/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /entry/src/main/cpp/napi_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/cpp/napi_init.cpp -------------------------------------------------------------------------------- /entry/src/main/cpp/switch_stack.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/cpp/switch_stack.S -------------------------------------------------------------------------------- /entry/src/main/cpp/types/libentry/Index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/cpp/types/libentry/Index.d.ts -------------------------------------------------------------------------------- /entry/src/main/cpp/types/libentry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/cpp/types/libentry/oh-package.json5 -------------------------------------------------------------------------------- /entry/src/main/ets/entryability/EntryAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/ets/entryability/EntryAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/ets/pages/Index.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/utils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/ets/pages/utils.ets -------------------------------------------------------------------------------- /entry/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/module.json5 -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/resources/base/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/resources/base/media/background.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/resources/base/media/foreground.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/layered_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/resources/base/media/layered_image.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/startIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/resources/base/media/startIcon.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/main/resources/base/profile/main_pages.json -------------------------------------------------------------------------------- /entry/src/main/resources/rawfile/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip -------------------------------------------------------------------------------- /entry/src/mock/mock-config.json5: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/Ability.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/ohosTest/ets/test/Ability.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /entry/src/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/test/LocalUnit.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/entry/src/test/LocalUnit.test.ets -------------------------------------------------------------------------------- /generate.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/generate.perl -------------------------------------------------------------------------------- /hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/hvigor/hvigor-config.json5 -------------------------------------------------------------------------------- /hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/hvigorfile.ts -------------------------------------------------------------------------------- /oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/oh-package-lock.json5 -------------------------------------------------------------------------------- /oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/oh-package.json5 -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/push.sh -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/README.md -------------------------------------------------------------------------------- /results/best/fp/HBN-AL80-part-d03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/best/fp/HBN-AL80-part-d03.csv -------------------------------------------------------------------------------- /results/best/int/HBN-AL80-part-d03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/best/int/HBN-AL80-part-d03.csv -------------------------------------------------------------------------------- /results/compute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/compute.py -------------------------------------------------------------------------------- /results/full/fp/HAD-W32-part-d03-001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/fp/HAD-W32-part-d03-001.csv -------------------------------------------------------------------------------- /results/full/fp/HAD-W32-part-d43-001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/fp/HAD-W32-part-d43-001.csv -------------------------------------------------------------------------------- /results/full/fp/HBN-AL80-part-d03-001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/fp/HBN-AL80-part-d03-001.csv -------------------------------------------------------------------------------- /results/full/fp/HBN-AL80-part-d03-002.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/fp/HBN-AL80-part-d03-002.csv -------------------------------------------------------------------------------- /results/full/fp/HBN-AL80-part-d03-003.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/fp/HBN-AL80-part-d03-003.csv -------------------------------------------------------------------------------- /results/full/fp/HBN-AL80-part-d42-001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/fp/HBN-AL80-part-d42-001.csv -------------------------------------------------------------------------------- /results/full/int/HAD-W32-part-d03-001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/int/HAD-W32-part-d03-001.csv -------------------------------------------------------------------------------- /results/full/int/HAD-W32-part-d03-002.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/int/HAD-W32-part-d03-002.csv -------------------------------------------------------------------------------- /results/full/int/HAD-W32-part-d42-001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/int/HAD-W32-part-d42-001.csv -------------------------------------------------------------------------------- /results/full/int/HAD-W32-part-d43-001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/int/HAD-W32-part-d43-001.csv -------------------------------------------------------------------------------- /results/full/int/HBN-AL80-part-d03-001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/int/HBN-AL80-part-d03-001.csv -------------------------------------------------------------------------------- /results/full/int/HBN-AL80-part-d03-002.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/int/HBN-AL80-part-d03-002.csv -------------------------------------------------------------------------------- /results/full/int/HBN-AL80-part-d03-003.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/int/HBN-AL80-part-d03-003.csv -------------------------------------------------------------------------------- /results/full/int/HBN-AL80-part-d42-001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/full/int/HBN-AL80-part-d42-001.csv -------------------------------------------------------------------------------- /results/template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/results/template.csv -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiegec/SPECCPU2017Harmony/HEAD/screenshot.jpg --------------------------------------------------------------------------------