Sign in
go
/
go
/
052a66babd64cd7f7f1e11f411da694907c31343
052a66b
runtime: fix init scheduling bug.
by Russ Cox
· 16 years ago
335b385
a little more 6l cleanup
by Russ Cox
· 16 years ago
5a74c0b
do not use ONONAMEs for line number information, just like ONAME etc.
by Russ Cox
· 16 years ago
304b795
add a .interp section and fix vaddr in INTERP prog.
by Rob Pike
· 16 years ago
d426b63
Implement assignment. Move convertTo.
by Austin Clements
· 16 years ago
3d42e69
make 6l produce dynamically linked binaries (although they are fully statically linked as far
by Rob Pike
· 16 years ago
ff790f4
adjust comment for better godoc output
by Robert Griesemer
· 16 years ago
e62dd7b
- split bignum package into 3 files
by Robert Griesemer
· 16 years ago
f0c00f7
Don't cast nil to a fixed array type.
by Ian Lance Taylor
· 16 years ago
c9399f1
You can't set a fixed array to nil.
by Ian Lance Taylor
· 16 years ago
2b1ec70
implemented outstanding bit ops on negative integerts
by Robert Griesemer
· 16 years ago
90ffb7b
Cleanup of Type/Value interface. Add Type.ZeroVal, replace
by Austin Clements
· 16 years ago
39808db
Make struct field names unique.
by Ian Lance Taylor
· 16 years ago
79fac7c
Implement array types and index expressions.
by Austin Clements
· 16 years ago
1d51978
fix cut-and-paste bugs in error messages
by Russ Cox
· 16 years ago
fb65906
Fix typo. MUL_ASSIGN is "*=", not "+=".
by Austin Clements
· 16 years ago
6e1ad04
avoid strncat in formatters.
by Russ Cox
· 16 years ago
940e381
triple quote
by Russ Cox
· 16 years ago
3913550
fix memset in fmtnull.
by Russ Cox
· 16 years ago
9e2fa39
- bignum.AndNot - corresponding test cases - some cleanups
by Robert Griesemer
· 16 years ago
f664d0e
explain selectsend problem
by Russ Cox
· 16 years ago
f687fb7
6l cleanup: last set of magic numbers for elf64 moved to ld/elf64*.
by Rob Pike
· 16 years ago
fe734d8
clean up generation of exec header.
by Rob Pike
· 16 years ago
94d89ed
take care of a few more magic numbers
by Rob Pike
· 16 years ago
51c0a84
Gather errors in a go.scanner.ErrorList instead of printing them as we go.
by Austin Clements
· 16 years ago
b63d40a
count SHdrs and PHdrs and write them out as a unit
by Rob Pike
· 16 years ago
821897b
- better documentation - code cleanup
by Robert Griesemer
· 16 years ago
3321470
Recognize gccgo error message.
by Ian Lance Taylor
· 16 years ago
25b4be5
Support exponential notation in RatFromString.
by Austin Clements
· 16 years ago
e86dcf1
more elf64 support: phdrs, constants
by Rob Pike
· 16 years ago
f95a42e
Produce friendlier errors messages for malformed character
by Austin Clements
· 16 years ago
35e5906
another baby step. excluding import data, no yacc node has type Type* anymore.
by Russ Cox
· 16 years ago
1593b1f
First steps towards cleaner support for ELF64 in 6l.
by Rob Pike
· 16 years ago
ba0cf08
change reflect.Type.Name() into two functions: Name() and PkgPath() for ease of use.
by Rob Pike
· 16 years ago
db508ccbf
baby step: const decls can refer to future consts in the same factored block
by Russ Cox
· 16 years ago
2ac1528
Finish shift implementation for ideals.
by Austin Clements
· 16 years ago
cb0a02f
ignore missing structs
by Rob Pike
· 16 years ago
b751be4
Cleanup func literals. "func (" -> "func("
by Austin Clements
· 16 years ago
96e8443
Implement all unary and binary arithmetic operators.
by Austin Clements
· 16 years ago
e52e9ca
another step toward eliminating forward declarations.
by Russ Cox
· 16 years ago
9b475bd
fix up prints in flag.go
by Rob Pike
· 16 years ago
be2cf95
clean up the code, flow errors out to decoder.
by Rob Pike
· 16 years ago
1737157
use FieldByName where possible.
by Rob Pike
· 16 years ago
e1b8cb8
- renamed SimpleVarDecl -> ShortVarDecl, in sync with terminology used in prose
by Robert Griesemer
· 16 years ago
a93c5c8
add FieldByName to the interface of reflect.StructType
by Rob Pike
· 16 years ago
1399bad
- allow wire type and receive type to differ.
by Rob Pike
· 16 years ago
f3ffd93
ast:
by Robert Griesemer
· 16 years ago
b75df2f
fix some bad testing prints
by Rob Pike
· 16 years ago
04ae91c
clean up the decode loop and fix a couple of bad prints
by Rob Pike
· 16 years ago
1902283
Fix handling of non-waitable zombie threads. Now they are not
by Austin Clements
· 16 years ago
13960ae
exvar: new Timer var type.
by David Symonds
· 16 years ago
a9be3f4
add rpc to the build
by Rob Pike
· 16 years ago
7d94cfd
/usr/local/bin might not exist so use /usr/bin in the chdir test.
by Rob Pike
· 16 years ago
816e3da
Make Value always represent an l-value and never a generic container for values.
by Austin Clements
· 16 years ago
3fc7cfd
improve server handling of errors now that Decoder grabs full message.
by Rob Pike
· 16 years ago
e76a335
make the low-level encoder and decoder private and have them access byte.Buffers rather
by Rob Pike
· 16 years ago
dc8c447
post-submit tweaks to previous cl
by Rob Pike
· 16 years ago
9211a7d
Beginnings of a Go interpreter. This implements basic and
by Austin Clements
· 16 years ago
8071cdf
handle errors better:
by Rob Pike
· 16 years ago
aa1e806
change HTTP access for RPC.
by Russ Cox
· 16 years ago
8b79514
Implement forking debugged processes.
by Austin Clements
· 16 years ago
3d486d0
- do not collect BUG comments w/o bug description
by Robert Griesemer
· 16 years ago
8d82456
Add a dummy WaitStatus.TrapCause for Darwin to unbreak the build.
by Austin Clements
· 16 years ago
d0e29f2
Pretty printer for os.Waitmsg
by Austin Clements
· 16 years ago
964b6cf
add HTTP support
by Rob Pike
· 16 years ago
b6e6663
Return ptrace event message when there's no error instead of
by Austin Clements
· 16 years ago
ba9d697
allow user to override the Usage function
by Rob Pike
· 16 years ago
eb815c0
fixed typo
by Robert Griesemer
· 16 years ago
4fb8f44
- interface and comments cleanup
by Robert Griesemer
· 16 years ago
59ee037
- removed TODO, minor adjustments
by Robert Griesemer
· 16 years ago
f752e90
darwin ptrace constants
by Russ Cox
· 16 years ago
c105de7
Implementation of process tracing using Linux's ptrace.
by Austin Clements
· 16 years ago
14bb806
Support ptracing of fork'd children.
by Austin Clements
· 16 years ago
40f406a
Zero unused syscall arguments.
by Austin Clements
· 16 years ago
b07af15
improve rpc code. more robust. more tests.
by Rob Pike
· 16 years ago
bc2fda9
Regenerate Linux 386 syscall bindings to add ptrace.
by Austin Clements
· 16 years ago
9df5287
Syscall wrappers for ptrace and supporting wait-related flags.
by Austin Clements
· 16 years ago
e48d8fe
update remaining files to match new scanner/parser interface
by Robert Griesemer
· 16 years ago
5945b25
- adjust to new token.Position definition
by Robert Griesemer
· 16 years ago
2d58fa6
- use new scanner error handling code
by Robert Griesemer
· 16 years ago
a010d45
- adjust to new scanner interface (pass filename to Init)
by Robert Griesemer
· 16 years ago
14228f3
- added Filename field to token.Position
by Robert Griesemer
· 16 years ago
10e995f
dead code
by Russ Cox
· 16 years ago
be16caf
step toward no function prototypes.
by Russ Cox
· 16 years ago
a679996
update 6g to new REGARG convention. silence gcc warning.
by Russ Cox
· 16 years ago
e11447f
bug148.
by Russ Cox
· 16 years ago
60d223a
added missing pieces required by reflection
by Kai Backman
· 16 years ago
0e2cce7
tiny naming cleanup
by Kai Backman
· 16 years ago
7258bac
fix bug in codegen when we modified move instruction instead of text.
by Kai Backman
· 16 years ago
ffb4b0d
Avoid clash between os.WRUSAGE and Linux's WALL flag.
by Austin Clements
· 16 years ago
9e2f2fc
compilers were inconsistent about
by Russ Cox
· 16 years ago
da1da8d
Add accessor for SIGTRAP cause in wait status
by Austin Clements
· 16 years ago
218c393
add LockOSThread and UnlockOSThread to
by Russ Cox
· 16 years ago
9126b75
rpc. client library. muxes on both ends.
by Rob Pike
· 16 years ago
29e9359
fix undefined function error.
by Russ Cox
· 16 years ago
8afc600
add note about once and closures
by Russ Cox
· 16 years ago
32cd887
- handle type forward declarations correctly
by Robert Griesemer
· 16 years ago
efb918b
the beginnings of an rpc service.
by Rob Pike
· 16 years ago
b2a66ad
the name of the type was being sent twice. drop the outer instance.
by Rob Pike
· 16 years ago
7b7b83b
ebnflint command
by Robert Griesemer
· 16 years ago
Next »