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 LIBS_ASMPARSER_LLTOKEN_H 15 #define LIBS_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 backslash, // \ (not /) 32 exclaim, // ! 33 34 kw_x, 35 kw_true, kw_false, 36 kw_declare, kw_define, 37 kw_global, kw_constant, 38 39 kw_private, kw_linker_private, kw_linker_private_weak, 40 kw_linker_private_weak_def_auto, kw_internal, 41 kw_linkonce, kw_linkonce_odr, kw_weak, kw_weak_odr, kw_appending, 42 kw_dllimport, kw_dllexport, kw_common, kw_available_externally, 43 kw_default, kw_hidden, kw_protected, 44 kw_unnamed_addr, 45 kw_extern_weak, 46 kw_external, kw_thread_local, 47 kw_zeroinitializer, 48 kw_undef, kw_null, 49 kw_to, 50 kw_tail, 51 kw_target, 52 kw_triple, 53 kw_unwind, 54 kw_deplibs, 55 kw_datalayout, 56 kw_volatile, 57 kw_atomic, 58 kw_unordered, kw_monotonic, kw_acquire, kw_release, kw_acq_rel, kw_seq_cst, 59 kw_singlethread, 60 kw_nuw, 61 kw_nsw, 62 kw_exact, 63 kw_inbounds, 64 kw_align, 65 kw_addrspace, 66 kw_section, 67 kw_alias, 68 kw_module, 69 kw_asm, 70 kw_sideeffect, 71 kw_alignstack, 72 kw_gc, 73 kw_c, 74 75 kw_cc, kw_ccc, kw_fastcc, kw_coldcc, 76 kw_x86_stdcallcc, kw_x86_fastcallcc, kw_x86_thiscallcc, 77 kw_arm_apcscc, kw_arm_aapcscc, kw_arm_aapcs_vfpcc, 78 kw_msp430_intrcc, 79 kw_ptx_kernel, kw_ptx_device, 80 81 kw_signext, 82 kw_zeroext, 83 kw_inreg, 84 kw_sret, 85 kw_nounwind, 86 kw_noreturn, 87 kw_noalias, 88 kw_nocapture, 89 kw_byval, 90 kw_nest, 91 kw_readnone, 92 kw_readonly, 93 kw_uwtable, 94 kw_returns_twice, 95 96 kw_inlinehint, 97 kw_noinline, 98 kw_alwaysinline, 99 kw_optsize, 100 kw_ssp, 101 kw_sspreq, 102 kw_noredzone, 103 kw_noimplicitfloat, 104 kw_naked, 105 kw_nonlazybind, 106 kw_address_safety, 107 108 kw_type, 109 kw_opaque, 110 111 kw_eq, kw_ne, kw_slt, kw_sgt, kw_sle, kw_sge, kw_ult, kw_ugt, kw_ule, 112 kw_uge, kw_oeq, kw_one, kw_olt, kw_ogt, kw_ole, kw_oge, kw_ord, kw_uno, 113 kw_ueq, kw_une, 114 115 // atomicrmw operations that aren't also instruction keywords. 116 kw_xchg, kw_nand, kw_max, kw_min, kw_umax, kw_umin, 117 118 // Instruction Opcodes (Opcode in UIntVal). 119 kw_add, kw_fadd, kw_sub, kw_fsub, kw_mul, kw_fmul, 120 kw_udiv, kw_sdiv, kw_fdiv, 121 kw_urem, kw_srem, kw_frem, kw_shl, kw_lshr, kw_ashr, 122 kw_and, kw_or, kw_xor, kw_icmp, kw_fcmp, 123 124 kw_phi, kw_call, 125 kw_trunc, kw_zext, kw_sext, kw_fptrunc, kw_fpext, kw_uitofp, kw_sitofp, 126 kw_fptoui, kw_fptosi, kw_inttoptr, kw_ptrtoint, kw_bitcast, 127 kw_select, kw_va_arg, 128 129 kw_landingpad, kw_personality, kw_cleanup, kw_catch, kw_filter, 130 131 kw_ret, kw_br, kw_switch, kw_indirectbr, kw_invoke, kw_resume, 132 kw_unreachable, 133 134 kw_alloca, kw_load, kw_store, kw_fence, kw_cmpxchg, kw_atomicrmw, 135 kw_getelementptr, 136 137 kw_extractelement, kw_insertelement, kw_shufflevector, 138 kw_extractvalue, kw_insertvalue, kw_blockaddress, 139 140 // Unsigned Valued tokens (UIntVal). 141 GlobalID, // @42 142 LocalVarID, // %42 143 144 // String valued tokens (StrVal). 145 LabelStr, // foo: 146 GlobalVar, // @foo @"foo" 147 LocalVar, // %foo %"foo" 148 MetadataVar, // !foo 149 StringConstant, // "foo" 150 151 // Type valued tokens (TyVal). 152 Type, 153 154 APFloat, // APFloatVal 155 APSInt // APSInt 156 }; 157 } // end namespace lltok 158 } // end namespace llvm 159 160 #endif 161