Skip to content

Add a few features. #4

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

Merged
merged 1 commit into from
Apr 30, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions EssentialPostV1Features.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ Minimum Viable Product that is [v.1](V1.md).

## Zero-cost Exception Handling
* Developer access to stack unwinding and inspection.
* This will be used to implement `setjmp`/`longjmp` (instead of the usual
opposite approach).

## Signature-restricted Proper Tail Calls
* This can also be used to support `goto` and irreducible control flow.
* TODO
20 changes: 11 additions & 9 deletions FutureFeatures.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
# Feature to add after v.1

These are features that make sense in the context of the
[high-level goals](HighLevelGoals.md) of WebAssembly but are not considered part of the
[Minimum Viable Product](V1.md) or the [essential post-v.1 feature set](EssentialPostV1Features.md)
which are expected to be standardized immediately after v.1. These will be
prioritized based on developer feedback.
These are features that make sense in the context of the
[high-level goals](HighLevelGoals.md) of WebAssembly but are not considered part
of the [Minimum Viable Product](V1.md) or the
[essential post-v.1 feature set](EssentialPostV1Features.md) which are expected
to be standardized immediately after v.1. These will be prioritized based on
developer feedback.

## Dynamic loading
* Both load-time and run-time.
* TODO

## Finer-grained control over memory
* mmap of File, madvise(MADV_DONTNEED), ...
* `mmap` of File, `madvise(MADV_DONTNEED)`, ...
* TODO

## GC/DOM Integration
Expand Down Expand Up @@ -40,9 +41,10 @@ prioritized based on developer feedback.
* TODO

## Operations which may not be available or may not perform well on all platforms
* FMA, reciprocal sqrt approximate, fp16
* TODO
* Fused multiply-add.
* Reciprocal square root approximate.
* 16-bit flaoting point.

## Platform-independent Just-in-Time compilatione
## Platform-independent Just-in-Time compilation
* TODO
* Potentially through dynamic loading.