anames0.go raw

   1  // Copyright 2015 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 mips
   6  
   7  var cnames0 = []string{
   8  	"NONE",
   9  	"REG",
  10  	"FREG",
  11  	"FCREG",
  12  	"MREG",
  13  	"WREG",
  14  	"HI",
  15  	"LO",
  16  	"ZCON",
  17  	"SCON",
  18  	"UCON",
  19  	"ADD0CON",
  20  	"AND0CON",
  21  	"ADDCON",
  22  	"ANDCON",
  23  	"LCON",
  24  	"DCON",
  25  	"SACON",
  26  	"SECON",
  27  	"LACON",
  28  	"LECON",
  29  	"DACON",
  30  	"STCON",
  31  	"SBRA",
  32  	"LBRA",
  33  	"SAUTO",
  34  	"LAUTO",
  35  	"SEXT",
  36  	"LEXT",
  37  	"ZOREG",
  38  	"SOREG",
  39  	"LOREG",
  40  	"GOK",
  41  	"ADDR",
  42  	"TLS",
  43  	"TEXTSIZE",
  44  	"NCLASS",
  45  }
  46