anames9.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 ppc64
   6  
   7  var cnames9 = []string{
   8  	"NONE",
   9  	"REG",
  10  	"FREG",
  11  	"VREG",
  12  	"VSREG",
  13  	"CREG",
  14  	"SPR",
  15  	"ZCON",
  16  	"SCON",
  17  	"UCON",
  18  	"ADDCON",
  19  	"ANDCON",
  20  	"LCON",
  21  	"DCON",
  22  	"SACON",
  23  	"SECON",
  24  	"LACON",
  25  	"LECON",
  26  	"DACON",
  27  	"SBRA",
  28  	"LBRA",
  29  	"LBRAPIC",
  30  	"SAUTO",
  31  	"LAUTO",
  32  	"SEXT",
  33  	"LEXT",
  34  	"ZOREG",
  35  	"SOREG",
  36  	"LOREG",
  37  	"FPSCR",
  38  	"MSR",
  39  	"XER",
  40  	"LR",
  41  	"CTR",
  42  	"ANY",
  43  	"GOK",
  44  	"ADDR",
  45  	"GOTADDR",
  46  	"TOCADDR",
  47  	"TLS_LE",
  48  	"TLS_IE",
  49  	"TEXTSIZE",
  50  	"NCLASS",
  51  }
  52