github.com/rsc/go@v0.0.0-20150416155037-e040fd465409/src/cmd/8g/gg.go (about)

     1  // Copyright 2009 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package main
     6  
     7  import "cmd/internal/obj/x86"
     8  import "cmd/internal/gc"
     9  
    10  // TODO(rsc):
    11  //	assume CLD?
    12  
    13  // Copyright 2009 The Go Authors. All rights reserved.
    14  // Use of this source code is governed by a BSD-style
    15  // license that can be found in the LICENSE file.
    16  
    17  // foptoas flags
    18  const (
    19  	Frev  = 1 << 0
    20  	Fpop  = 1 << 1
    21  	Fpop2 = 1 << 2
    22  )
    23  
    24  var reg [x86.MAXREG]uint8
    25  
    26  var panicdiv *gc.Node
    27  
    28  /*
    29   * cgen.c
    30   */
    31  
    32  /*
    33   * list.c
    34   */