1. 29 Mar, 2014 3 commits
  2. 28 Mar, 2014 8 commits
  3. 27 Mar, 2014 12 commits
    • Adam Langley's avatar
      crypto/x509: update tests because Windows removed the Verisign root. · 0f272d13
      Adam Langley authored
      The root update on 3/11/2014 removed the Verisign root cert that the Go
      tests use. This only affects the 'TestSystemVerify' test in
      crypto/x509.
      
      Fixes #7523.
      
      LGTM=bradfitz
      R=golang-codereviews, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/80000044
      0f272d13
    • Rui Ueyama's avatar
      misc/emacs: do not highlight built-in function if not followed by '(' · 5f5e280e
      Rui Ueyama authored
      Name of built-in function is not reserved word in Go, and you can
      use it as variable name. "new" is often used as local variable, for
      instance.
      
      This patch is to apply font-lock-builtin-face only when built-in
      function name is followed by '(', so that it doesn't highlight
      non-function variable that happen to have the same name as built-in
      function.
      
      LGTM=dominik.honnef
      R=golang-codereviews, dominik.honnef, adonovan
      CC=golang-codereviews
      https://golang.org/cl/79260043
      5f5e280e
    • Daniel Morsing's avatar
      cmd/cgo: enforce typing of 0-sized types · 0f82cfd3
      Daniel Morsing authored
      cgo represents all 0-sized and unsized types internally as [0]byte. This means that pointers to incomplete types would be interchangable, even if given a name by typedef.
      
      Fixes #7409.
      
      LGTM=iant
      R=golang-codereviews, bradfitz, iant
      CC=golang-codereviews
      https://golang.org/cl/76450043
      0f82cfd3
    • Rui Ueyama's avatar
      misc/emacs: handle backslash in raw string in Emacs 23 · 444dd26b
      Rui Ueyama authored
      Go-mode in Emacs 23 does not recognize a backslash followed
      by a backquote as end of raw string literal, as it does not
      support syntax-propertize-function which Go-mode uses to
      remove special meaning from backslashes in ``.
      
      This patch provides a fallback mechanism to do the same thing
      using font-lock-syntactic-keywords, which is supported by
      Emacs 23.
      
      LGTM=dominik.honnef
      R=golang-codereviews, dominik.honnef
      CC=adonovan, golang-codereviews
      https://golang.org/cl/78730048
      444dd26b
    • Russ Cox's avatar
      runtime: enable 'bad pointer' check during garbage collection of Go stack frames · 5a23a7e5
      Russ Cox authored
      This is the same check we use during stack copying.
      The check cannot be applied to C stack frames, even
      though we do emit pointer bitmaps for the arguments,
      because (1) the pointer bitmaps assume all arguments
      are always live, not true of outputs during the prologue,
      and (2) the pointer bitmaps encode interface values as
      pointer pairs, not true of interfaces holding integers.
      
      For the rest of the frames, however, we should hold ourselves
      to the rule that a pointer marked live really is initialized.
      The interface scanning already implicitly checks this
      because it interprets the type word  as a valid type pointer.
      
      This may slow things down a little because of the extra loads.
      Or it may speed things up because we don't bother enqueuing
      nil pointers anymore. Enough of the rest of the system is slow
      right now that we can't measure it meaningfully.
      Enable for now, even if it is slow, to shake out bugs in the
      liveness bitmaps, and then decide whether to turn it off
      for the Go 1.3 release (issue 7650 reminds us to do this).
      
      The new m->traceback field lets us force printing of fp=
      values on all goroutine stack traces when we detect a
      bad pointer. This makes it easier to understand exactly
      where in the frame the bad pointer is, so that we can trace
      it back to a specific variable and determine what is wrong.
      
      Update #7650
      
      LGTM=khr
      R=khr
      CC=golang-codereviews
      https://golang.org/cl/80860044
      5a23a7e5
    • Russ Cox's avatar
      cmd/gc: liveness-related bug fixes · 6722d456
      Russ Cox authored
      1. On entry to a function, only zero the ambiguously live stack variables.
      Before, we were zeroing all stack variables containing pointers.
      The zeroing is pretty inefficient right now (issue 7624), but there are also
      too many stack variables detected as ambiguously live (issue 7345),
      and that must be addressed before deciding how to improve the zeroing code.
      (Changes in 5g/ggen.c, 6g/ggen.c, 8g/ggen.c, gc/pgen.c)
      
      Fixes #7647.
      
      2. Make the regopt word-based liveness analysis preserve the
      whole-variable liveness property expected by the garbage collection
      bitmap liveness analysis. That is, if the regopt liveness decides that
      one word in a struct needs to be preserved, make sure it preserves
      the entire struct. This is particularly important for multiword values
      such as strings, slices, and interfaces, in which all the words need
      to be present in order to understand the meaning.
      (Changes in 5g/reg.c, 6g/reg.c, 8g/reg.c.)
      
      Fixes #7591.
      
      3. Make the regopt word-based liveness analysis treat a variable
      as having its address taken - which makes it preserved across
      all future calls - whenever n->addrtaken is set, for consistency
      with the gc bitmap liveness analysis, even if there is no machine
      instruction actually taking the address. In this case n->addrtaken
      is incorrect (a nicer way to put it is overconservative), and ideally
      there would be no such cases, but they can happen and the two
      analyses need to agree.
      (Changes in 5g/reg.c, 6g/reg.c, 8g/reg.c; test in bug484.go.)
      
      Fixes crashes found by turning off "zero everything" in step 1.
      
      4. Remove spurious VARDEF annotations. As the comment in
      gc/pgen.c explains, the VARDEF must immediately precede
      the initialization. It cannot be too early, and it cannot be too late.
      In particular, if a function call sits between the VARDEF and the
      actual machine instructions doing the initialization, the variable
      will be treated as live during that function call even though it is
      uninitialized, leading to problems.
      (Changes in gc/gen.c; test in live.go.)
      
      Fixes crashes found by turning off "zero everything" in step 1.
      
      5. Do not treat loading the address of a wide value as a signal
      that the value must be initialized. Instead depend on the existence
      of a VARDEF or the first actual read/write of a word in the value.
      If the load is in order to pass the address to a function that does
      the actual initialization, treating the load as an implicit VARDEF
      causes the same problems as described in step 4.
      The alternative is to arrange to zero every such value before
      passing it to the real initialization function, but this is a much
      easier and more efficient change.
      (Changes in gc/plive.c.)
      
      Fixes crashes found by turning off "zero everything" in step 1.
      
      6. Treat wide input parameters with their address taken as
      initialized on entry to the function. Otherwise they look
      "ambiguously live" and we will try to emit code to zero them.
      (Changes in gc/plive.c.)
      
      Fixes crashes found by turning off "zero everything" in step 1.
      
      7. An array of length 0 has no pointers, even if the element type does.
      Without this change, the zeroing code complains when asked to
      clear a 0-length array.
      (Changes in gc/reflect.c.)
      
      LGTM=khr
      R=khr
      CC=golang-codereviews
      https://golang.org/cl/80160044
      6722d456
    • Russ Cox's avatar
      cmd/dist: zero output variables on entry to goc2c functions · f94bff79
      Russ Cox authored
      Zeroing the outputs makes sure that during function calls
      in those functions we do not let the garbage collector
      treat uninitialized values as pointers.
      
      The garbage collector may still see uninitialized values
      if a preemption occurs during the function prologue,
      before the zeroing has had a chance to run.
      
      This reduces the number of 'bad pointer' messages when
      that runtime check is enabled, but it doesn't fix all of them,
      so the check is still disabled.
      
      It will also avoid leaks, although I doubt any of these were
      particularly serious.
      
      LGTM=iant, khr
      R=iant, khr
      CC=golang-codereviews
      https://golang.org/cl/80850044
      f94bff79
    • Russ Cox's avatar
      regexp/syntax: remove InstLast · ef3c0e7e
      Russ Cox authored
      This was added by the one-pass CL (post Go 1.2)
      so it can still be removed.
      
      Removing because surely there will be new operations
      added later, and we can't change the constant value
      once we define it, so "last" is a bad concept to expose.
      
      Nothing uses it.
      
      LGTM=bradfitz
      R=golang-codereviews, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/81160043
      ef3c0e7e
    • Jan Ziak's avatar
      cmd/gc: fix spurious 'use of untyped nil' error · 21b2e168
      Jan Ziak authored
      Fixes #6402
      
      LGTM=rsc
      R=rsc
      CC=golang-codereviews
      https://golang.org/cl/81340044
      21b2e168
    • Rui Ueyama's avatar
      misc/bash, misc/zsh: fix completion rules · 6119dc1b
      Rui Ueyama authored
      This patch includes fixes pointed out in CL 52140043, which was
      originally written by john.gosset.
      
      LGTM=minux.ma
      R=golang-codereviews, minux.ma
      CC=golang-codereviews
      https://golang.org/cl/80320043
      6119dc1b
    • Russ Cox's avatar
      runtime: initialize complete Hiter during mapiterinit · fc6befba
      Russ Cox authored
      The garbage collector will scan these pointers,
      so make sure they are initialized.
      
      LGTM=bradfitz, khr
      R=khr, bradfitz
      CC=golang-codereviews
      https://golang.org/cl/80960047
      fc6befba
    • Rob Pike's avatar
      doc/go1.3.html: explain the change to the memory model · a4380927
      Rob Pike authored
      LGTM=iant, rsc
      R=rsc, iant, mtj
      CC=golang-codereviews
      https://golang.org/cl/80260044
      a4380927
  4. 26 Mar, 2014 16 commits
  5. 24 Mar, 2014 1 commit
    • Mikio Hara's avatar
      net: deflake TestTCPConcurrentAccept · 4f1aecf2
      Mikio Hara authored
      Some platform that implements inp_localgroup-like shared internet
      protocol control block group looks a bit sensitive about transport
      layer protocol's address:port reuse. Sometimes it rejects a TCP SYN
      packet using TCP RST, and sometimes silence.
      
      For now, until test case refactoring, we admit few Dial failures on
      TestTCPConcurrentAccept as a workaround.
      
      Update #7400
      Update #7541
      
      LGTM=jsing
      R=jsing
      CC=golang-codereviews
      https://golang.org/cl/75920043
      4f1aecf2