Add initial support for the convergent attribute.
[oota-llvm.git] / lib / AsmParser / LLToken.h
1 //===- LLToken.h - Token Codes for LLVM Assembly Files ----------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the enums for the .ll lexer.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_LIB_ASMPARSER_LLTOKEN_H
15 #define LLVM_LIB_ASMPARSER_LLTOKEN_H
16
17 namespace llvm {
18 namespace lltok {
19   enum Kind {
20     // Markers
21     Eof, Error,
22
23     // Tokens with no info.
24     dotdotdot,         // ...
25     equal, comma,      // =  ,
26     star,              // *
27     lsquare, rsquare,  // [  ]
28     lbrace, rbrace,    // {  }
29     less, greater,     // <  >
30     lparen, rparen,    // (  )
31     exclaim,           // !
32     bar,               // |
33
34     kw_x,
35     kw_true,    kw_false,
36     kw_declare, kw_define,
37     kw_global,  kw_constant,
38
39     kw_private,
40     kw_internal,
41     kw_linkonce, kw_linkonce_odr,
42     kw_weak, // Used as a linkage, and a modifier for "cmpxchg".
43     kw_weak_odr, kw_appending,
44     kw_dllimport, kw_dllexport, kw_common, kw_available_externally,
45     kw_default, kw_hidden, kw_protected,
46     kw_unnamed_addr,
47     kw_externally_initialized,
48     kw_extern_weak,
49     kw_external, kw_thread_local,
50     kw_localdynamic, kw_initialexec, kw_localexec,
51     kw_zeroinitializer,
52     kw_undef, kw_null,
53     kw_to,
54     kw_tail,
55     kw_musttail,
56     kw_target,
57     kw_triple,
58     kw_unwind,
59     kw_deplibs,                 // FIXME: Remove in 4.0
60     kw_datalayout,
61     kw_volatile,
62     kw_atomic,
63     kw_unordered, kw_monotonic, kw_acquire, kw_release, kw_acq_rel, kw_seq_cst,
64     kw_singlethread,
65     kw_nnan,
66     kw_ninf,
67     kw_nsz,
68     kw_arcp,
69     kw_fast,
70     kw_nuw,
71     kw_nsw,
72     kw_exact,
73     kw_inbounds,
74     kw_align,
75     kw_addrspace,
76     kw_section,
77     kw_alias,
78     kw_module,
79     kw_asm,
80     kw_sideeffect,
81     kw_alignstack,
82     kw_inteldialect,
83     kw_gc,
84     kw_prefix,
85     kw_prologue,
86     kw_c,
87
88     kw_cc, kw_ccc, kw_fastcc, kw_coldcc,
89     kw_intel_ocl_bicc,
90     kw_x86_stdcallcc, kw_x86_fastcallcc, kw_x86_thiscallcc, kw_x86_vectorcallcc,
91     kw_arm_apcscc, kw_arm_aapcscc, kw_arm_aapcs_vfpcc,
92     kw_msp430_intrcc,
93     kw_ptx_kernel, kw_ptx_device,
94     kw_spir_kernel, kw_spir_func,
95     kw_x86_64_sysvcc, kw_x86_64_win64cc,
96     kw_webkit_jscc, kw_anyregcc,
97     kw_preserve_mostcc, kw_preserve_allcc,
98     kw_ghccc,
99
100     // Attributes:
101     kw_attributes,
102     kw_alwaysinline,
103     kw_sanitize_address,
104     kw_builtin,
105     kw_byval,
106     kw_inalloca,
107     kw_cold,
108     kw_convergent,
109     kw_dereferenceable,
110     kw_dereferenceable_or_null,
111     kw_inlinehint,
112     kw_inreg,
113     kw_jumptable,
114     kw_minsize,
115     kw_naked,
116     kw_nest,
117     kw_noalias,
118     kw_nobuiltin,
119     kw_nocapture,
120     kw_noduplicate,
121     kw_noimplicitfloat,
122     kw_noinline,
123     kw_nonlazybind,
124     kw_nonnull,
125     kw_noredzone,
126     kw_noreturn,
127     kw_nounwind,
128     kw_optnone,
129     kw_optsize,
130     kw_readnone,
131     kw_readonly,
132     kw_returned,
133     kw_returns_twice,
134     kw_signext,
135     kw_ssp,
136     kw_sspreq,
137     kw_sspstrong,
138     kw_sret,
139     kw_sanitize_thread,
140     kw_sanitize_memory,
141     kw_uwtable,
142     kw_zeroext,
143
144     kw_type,
145     kw_opaque,
146
147     kw_comdat,
148
149     // Comdat types
150     kw_any,
151     kw_exactmatch,
152     kw_largest,
153     kw_noduplicates,
154     kw_samesize,
155
156     kw_eq, kw_ne, kw_slt, kw_sgt, kw_sle, kw_sge, kw_ult, kw_ugt, kw_ule,
157     kw_uge, kw_oeq, kw_one, kw_olt, kw_ogt, kw_ole, kw_oge, kw_ord, kw_uno,
158     kw_ueq, kw_une,
159
160     // atomicrmw operations that aren't also instruction keywords.
161     kw_xchg, kw_nand, kw_max, kw_min, kw_umax, kw_umin,
162
163     // Instruction Opcodes (Opcode in UIntVal).
164     kw_add,  kw_fadd, kw_sub,  kw_fsub, kw_mul,  kw_fmul,
165     kw_udiv, kw_sdiv, kw_fdiv,
166     kw_urem, kw_srem, kw_frem, kw_shl,  kw_lshr, kw_ashr,
167     kw_and,  kw_or,   kw_xor,  kw_icmp, kw_fcmp,
168
169     kw_phi, kw_call,
170     kw_trunc, kw_zext, kw_sext, kw_fptrunc, kw_fpext, kw_uitofp, kw_sitofp,
171     kw_fptoui, kw_fptosi, kw_inttoptr, kw_ptrtoint, kw_bitcast,
172     kw_addrspacecast,
173     kw_select, kw_va_arg,
174
175     kw_landingpad, kw_personality, kw_cleanup, kw_catch, kw_filter,
176
177     kw_ret, kw_br, kw_switch, kw_indirectbr, kw_invoke, kw_resume,
178     kw_unreachable,
179
180     kw_alloca, kw_load, kw_store, kw_fence, kw_cmpxchg, kw_atomicrmw,
181     kw_getelementptr,
182
183     kw_extractelement, kw_insertelement, kw_shufflevector,
184     kw_extractvalue, kw_insertvalue, kw_blockaddress,
185
186     // Metadata types.
187     kw_distinct,
188
189     // Use-list order directives.
190     kw_uselistorder, kw_uselistorder_bb,
191
192     // Unsigned Valued tokens (UIntVal).
193     GlobalID,          // @42
194     LocalVarID,        // %42
195     AttrGrpID,         // #42
196
197     // String valued tokens (StrVal).
198     LabelStr,          // foo:
199     GlobalVar,         // @foo @"foo"
200     ComdatVar,         // $foo
201     LocalVar,          // %foo %"foo"
202     MetadataVar,       // !foo
203     StringConstant,    // "foo"
204     DwarfTag,          // DW_TAG_foo
205     DwarfAttEncoding,  // DW_ATE_foo
206     DwarfVirtuality,   // DW_VIRTUALITY_foo
207     DwarfLang,         // DW_LANG_foo
208     DwarfOp,           // DW_OP_foo
209     DIFlag,            // DIFlagFoo
210
211     // Type valued tokens (TyVal).
212     Type,
213
214     APFloat,  // APFloatVal
215     APSInt // APSInt
216   };
217 } // end namespace lltok
218 } // end namespace llvm
219
220 #endif