Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
d7424b1a
Commit
d7424b1a
authored
Oct 26, 2010
by
Andrew Gerrand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc: update roadmap
R=r, rsc, iant CC=golang-dev
https://golang.org/cl/2312042
parent
8fff9166
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
10 deletions
+37
-10
doc/devel/roadmap.html
doc/devel/roadmap.html
+37
-10
No files found.
doc/devel/roadmap.html
View file @
d7424b1a
...
...
@@ -2,6 +2,7 @@
<h2
id=
"Roadmap"
>
Go Roadmap
</h2>
<p>
This page lists features and ideas being developed or discussed by the
Go team. This list will be updated as work continues.
...
...
@@ -26,6 +27,9 @@ Variant types. A way to define a type as being the union of some set
of types.
<li>
Generics. An active topic of discussion.
<li>
Methods for operators, to allow a type to use arithmetic notation for
expressions.
</ul>
<h3
id=
"Implementation_roadmap"
>
...
...
@@ -38,14 +42,10 @@ with a cycle detector running in a separate core.
<li>
Debugger.
<li>
Native Client (NaCl) support.
<li>
App Engine support.
<li>
Improved CGO including some mechanism for calling back from C to Go.
<li>
SWIG support.
<li>
Improved implementation documentation.
</ul>
...
...
@@ -56,28 +56,55 @@ Gc compiler roadmap</h4>
<li>
Implement goto restrictions.
<li>
Safe compilation mode: generate code that is guaranteed not to obtain
an invalid memory address other than via
<code>
import "unsafe"
</code>
.
Generate DWARF debug info.
<li>
Generate ELF debug info
.
Provide gdb support for runtime facilities
.
<li>
Improved optimization.
<li>
5g: Better floating point support.
</ul>
<h4
id
=
"Gccgo_roadmap"
>
<h4
id
=
"Gccgo_roadmap"
>
Gccgo compiler roadmap
</h4>
<ul>
<li>
Implement goto restrictions.
<li>
Implement garbage collection.
<li>
Use goroutines rather than threads.
<li>
Separate gcc interface from frontend proper.
<li>
Use escape analysis to keep more data on stack.
</ul>
<h3
id=
"done"
>
Done
</h3>
<ul>
<li>
Safe compilation mode: generate code that is guaranteed not to obtain an invalid memory address other than via
<code>
import "unsafe"
</code>
.
<li>
Gccgo: garbage collection.
<li>
Native Client (NaCl) support.
<li>
SWIG support.
<li>
Simpler semicolon rules.
<li>
A better definition of
<code>
...
</code>
in parameter lists.
<li>
Explicit conversions from
<code>
string
</code>
to
<code>
[]byte
</code>
and
<code>
[]int
</code>
.
<li>
A function that will be run by the garbage collector when an item is freed
(runtime.SetFinalizer).
<li>
Public continuous build and benchmark infrastructure (gobuilder).
<li>
Package manager (goinstall).
<li>
A means of recovering from a panic (recover).
</ul>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment