Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Improve ecma_string_get_chars related code#5199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
lygstate wants to merge1 commit intojerryscript-project:master
base:master
Choose a base branch
Loading
fromlygstate:ecma_string_get_chars_improve

Conversation

@lygstate
Copy link
Contributor

Introduce lit_utf8_string_t and use it to reduce heap allocation and improve performance

Mark ECMA_STRING_TO_UTF8_STRING/ECMA_STRING_TO_UTF8_STRING_AND_LENGTH do not use heap allocation

Now with lit_utf8_string_t, ECMA_STRING_TO_UTF8_STRING and ECMA_STRING_TO_UTF8_STRING_AND_LENGTH are simplified. The parameters passed to ECMA_STRING_TO_UTF8_STRING and ECMA_STRING_TO_UTF8_STRING_AND_LENGTH are reduced and easier to call

The function prototype of ecma_string_get_chars are simplified as:

lit_utf8_size_t ecma_string_get_chars (const ecma_string_t *string_p,
lit_utf8_string_t *string_out_p,
lit_utf8_byte_t *uint32_buff_p,
uint8_t *flags_p);

The macro prototype of ECMA_STRING_TO_UTF8_STRING and ECMA_STRING_TO_UTF8_STRING_AND_LENGTH are simplified as:

#define ECMA_STRING_TO_UTF8_STRING(ecma_str_ptr, /< ecma string pointer */
utf8_str) /
< [out] lit_utf8_string_t to get */ \

#define ECMA_STRING_TO_UTF8_STRING_AND_LENGTH(ecma_str_ptr, /< ecma string pointer */
utf8_str) /
< [out] lit_utf8_string_t to get */ \

Now the parameters are reduced. Aslo the calling to ecma_string_get_chars are largely reduced, in most case, ECMA_STRING_TO_UTF8_STRING/ECMA_STRING_TO_UTF8_STRING_AND_LENGTH is enough.

Because the heap allocation are reduced, the performance should be improved. And in most case, we only use ECMA_STRING_TO_UTF8_STRING, only when the length is needed, the ECMA_STRING_TO_UTF8_STRING_AND_LENGTH is called, ECMA_STRING_TO_UTF8_STRING_AND_LENGTH needs to calculate the length that's very slow.

ECMA_FINALIZE_UTF8_STRING is removed, if we have heap allocation situation, use ecma_string_get_chars instead and free it manually

JerryScript-DCO-1.0-Signed-off-by: Yonggang Luoluoyonggang@gmail.com

Introduce lit_utf8_string_t and use it to reduce heap allocation and improve performanceMark ECMA_STRING_TO_UTF8_STRING/ECMA_STRING_TO_UTF8_STRING_AND_LENGTH do not use heap allocationNow with lit_utf8_string_t, ECMA_STRING_TO_UTF8_STRING and ECMA_STRING_TO_UTF8_STRING_AND_LENGTH are simplified.The parameters passed to ECMA_STRING_TO_UTF8_STRING  and ECMA_STRING_TO_UTF8_STRING_AND_LENGTH are reduced and easier to callThe function prototype of ecma_string_get_chars are simplified as:lit_utf8_size_t ecma_string_get_chars (const ecma_string_t *string_p,                                       lit_utf8_string_t *string_out_p,                                       lit_utf8_byte_t *uint32_buff_p,                                       uint8_t *flags_p);The macro prototype of ECMA_STRING_TO_UTF8_STRING and ECMA_STRING_TO_UTF8_STRING_AND_LENGTH are simplified as:#define ECMA_STRING_TO_UTF8_STRING(ecma_str_ptr, /**< ecma string pointer */                           \                                   utf8_str) /**< [out] lit_utf8_string_t to get */                    \#define ECMA_STRING_TO_UTF8_STRING_AND_LENGTH(ecma_str_ptr, /**< ecma string pointer */           \                                              utf8_str) /**< [out] lit_utf8_string_t to get */    \Now the parameters are reduced. Aslo the calling to ecma_string_get_charsare largely reduced, in most case, ECMA_STRING_TO_UTF8_STRING/ECMA_STRING_TO_UTF8_STRING_AND_LENGTH is enough.Because the heap allocation are reduced, the performance should be improved.And in most case, we only use ECMA_STRING_TO_UTF8_STRING, only when the length is needed, the ECMA_STRING_TO_UTF8_STRING_AND_LENGTHis called, ECMA_STRING_TO_UTF8_STRING_AND_LENGTH needs to calculate the length that's very slow.ECMA_FINALIZE_UTF8_STRING is removed, if we have heap allocation situation, use ecma_string_get_chars instead and free it manuallyJerryScript-DCO-1.0-Signed-off-by: Yonggang Luo luoyonggang@gmail.com
@lygstatelygstateforce-pushed theecma_string_get_chars_improve branch from1d29a7a tob9c0a58CompareDecember 17, 2024 09:48
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant

@lygstate

[8]ページ先頭

©2009-2025 Movatter.jp