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_dereferenceable, 109 kw_dereferenceable_or_null, 110 kw_inlinehint, 111 kw_inreg, 112 kw_jumptable, 113 kw_minsize, 114 kw_naked, 115 kw_nest, 116 kw_noalias, 117 kw_nobuiltin, 118 kw_nocapture, 119 kw_noduplicate, 120 kw_noimplicitfloat, 121 kw_noinline, 122 kw_nonlazybind, 123 kw_nonnull, 124 kw_noredzone, 125 kw_noreturn, 126 kw_nounwind, 127 kw_optnone, 128 kw_optsize, 129 kw_readnone, 130 kw_readonly, 131 kw_returned, 132 kw_returns_twice, 133 kw_signext, 134 kw_ssp, 135 kw_sspreq, 136 kw_sspstrong, 137 kw_sret, 138 kw_sanitize_thread, 139 kw_sanitize_memory, 140 kw_uwtable, 141 kw_zeroext, 142 143 kw_type, 144 kw_opaque, 145 146 kw_comdat, 147 148 // Comdat types 149 kw_any, 150 kw_exactmatch, 151 kw_largest, 152 kw_noduplicates, 153 kw_samesize, 154 155 kw_eq, kw_ne, kw_slt, kw_sgt, kw_sle, kw_sge, kw_ult, kw_ugt, kw_ule, 156 kw_uge, kw_oeq, kw_one, kw_olt, kw_ogt, kw_ole, kw_oge, kw_ord, kw_uno, 157 kw_ueq, kw_une, 158 159 // atomicrmw operations that aren't also instruction keywords. 160 kw_xchg, kw_nand, kw_max, kw_min, kw_umax, kw_umin, 161 162 // Instruction Opcodes (Opcode in UIntVal). 163 kw_add, kw_fadd, kw_sub, kw_fsub, kw_mul, kw_fmul, 164 kw_udiv, kw_sdiv, kw_fdiv, 165 kw_urem, kw_srem, kw_frem, kw_shl, kw_lshr, kw_ashr, 166 kw_and, kw_or, kw_xor, kw_icmp, kw_fcmp, 167 168 kw_phi, kw_call, 169 kw_trunc, kw_zext, kw_sext, kw_fptrunc, kw_fpext, kw_uitofp, kw_sitofp, 170 kw_fptoui, kw_fptosi, kw_inttoptr, kw_ptrtoint, kw_bitcast, 171 kw_addrspacecast, 172 kw_select, kw_va_arg, 173 174 kw_landingpad, kw_personality, kw_cleanup, kw_catch, kw_filter, 175 176 kw_ret, kw_br, kw_switch, kw_indirectbr, kw_invoke, kw_resume, 177 kw_unreachable, 178 179 kw_alloca, kw_load, kw_store, kw_fence, kw_cmpxchg, kw_atomicrmw, 180 kw_getelementptr, 181 182 kw_extractelement, kw_insertelement, kw_shufflevector, 183 kw_extractvalue, kw_insertvalue, kw_blockaddress, 184 185 // Metadata types. 186 kw_distinct, 187 188 // Use-list order directives. 189 kw_uselistorder, kw_uselistorder_bb, 190 191 // Unsigned Valued tokens (UIntVal). 192 GlobalID, // @42 193 LocalVarID, // %42 194 AttrGrpID, // #42 195 196 // String valued tokens (StrVal). 197 LabelStr, // foo: 198 GlobalVar, // @foo @"foo" 199 ComdatVar, // $foo 200 LocalVar, // %foo %"foo" 201 MetadataVar, // !foo 202 StringConstant, // "foo" 203 DwarfTag, // DW_TAG_foo 204 DwarfAttEncoding, // DW_ATE_foo 205 DwarfVirtuality, // DW_VIRTUALITY_foo 206 DwarfLang, // DW_LANG_foo 207 DwarfOp, // DW_OP_foo 208 DIFlag, // DIFlagFoo 209 210 // Type valued tokens (TyVal). 211 Type, 212 213 APFloat, // APFloatVal 214 APSInt // APSInt 215 }; 216 } // end namespace lltok 217 } // end namespace llvm 218 219 #endif 220