1 //===- LLToken.h - Token Codes for LLVM Assembly Files ----------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the enums for the .ll lexer.
12 //===----------------------------------------------------------------------===//
14 #ifndef LIBS_ASMPARSER_LLTOKEN_H
15 #define LIBS_ASMPARSER_LLTOKEN_H
23 // Tokens with no info.
27 lsquare, rsquare, // [ ]
28 lbrace, rbrace, // { }
30 lparen, rparen, // ( )
31 backslash, // \ (not /)
37 kw_declare, kw_define,
38 kw_global, kw_constant,
40 kw_private, kw_linker_private, kw_linker_private_weak,
41 kw_linker_private_weak_def_auto, // FIXME: For backwards compatibility.
43 kw_linkonce, kw_linkonce_odr, kw_linkonce_odr_auto_hide,
44 kw_weak, kw_weak_odr, kw_appending,
45 kw_dllimport, kw_dllexport, kw_common, kw_available_externally,
46 kw_default, kw_hidden, kw_protected,
48 kw_externally_initialized,
50 kw_external, kw_thread_local,
51 kw_localdynamic, kw_initialexec, kw_localexec,
59 kw_deplibs, // FIXME: Remove in 4.0
63 kw_unordered, kw_monotonic, kw_acquire, kw_release, kw_acq_rel, kw_seq_cst,
86 kw_cc, kw_ccc, kw_fastcc, kw_coldcc,
88 kw_x86_stdcallcc, kw_x86_fastcallcc, kw_x86_thiscallcc,
89 kw_arm_apcscc, kw_arm_aapcscc, kw_arm_aapcs_vfpcc,
91 kw_ptx_kernel, kw_ptx_device,
92 kw_spir_kernel, kw_spir_func,
93 kw_x86_64_sysvcc, kw_x86_64_win64cc,
136 kw_eq, kw_ne, kw_slt, kw_sgt, kw_sle, kw_sge, kw_ult, kw_ugt, kw_ule,
137 kw_uge, kw_oeq, kw_one, kw_olt, kw_ogt, kw_ole, kw_oge, kw_ord, kw_uno,
140 // atomicrmw operations that aren't also instruction keywords.
141 kw_xchg, kw_nand, kw_max, kw_min, kw_umax, kw_umin,
143 // Instruction Opcodes (Opcode in UIntVal).
144 kw_add, kw_fadd, kw_sub, kw_fsub, kw_mul, kw_fmul,
145 kw_udiv, kw_sdiv, kw_fdiv,
146 kw_urem, kw_srem, kw_frem, kw_shl, kw_lshr, kw_ashr,
147 kw_and, kw_or, kw_xor, kw_icmp, kw_fcmp,
150 kw_trunc, kw_zext, kw_sext, kw_fptrunc, kw_fpext, kw_uitofp, kw_sitofp,
151 kw_fptoui, kw_fptosi, kw_inttoptr, kw_ptrtoint, kw_bitcast,
152 kw_select, kw_va_arg,
154 kw_landingpad, kw_personality, kw_cleanup, kw_catch, kw_filter,
156 kw_ret, kw_br, kw_switch, kw_indirectbr, kw_invoke, kw_resume,
159 kw_alloca, kw_load, kw_store, kw_fence, kw_cmpxchg, kw_atomicrmw,
162 kw_extractelement, kw_insertelement, kw_shufflevector,
163 kw_extractvalue, kw_insertvalue, kw_blockaddress,
165 // Unsigned Valued tokens (UIntVal).
170 // String valued tokens (StrVal).
172 GlobalVar, // @foo @"foo"
173 LocalVar, // %foo %"foo"
175 StringConstant, // "foo"
177 // Type valued tokens (TyVal).
180 APFloat, // APFloatVal
183 } // end namespace lltok
184 } // end namespace llvm