Skip to content

Tailcall ir#133

Closed
matthewhammer wants to merge 14 commits intomasterfrom
tailcall-ir
Closed

Tailcall ir#133
matthewhammer wants to merge 14 commits intomasterfrom
tailcall-ir

Conversation

@matthewhammer
Copy link
Contributor

Refactor tailcall module to use Ir in place of Syntax.

No apparent issues, except for one question:
See XXX question about sharing flag, and what to do when we don't have it in Ir, in the FuncD case.

@matthewhammer matthewhammer requested a review from crusso January 31, 2019 21:51
,
env
(*
XXX: What happens to this special case?
Copy link
Contributor

@crusso crusso Jan 31, 2019

Choose a reason for hiding this comment

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

I think here and in the previous case you'll need to look at the calling convention (cc) instead. The sharing word is a bit of misnomer, I think, but we should just stick with it for now.

That call_conv_of_typ function should reveal the relationship...

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ok, that's very helpful. I'll try to fix this now...

Copy link
Contributor Author

@matthewhammer matthewhammer Jan 31, 2019

Choose a reason for hiding this comment

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

I think I was able to figure it out. See the latest version.


For each function `f` whose `body[...]` has at least one self tailcall to `f<Ts>(es)`, apply the transformation:
```
func f<Ts>(pat) = body[f<Ts>(es)+]
Copy link
Contributor

Choose a reason for hiding this comment

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

BTW, does this make sense to you? Just checking my own sanity here...

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes, it does. I read that earlier today was able to suss out what it was saying, and why.

Having said that, it was helpful to have talked with you this morning about the meaning of labels and break, for doing these "control effects" without a stack.

}
| _ -> failwith "projE"

(*
Copy link
Contributor

Choose a reason for hiding this comment

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

Indeed, I believe its redundant in Syntax too. I've got a TODO to remove it at some point...

let ( -*- ) exp1 exp2 =
match exp1.note.S.note_typ with
| T.Func(_, _, [], ts1, ts2) ->
(* for debugging bad applications, imprecisely
Copy link
Contributor

@crusso crusso Jan 31, 2019

Choose a reason for hiding this comment

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

This was a poor man's type check - now that we have check_It, we can probably nuke the commented code too.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Cool, done.

@@ -0,0 +1,305 @@
(* open Syntax *)
open Ir
open Source
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we still reference Source? If no, nuke (but maye we do for Syntax.mut or something..

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes: The fields it and note are used in this module; the it field is used somewhat extensively.

But, to avoid namespace pollution, I'll make explicit module projections for each use.

Copy link
Contributor

Choose a reason for hiding this comment

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

Source /= Syntax. The former just provides the phrase type constructor, the latter the ActorScript source AST.


let rec typ_decs decs =
match decs with
| [] -> T.unit
Copy link
Contributor

@crusso crusso Jan 31, 2019

Choose a reason for hiding this comment

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

probably my own code, but align cases with match. Actually, typ_decs might even be dead (try grepping for it in src).

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It's used once, in this file, just below in blockE. I can move it inside there, as a local function?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

...done.

| T.Tup ts ->
{it = ProjE(e,n);
note = {S.note_typ = List.nth ts n;
S.note_eff = T.Triv};
Copy link
Contributor

Choose a reason for hiding this comment

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

T.Triv should be eff e, I think. My mistake, I'm sure. Though the effects don't really matter after the await.ml pass, it's better to get them right. Wonder if any of the others effect annotations might be wrong...

Copy link
Contributor Author

Choose a reason for hiding this comment

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

How would we check for this wrongness in the future?

Could it be part of the IR type checking that we do to sanity check each pass?


(* Diagnostics *)

let phase heading name =
Copy link
Contributor

Choose a reason for hiding this comment

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

Have you tried replacing the existing tco with the new one? You'd have to move desugar up just before tco and then call the new version of tco.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Not yet. How would I notice problems? Some regression tests would/might fail?

@crusso
Copy link
Contributor

crusso commented Feb 5, 2019

I'm closing the PR since it was incorporated into async-ir

@crusso crusso closed this Feb 5, 2019
@crusso crusso deleted the tailcall-ir branch February 5, 2019 16:57
mergify bot pushed a commit that referenced this pull request Nov 6, 2020
dfinity-bot added a commit that referenced this pull request Jan 26, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@2c9f2ea8...52736f33](dfinity/ic-hs@2c9f2ea...52736f3)

* [`8f47bec4`](dfinity/ic-hs@8f47bec) provisional_create_canister_with_cycles takes an optional specified_id ([dfinity/ic-hs⁠#126](https://github.com/dfinity/ic-hs/issues/126))
* [`af73f215`](dfinity/ic-hs@af73f21) Implement ic0.mint_cycles in ic-hs ([dfinity/ic-hs⁠#127](https://github.com/dfinity/ic-hs/issues/127))
* [`cb9b35d6`](dfinity/ic-hs@cb9b35d) Support requests to a subnet ID ([dfinity/ic-hs⁠#128](https://github.com/dfinity/ic-hs/issues/128))
* [`4cd1c3d3`](dfinity/ic-hs@4cd1c3d) charge canister http_request based on target subnet ([dfinity/ic-hs⁠#130](https://github.com/dfinity/ic-hs/issues/130))
* [`5f07313f`](dfinity/ic-hs@5f07313) replace base64 by ascii endpoint in canister http tests ([dfinity/ic-hs⁠#131](https://github.com/dfinity/ic-hs/issues/131))
* [`9607be0c`](dfinity/ic-hs@9607be0) omit ic-ref binary in ic-ref-test artifact ([dfinity/ic-hs⁠#132](https://github.com/dfinity/ic-hs/issues/132))
* [`67029cb8`](dfinity/ic-hs@67029cb) RUN-509: Enable Canister Timers in pre-upgrade ([dfinity/ic-hs⁠#134](https://github.com/dfinity/ic-hs/issues/134))
* [`52736f33`](dfinity/ic-hs@52736f3) add test for timer in post-upgrade on stopped and stopping canister ([dfinity/ic-hs⁠#133](https://github.com/dfinity/ic-hs/issues/133))
dfinity-bot added a commit that referenced this pull request Jan 27, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@2c9f2ea8...ed328b87](dfinity/ic-hs@2c9f2ea...ed328b8)

* [`8f47bec4`](dfinity/ic-hs@8f47bec) provisional_create_canister_with_cycles takes an optional specified_id ([dfinity/ic-hs⁠#126](https://github.com/dfinity/ic-hs/issues/126))
* [`af73f215`](dfinity/ic-hs@af73f21) Implement ic0.mint_cycles in ic-hs ([dfinity/ic-hs⁠#127](https://github.com/dfinity/ic-hs/issues/127))
* [`cb9b35d6`](dfinity/ic-hs@cb9b35d) Support requests to a subnet ID ([dfinity/ic-hs⁠#128](https://github.com/dfinity/ic-hs/issues/128))
* [`4cd1c3d3`](dfinity/ic-hs@4cd1c3d) charge canister http_request based on target subnet ([dfinity/ic-hs⁠#130](https://github.com/dfinity/ic-hs/issues/130))
* [`5f07313f`](dfinity/ic-hs@5f07313) replace base64 by ascii endpoint in canister http tests ([dfinity/ic-hs⁠#131](https://github.com/dfinity/ic-hs/issues/131))
* [`9607be0c`](dfinity/ic-hs@9607be0) omit ic-ref binary in ic-ref-test artifact ([dfinity/ic-hs⁠#132](https://github.com/dfinity/ic-hs/issues/132))
* [`67029cb8`](dfinity/ic-hs@67029cb) RUN-509: Enable Canister Timers in pre-upgrade ([dfinity/ic-hs⁠#134](https://github.com/dfinity/ic-hs/issues/134))
* [`52736f33`](dfinity/ic-hs@52736f3) add test for timer in post-upgrade on stopped and stopping canister ([dfinity/ic-hs⁠#133](https://github.com/dfinity/ic-hs/issues/133))
* [`ed328b87`](dfinity/ic-hs@ed328b8) implement canister range checks in ic-ref-test ([dfinity/ic-hs⁠#135](https://github.com/dfinity/ic-hs/issues/135))
dfinity-bot added a commit that referenced this pull request Jan 29, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@2c9f2ea8...ed328b87](dfinity/ic-hs@2c9f2ea...ed328b8)

* [`8f47bec4`](dfinity/ic-hs@8f47bec) provisional_create_canister_with_cycles takes an optional specified_id ([dfinity/ic-hs⁠#126](https://github.com/dfinity/ic-hs/issues/126))
* [`af73f215`](dfinity/ic-hs@af73f21) Implement ic0.mint_cycles in ic-hs ([dfinity/ic-hs⁠#127](https://github.com/dfinity/ic-hs/issues/127))
* [`cb9b35d6`](dfinity/ic-hs@cb9b35d) Support requests to a subnet ID ([dfinity/ic-hs⁠#128](https://github.com/dfinity/ic-hs/issues/128))
* [`4cd1c3d3`](dfinity/ic-hs@4cd1c3d) charge canister http_request based on target subnet ([dfinity/ic-hs⁠#130](https://github.com/dfinity/ic-hs/issues/130))
* [`5f07313f`](dfinity/ic-hs@5f07313) replace base64 by ascii endpoint in canister http tests ([dfinity/ic-hs⁠#131](https://github.com/dfinity/ic-hs/issues/131))
* [`9607be0c`](dfinity/ic-hs@9607be0) omit ic-ref binary in ic-ref-test artifact ([dfinity/ic-hs⁠#132](https://github.com/dfinity/ic-hs/issues/132))
* [`67029cb8`](dfinity/ic-hs@67029cb) RUN-509: Enable Canister Timers in pre-upgrade ([dfinity/ic-hs⁠#134](https://github.com/dfinity/ic-hs/issues/134))
* [`52736f33`](dfinity/ic-hs@52736f3) add test for timer in post-upgrade on stopped and stopping canister ([dfinity/ic-hs⁠#133](https://github.com/dfinity/ic-hs/issues/133))
* [`ed328b87`](dfinity/ic-hs@ed328b8) implement canister range checks in ic-ref-test ([dfinity/ic-hs⁠#135](https://github.com/dfinity/ic-hs/issues/135))
dfinity-bot added a commit that referenced this pull request Jan 30, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@2c9f2ea8...ed328b87](dfinity/ic-hs@2c9f2ea...ed328b8)

* [`8f47bec4`](dfinity/ic-hs@8f47bec) provisional_create_canister_with_cycles takes an optional specified_id ([dfinity/ic-hs⁠#126](https://github.com/dfinity/ic-hs/issues/126))
* [`af73f215`](dfinity/ic-hs@af73f21) Implement ic0.mint_cycles in ic-hs ([dfinity/ic-hs⁠#127](https://github.com/dfinity/ic-hs/issues/127))
* [`cb9b35d6`](dfinity/ic-hs@cb9b35d) Support requests to a subnet ID ([dfinity/ic-hs⁠#128](https://github.com/dfinity/ic-hs/issues/128))
* [`4cd1c3d3`](dfinity/ic-hs@4cd1c3d) charge canister http_request based on target subnet ([dfinity/ic-hs⁠#130](https://github.com/dfinity/ic-hs/issues/130))
* [`5f07313f`](dfinity/ic-hs@5f07313) replace base64 by ascii endpoint in canister http tests ([dfinity/ic-hs⁠#131](https://github.com/dfinity/ic-hs/issues/131))
* [`9607be0c`](dfinity/ic-hs@9607be0) omit ic-ref binary in ic-ref-test artifact ([dfinity/ic-hs⁠#132](https://github.com/dfinity/ic-hs/issues/132))
* [`67029cb8`](dfinity/ic-hs@67029cb) RUN-509: Enable Canister Timers in pre-upgrade ([dfinity/ic-hs⁠#134](https://github.com/dfinity/ic-hs/issues/134))
* [`52736f33`](dfinity/ic-hs@52736f3) add test for timer in post-upgrade on stopped and stopping canister ([dfinity/ic-hs⁠#133](https://github.com/dfinity/ic-hs/issues/133))
* [`ed328b87`](dfinity/ic-hs@ed328b8) implement canister range checks in ic-ref-test ([dfinity/ic-hs⁠#135](https://github.com/dfinity/ic-hs/issues/135))
dfinity-bot added a commit that referenced this pull request Jan 31, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@2c9f2ea8...e29764e9](dfinity/ic-hs@2c9f2ea...e29764e)

* [`8f47bec4`](dfinity/ic-hs@8f47bec) provisional_create_canister_with_cycles takes an optional specified_id ([dfinity/ic-hs⁠#126](https://github.com/dfinity/ic-hs/issues/126))
* [`af73f215`](dfinity/ic-hs@af73f21) Implement ic0.mint_cycles in ic-hs ([dfinity/ic-hs⁠#127](https://github.com/dfinity/ic-hs/issues/127))
* [`cb9b35d6`](dfinity/ic-hs@cb9b35d) Support requests to a subnet ID ([dfinity/ic-hs⁠#128](https://github.com/dfinity/ic-hs/issues/128))
* [`4cd1c3d3`](dfinity/ic-hs@4cd1c3d) charge canister http_request based on target subnet ([dfinity/ic-hs⁠#130](https://github.com/dfinity/ic-hs/issues/130))
* [`5f07313f`](dfinity/ic-hs@5f07313) replace base64 by ascii endpoint in canister http tests ([dfinity/ic-hs⁠#131](https://github.com/dfinity/ic-hs/issues/131))
* [`9607be0c`](dfinity/ic-hs@9607be0) omit ic-ref binary in ic-ref-test artifact ([dfinity/ic-hs⁠#132](https://github.com/dfinity/ic-hs/issues/132))
* [`67029cb8`](dfinity/ic-hs@67029cb) RUN-509: Enable Canister Timers in pre-upgrade ([dfinity/ic-hs⁠#134](https://github.com/dfinity/ic-hs/issues/134))
* [`52736f33`](dfinity/ic-hs@52736f3) add test for timer in post-upgrade on stopped and stopping canister ([dfinity/ic-hs⁠#133](https://github.com/dfinity/ic-hs/issues/133))
* [`ed328b87`](dfinity/ic-hs@ed328b8) implement canister range checks in ic-ref-test ([dfinity/ic-hs⁠#135](https://github.com/dfinity/ic-hs/issues/135))
* [`e29764e9`](dfinity/ic-hs@e29764e) fix conditions on read_state requests ([dfinity/ic-hs⁠#136](https://github.com/dfinity/ic-hs/issues/136))
dfinity-bot added a commit that referenced this pull request Feb 2, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@2c9f2ea8...ebedfe6e](dfinity/ic-hs@2c9f2ea...ebedfe6)

* [`8f47bec4`](dfinity/ic-hs@8f47bec) provisional_create_canister_with_cycles takes an optional specified_id ([dfinity/ic-hs⁠#126](https://github.com/dfinity/ic-hs/issues/126))
* [`af73f215`](dfinity/ic-hs@af73f21) Implement ic0.mint_cycles in ic-hs ([dfinity/ic-hs⁠#127](https://github.com/dfinity/ic-hs/issues/127))
* [`cb9b35d6`](dfinity/ic-hs@cb9b35d) Support requests to a subnet ID ([dfinity/ic-hs⁠#128](https://github.com/dfinity/ic-hs/issues/128))
* [`4cd1c3d3`](dfinity/ic-hs@4cd1c3d) charge canister http_request based on target subnet ([dfinity/ic-hs⁠#130](https://github.com/dfinity/ic-hs/issues/130))
* [`5f07313f`](dfinity/ic-hs@5f07313) replace base64 by ascii endpoint in canister http tests ([dfinity/ic-hs⁠#131](https://github.com/dfinity/ic-hs/issues/131))
* [`9607be0c`](dfinity/ic-hs@9607be0) omit ic-ref binary in ic-ref-test artifact ([dfinity/ic-hs⁠#132](https://github.com/dfinity/ic-hs/issues/132))
* [`67029cb8`](dfinity/ic-hs@67029cb) RUN-509: Enable Canister Timers in pre-upgrade ([dfinity/ic-hs⁠#134](https://github.com/dfinity/ic-hs/issues/134))
* [`52736f33`](dfinity/ic-hs@52736f3) add test for timer in post-upgrade on stopped and stopping canister ([dfinity/ic-hs⁠#133](https://github.com/dfinity/ic-hs/issues/133))
* [`ed328b87`](dfinity/ic-hs@ed328b8) implement canister range checks in ic-ref-test ([dfinity/ic-hs⁠#135](https://github.com/dfinity/ic-hs/issues/135))
* [`e29764e9`](dfinity/ic-hs@e29764e) fix conditions on read_state requests ([dfinity/ic-hs⁠#136](https://github.com/dfinity/ic-hs/issues/136))
* [`ebedfe6e`](dfinity/ic-hs@ebedfe6) make nonexisting canister id in the subnet's ranges ([dfinity/ic-hs⁠#137](https://github.com/dfinity/ic-hs/issues/137))
dfinity-bot added a commit that referenced this pull request Feb 3, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@2c9f2ea8...80875f3a](dfinity/ic-hs@2c9f2ea...80875f3)

* [`8f47bec4`](dfinity/ic-hs@8f47bec) provisional_create_canister_with_cycles takes an optional specified_id ([dfinity/ic-hs⁠#126](https://github.com/dfinity/ic-hs/issues/126))
* [`af73f215`](dfinity/ic-hs@af73f21) Implement ic0.mint_cycles in ic-hs ([dfinity/ic-hs⁠#127](https://github.com/dfinity/ic-hs/issues/127))
* [`cb9b35d6`](dfinity/ic-hs@cb9b35d) Support requests to a subnet ID ([dfinity/ic-hs⁠#128](https://github.com/dfinity/ic-hs/issues/128))
* [`4cd1c3d3`](dfinity/ic-hs@4cd1c3d) charge canister http_request based on target subnet ([dfinity/ic-hs⁠#130](https://github.com/dfinity/ic-hs/issues/130))
* [`5f07313f`](dfinity/ic-hs@5f07313) replace base64 by ascii endpoint in canister http tests ([dfinity/ic-hs⁠#131](https://github.com/dfinity/ic-hs/issues/131))
* [`9607be0c`](dfinity/ic-hs@9607be0) omit ic-ref binary in ic-ref-test artifact ([dfinity/ic-hs⁠#132](https://github.com/dfinity/ic-hs/issues/132))
* [`67029cb8`](dfinity/ic-hs@67029cb) RUN-509: Enable Canister Timers in pre-upgrade ([dfinity/ic-hs⁠#134](https://github.com/dfinity/ic-hs/issues/134))
* [`52736f33`](dfinity/ic-hs@52736f3) add test for timer in post-upgrade on stopped and stopping canister ([dfinity/ic-hs⁠#133](https://github.com/dfinity/ic-hs/issues/133))
* [`ed328b87`](dfinity/ic-hs@ed328b8) implement canister range checks in ic-ref-test ([dfinity/ic-hs⁠#135](https://github.com/dfinity/ic-hs/issues/135))
* [`e29764e9`](dfinity/ic-hs@e29764e) fix conditions on read_state requests ([dfinity/ic-hs⁠#136](https://github.com/dfinity/ic-hs/issues/136))
* [`ebedfe6e`](dfinity/ic-hs@ebedfe6) make nonexisting canister id in the subnet's ranges ([dfinity/ic-hs⁠#137](https://github.com/dfinity/ic-hs/issues/137))
* [`80875f3a`](dfinity/ic-hs@80875f3) increase error msg length limit ([dfinity/ic-hs⁠#139](https://github.com/dfinity/ic-hs/issues/139))
dfinity-bot added a commit that referenced this pull request Feb 5, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@2c9f2ea8...80875f3a](dfinity/ic-hs@2c9f2ea...80875f3)

* [`8f47bec4`](dfinity/ic-hs@8f47bec) provisional_create_canister_with_cycles takes an optional specified_id ([dfinity/ic-hs⁠#126](https://github.com/dfinity/ic-hs/issues/126))
* [`af73f215`](dfinity/ic-hs@af73f21) Implement ic0.mint_cycles in ic-hs ([dfinity/ic-hs⁠#127](https://github.com/dfinity/ic-hs/issues/127))
* [`cb9b35d6`](dfinity/ic-hs@cb9b35d) Support requests to a subnet ID ([dfinity/ic-hs⁠#128](https://github.com/dfinity/ic-hs/issues/128))
* [`4cd1c3d3`](dfinity/ic-hs@4cd1c3d) charge canister http_request based on target subnet ([dfinity/ic-hs⁠#130](https://github.com/dfinity/ic-hs/issues/130))
* [`5f07313f`](dfinity/ic-hs@5f07313) replace base64 by ascii endpoint in canister http tests ([dfinity/ic-hs⁠#131](https://github.com/dfinity/ic-hs/issues/131))
* [`9607be0c`](dfinity/ic-hs@9607be0) omit ic-ref binary in ic-ref-test artifact ([dfinity/ic-hs⁠#132](https://github.com/dfinity/ic-hs/issues/132))
* [`67029cb8`](dfinity/ic-hs@67029cb) RUN-509: Enable Canister Timers in pre-upgrade ([dfinity/ic-hs⁠#134](https://github.com/dfinity/ic-hs/issues/134))
* [`52736f33`](dfinity/ic-hs@52736f3) add test for timer in post-upgrade on stopped and stopping canister ([dfinity/ic-hs⁠#133](https://github.com/dfinity/ic-hs/issues/133))
* [`ed328b87`](dfinity/ic-hs@ed328b8) implement canister range checks in ic-ref-test ([dfinity/ic-hs⁠#135](https://github.com/dfinity/ic-hs/issues/135))
* [`e29764e9`](dfinity/ic-hs@e29764e) fix conditions on read_state requests ([dfinity/ic-hs⁠#136](https://github.com/dfinity/ic-hs/issues/136))
* [`ebedfe6e`](dfinity/ic-hs@ebedfe6) make nonexisting canister id in the subnet's ranges ([dfinity/ic-hs⁠#137](https://github.com/dfinity/ic-hs/issues/137))
* [`80875f3a`](dfinity/ic-hs@80875f3) increase error msg length limit ([dfinity/ic-hs⁠#139](https://github.com/dfinity/ic-hs/issues/139))
mergify bot pushed a commit that referenced this pull request Feb 6, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@2c9f2ea8...80875f3a](dfinity/ic-hs@2c9f2ea...80875f3)

* [`8f47bec4`](dfinity/ic-hs@8f47bec) provisional_create_canister_with_cycles takes an optional specified_id ([dfinity/ic-hs⁠#126](https://github.com/dfinity/ic-hs/issues/126))
* [`af73f215`](dfinity/ic-hs@af73f21) Implement ic0.mint_cycles in ic-hs ([dfinity/ic-hs⁠#127](https://github.com/dfinity/ic-hs/issues/127))
* [`cb9b35d6`](dfinity/ic-hs@cb9b35d) Support requests to a subnet ID ([dfinity/ic-hs⁠#128](https://github.com/dfinity/ic-hs/issues/128))
* [`4cd1c3d3`](dfinity/ic-hs@4cd1c3d) charge canister http_request based on target subnet ([dfinity/ic-hs⁠#130](https://github.com/dfinity/ic-hs/issues/130))
* [`5f07313f`](dfinity/ic-hs@5f07313) replace base64 by ascii endpoint in canister http tests ([dfinity/ic-hs⁠#131](https://github.com/dfinity/ic-hs/issues/131))
* [`9607be0c`](dfinity/ic-hs@9607be0) omit ic-ref binary in ic-ref-test artifact ([dfinity/ic-hs⁠#132](https://github.com/dfinity/ic-hs/issues/132))
* [`67029cb8`](dfinity/ic-hs@67029cb) RUN-509: Enable Canister Timers in pre-upgrade ([dfinity/ic-hs⁠#134](https://github.com/dfinity/ic-hs/issues/134))
* [`52736f33`](dfinity/ic-hs@52736f3) add test for timer in post-upgrade on stopped and stopping canister ([dfinity/ic-hs⁠#133](https://github.com/dfinity/ic-hs/issues/133))
* [`ed328b87`](dfinity/ic-hs@ed328b8) implement canister range checks in ic-ref-test ([dfinity/ic-hs⁠#135](https://github.com/dfinity/ic-hs/issues/135))
* [`e29764e9`](dfinity/ic-hs@e29764e) fix conditions on read_state requests ([dfinity/ic-hs⁠#136](https://github.com/dfinity/ic-hs/issues/136))
* [`ebedfe6e`](dfinity/ic-hs@ebedfe6) make nonexisting canister id in the subnet's ranges ([dfinity/ic-hs⁠#137](https://github.com/dfinity/ic-hs/issues/137))
* [`80875f3a`](dfinity/ic-hs@80875f3) increase error msg length limit ([dfinity/ic-hs⁠#139](https://github.com/dfinity/ic-hs/issues/139))
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.

3 participants