Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: new functions in stdlib from stdlib.fc and math.fc #986

Draft
wants to merge 19 commits into
base: main
Choose a base branch
from

Conversation

Gusarich
Copy link
Member

@Gusarich Gusarich commented Oct 25, 2024

Issue

Closes #770, closes #1029

Checklist

  • I have updated CHANGELOG.md
  • I have documented my contribution in docs/ and made the build locally
  • I have added tests to demonstrate the contribution is correctly implemented: this usually includes both positive and negative tests, showing the happy path(s) and featuring intentionally broken cases
  • I have run all the tests locally and no test failure was reported
  • I have run the linter, formatter and spellchecker
  • I did not do unrelated and/or undiscussed refactorings

Current State

  • All stdlib.fc functions are present in Tact stdlib in some form, with some exceptions:
    • no tuple manipulation functions, because there is no tuple support in Tact
    • no minmax and no slice_bits_refs because we don't have tensor types in Tact and it would be useless
    • no set_data and get_data because Tact manages persistent storage by itself
    • no bless and other continuation functions because Tact doesn't support continuations natively
    • no raw_reserve_extra because it requires an uint32 -> varuint32 dictionary and we only support varuint16 for values currently
  • All mathlib.fc functions are present in Tact stdlib in some form, with some exceptions:
    • no fixed-point arithmetic related functions
    • no nan and is_nan because we don't support NaN in Tact
    • no sub_rev because it is useless in our case
    • no ...MOD instructions because they return two values as a tensor and it won't be very developer-friendly in Tact to make them return tuples in my opinion
  • All new functions are covered with tests

@Gusarich Gusarich added this to the v1.6.0 milestone Oct 25, 2024
Copy link
Member

@novusnota novusnota left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for reviewing the draft, I just wanted to keep those notes around :)

stdlib/stdlib.fc Outdated Show resolved Hide resolved
stdlib/stdlib.fc Outdated Show resolved Hide resolved
stdlib/stdlib.fc Show resolved Hide resolved
stdlib/std/math.tact Outdated Show resolved Hide resolved
stdlib/std/cells.tact Outdated Show resolved Hide resolved
stdlib/std/cells.tact Outdated Show resolved Hide resolved
stdlib/std/cells.tact Outdated Show resolved Hide resolved
stdlib/std/cells.tact Outdated Show resolved Hide resolved
@Gusarich Gusarich force-pushed the stdlib-extension-with-mathlib branch from 178e712 to b9b6206 Compare November 17, 2024 07:41
@Gusarich
Copy link
Member Author

@novusnota @anton-trunov Implemented all functions. I'd like to hear some intermediate feedback on them before I proceed with writing tests.

I made sure to include all missing functions from both stdlib.fc and mathlib.fc with some exceptions (see PR description).

@Gusarich Gusarich mentioned this pull request Nov 18, 2024
Copy link
Member

@anton-trunov anton-trunov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

afair, mathlib.fc has lots of functions for fixed-arithmetic as well, I think we should add those too (perhaps as a separate library, like fixed_point_math.tact).

Also, I left a couple comments in the source code

CHANGELOG.md Outdated
@@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The `replace` and `replaceGet` methods for the `Map` type: PR [#941](https://github.com/tact-lang/tact/pull/941)
- Utility for logging errors in code that was supposed to be unreachable: PR [#991](https://github.com/tact-lang/tact/pull/991)
- Docs: `preloadRef` method for the `Slice` type: PR [#1044](https://github.com/tact-lang/tact/pull/1044)
- New functions in stdlib from `stdlib.fc` and `math.fc`: PR [#986](https://github.com/tact-lang/tact/pull/986)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's list all the new functions here -- this is super-useful for editor plugins

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

refs: Int;
}

asm fun computeDataSize(cell: Cell, maxCells: Int): DataSize { CDATASIZE TRIPLE }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would TRIPLE work here? Structures are returned as tensors, right?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TRIPLE makes three elements into a tuple of length 3. I think it should work

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, but our structs are tensors, not tuples, right?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

structs are implemented as tuples in Tact (that's why we had problems with long ones in the first place, remember?)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah, I must have mistaken it with the unbundled approach in the storage


// floor(x*y/2^z)
asm fun mulrshift(x: Int, y: Int, z: Int): Int { MULRSHIFT }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
asm fun mulrshift(x: Int, y: Int, z: Int): Int { MULRSHIFT }
asm fun mulShiftRight(x: Int, y: Int, z: Int): Int { MULRSHIFT }

Not sure if that'll make it less recognizable to users that know about MULRSHIFT instruction, but it'll definitely make the function more accessible to others :)

Similar functions can be renamed in similar fashion

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let two: Int = 2;
two >> 1; // 1
4 >> 1; // 2
5 >> 1; // 2, due to flooring of integer values

pow(2, 254) >> 254; // 1

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

ctx.asm("", "UBITSIZE");
});

ctx.fun(`__tact_sqrt`, () => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how about we implement this in Tact?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

and what about other stdlib functions?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if a function can be implemented efficiently in Tact, we should implement it in Tact or open an issue and fix it

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

int x = (s == 1 ? (num - 1) / 2 + 1 : 1 << ((s + 1) / 2));

do {
int q = (muldivc(num, 1, x) - x) / 2;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks like muldivc(num, 1, x) can be replaced with divc

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

CHANGELOG.md Outdated Show resolved Hide resolved
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Extension of stdlib Port stdlib.fc and mathlib.fc's asm functions to Tact's stdlib
4 participants