2009-01-02 07:01:27 +00:00
|
|
|
//===- LLToken.h - Token Codes for LLVM Assembly Files ----------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the enums for the .ll lexer.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_ASMPARSER_LLTOKEN_H
|
|
|
|
#define LLVM_LIB_ASMPARSER_LLTOKEN_H
|
2009-01-02 07:01:27 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace lltok {
|
|
|
|
enum Kind {
|
|
|
|
// Markers
|
|
|
|
Eof, Error,
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
// Tokens with no info.
|
|
|
|
dotdotdot, // ...
|
|
|
|
equal, comma, // = ,
|
|
|
|
star, // *
|
|
|
|
lsquare, rsquare, // [ ]
|
|
|
|
lbrace, rbrace, // { }
|
|
|
|
less, greater, // < >
|
|
|
|
lparen, rparen, // ( )
|
2009-12-30 04:56:59 +00:00
|
|
|
exclaim, // !
|
2015-02-21 01:02:18 +00:00
|
|
|
bar, // |
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_x,
|
|
|
|
kw_true, kw_false,
|
|
|
|
kw_declare, kw_define,
|
|
|
|
kw_global, kw_constant,
|
2009-01-02 22:46:48 +00:00
|
|
|
|
Remove the linker_private and linker_private_weak linkages.
These linkages were introduced some time ago, but it was never very
clear what exactly their semantics were or what they should be used
for. Some investigation found these uses:
* utf-16 strings in clang.
* non-unnamed_addr strings produced by the sanitizers.
It turns out they were just working around a more fundamental problem.
For some sections a MachO linker needs a symbol in order to split the
section into atoms, and llvm had no idea that was the case. I fixed
that in r201700 and it is now safe to use the private linkage. When
the object ends up in a section that requires symbols, llvm will use a
'l' prefix instead of a 'L' prefix and things just work.
With that, these linkages were already dead, but there was a potential
future user in the objc metadata information. I am still looking at
CGObjcMac.cpp, but at this point I am convinced that linker_private
and linker_private_weak are not what they need.
The objc uses are currently split in
* Regular symbols (no '\01' prefix). LLVM already directly provides
whatever semantics they need.
* Uses of a private name (start with "\01L" or "\01l") and private
linkage. We can drop the "\01L" and "\01l" prefixes as soon as llvm
agrees with clang on L being ok or not for a given section. I have two
patches in code review for this.
* Uses of private name and weak linkage.
The last case is the one that one could think would fit one of these
linkages. That is not the case. The semantics are
* the linker will merge these symbol by *name*.
* the linker will hide them in the final DSO.
Given that the merging is done by name, any of the private (or
internal) linkages would be a bad match. They allow llvm to rename the
symbols, and that is really not what we want. From the llvm point of
view, these objects should really be (linkonce|weak)(_odr)?.
For now, just keeping the "\01l" prefix is probably the best for these
symbols. If we one day want to have a more direct support in llvm,
IMHO what we should add is not a linkage, it is just a hidden_symbol
attribute. It would be applicable to multiple linkages. For example,
on weak it would produce the current behavior we have for objc
metadata. On internal, it would be equivalent to private (and we
should then remove private).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203866 91177308-0d34-0410-b5e6-96231b3b80d8
2014-03-13 23:18:37 +00:00
|
|
|
kw_private,
|
2012-08-17 18:33:14 +00:00
|
|
|
kw_internal,
|
2013-11-01 17:09:14 +00:00
|
|
|
kw_linkonce, kw_linkonce_odr,
|
IR: add "cmpxchg weak" variant to support permitted failure.
This commit adds a weak variant of the cmpxchg operation, as described
in C++11. A cmpxchg instruction with this modifier is permitted to
fail to store, even if the comparison indicated it should.
As a result, cmpxchg instructions must return a flag indicating
success in addition to their original iN value loaded. Thus, for
uniformity *all* cmpxchg instructions now return "{ iN, i1 }". The
second flag is 1 when the store succeeded.
At the DAG level, a new ATOMIC_CMP_SWAP_WITH_SUCCESS node has been
added as the natural representation for the new cmpxchg instructions.
It is a strong cmpxchg.
By default this gets Expanded to the existing ATOMIC_CMP_SWAP during
Legalization, so existing backends should see no change in behaviour.
If they wish to deal with the enhanced node instead, they can call
setOperationAction on it. Beware: as a node with 2 results, it cannot
be selected from TableGen.
Currently, no use is made of the extra information provided in this
patch. Test updates are almost entirely adapting the input IR to the
new scheme.
Summary for out of tree users:
------------------------------
+ Legacy Bitcode files are upgraded during read.
+ Legacy assembly IR files will be invalid.
+ Front-ends must adapt to different type for "cmpxchg".
+ Backends should be unaffected by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210903 91177308-0d34-0410-b5e6-96231b3b80d8
2014-06-13 14:24:07 +00:00
|
|
|
kw_weak, // Used as a linkage, and a modifier for "cmpxchg".
|
|
|
|
kw_weak_odr, kw_appending,
|
2010-07-01 21:55:59 +00:00
|
|
|
kw_dllimport, kw_dllexport, kw_common, kw_available_externally,
|
Introduce new linkage types linkonce_odr, weak_odr, common_odr
and extern_weak_odr. These are the same as the non-odr versions,
except that they indicate that the global will only be overridden
by an *equivalent* global. In C, a function with weak linkage can
be overridden by a function which behaves completely differently.
This means that IP passes have to skip weak functions, since any
deductions made from the function definition might be wrong, since
the definition could be replaced by something completely different
at link time. This is not allowed in C++, thanks to the ODR
(One-Definition-Rule): if a function is replaced by another at
link-time, then the new function must be the same as the original
function. If a language knows that a function or other global can
only be overridden by an equivalent global, it can give it the
weak_odr linkage type, and the optimizers will understand that it
is alright to make deductions based on the function body. The
code generators on the other hand map weak and weak_odr linkage
to the same thing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66339 91177308-0d34-0410-b5e6-96231b3b80d8
2009-03-07 15:45:40 +00:00
|
|
|
kw_default, kw_hidden, kw_protected,
|
2011-01-08 16:42:36 +00:00
|
|
|
kw_unnamed_addr,
|
2013-02-05 05:57:38 +00:00
|
|
|
kw_externally_initialized,
|
2009-03-11 08:08:06 +00:00
|
|
|
kw_extern_weak,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_external, kw_thread_local,
|
2012-06-23 11:37:03 +00:00
|
|
|
kw_localdynamic, kw_initialexec, kw_localexec,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_zeroinitializer,
|
|
|
|
kw_undef, kw_null,
|
|
|
|
kw_to,
|
|
|
|
kw_tail,
|
2014-04-24 20:14:34 +00:00
|
|
|
kw_musttail,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_target,
|
|
|
|
kw_triple,
|
2012-06-23 11:37:03 +00:00
|
|
|
kw_unwind,
|
2012-11-28 08:41:48 +00:00
|
|
|
kw_deplibs, // FIXME: Remove in 4.0
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_datalayout,
|
|
|
|
kw_volatile,
|
2011-07-25 23:16:38 +00:00
|
|
|
kw_atomic,
|
|
|
|
kw_unordered, kw_monotonic, kw_acquire, kw_release, kw_acq_rel, kw_seq_cst,
|
|
|
|
kw_singlethread,
|
2012-11-27 00:42:44 +00:00
|
|
|
kw_nnan,
|
|
|
|
kw_ninf,
|
|
|
|
kw_nsz,
|
|
|
|
kw_arcp,
|
|
|
|
kw_fast,
|
2009-07-22 22:44:56 +00:00
|
|
|
kw_nuw,
|
|
|
|
kw_nsw,
|
2009-07-20 21:19:07 +00:00
|
|
|
kw_exact,
|
2009-07-27 21:53:46 +00:00
|
|
|
kw_inbounds,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_align,
|
|
|
|
kw_addrspace,
|
|
|
|
kw_section,
|
|
|
|
kw_alias,
|
|
|
|
kw_module,
|
|
|
|
kw_asm,
|
|
|
|
kw_sideeffect,
|
2009-10-21 23:28:00 +00:00
|
|
|
kw_alignstack,
|
2012-09-05 19:00:49 +00:00
|
|
|
kw_inteldialect,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_gc,
|
2013-09-16 01:08:15 +00:00
|
|
|
kw_prefix,
|
2014-12-03 02:08:38 +00:00
|
|
|
kw_prologue,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_c,
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2009-06-16 18:50:49 +00:00
|
|
|
kw_cc, kw_ccc, kw_fastcc, kw_coldcc,
|
2013-07-12 06:02:35 +00:00
|
|
|
kw_intel_ocl_bicc,
|
2014-10-28 01:29:26 +00:00
|
|
|
kw_x86_stdcallcc, kw_x86_fastcallcc, kw_x86_thiscallcc, kw_x86_vectorcallcc,
|
2009-06-16 18:50:49 +00:00
|
|
|
kw_arm_apcscc, kw_arm_aapcscc, kw_arm_aapcs_vfpcc,
|
2009-12-07 02:27:35 +00:00
|
|
|
kw_msp430_intrcc,
|
2010-09-25 07:46:17 +00:00
|
|
|
kw_ptx_kernel, kw_ptx_device,
|
2012-10-01 17:01:31 +00:00
|
|
|
kw_spir_kernel, kw_spir_func,
|
2013-07-12 06:02:35 +00:00
|
|
|
kw_x86_64_sysvcc, kw_x86_64_win64cc,
|
2013-11-08 23:28:16 +00:00
|
|
|
kw_webkit_jscc, kw_anyregcc,
|
2014-01-17 19:47:03 +00:00
|
|
|
kw_preserve_mostcc, kw_preserve_allcc,
|
2014-12-01 21:04:44 +00:00
|
|
|
kw_ghccc,
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2013-02-06 06:52:58 +00:00
|
|
|
// Attributes:
|
|
|
|
kw_attributes,
|
|
|
|
kw_alwaysinline,
|
2013-02-26 06:58:09 +00:00
|
|
|
kw_sanitize_address,
|
2013-06-27 00:25:01 +00:00
|
|
|
kw_builtin,
|
2013-02-06 06:52:58 +00:00
|
|
|
kw_byval,
|
2013-12-19 02:14:12 +00:00
|
|
|
kw_inalloca,
|
2013-05-24 12:26:52 +00:00
|
|
|
kw_cold,
|
2014-07-18 15:51:28 +00:00
|
|
|
kw_dereferenceable,
|
2015-04-16 20:29:50 +00:00
|
|
|
kw_dereferenceable_or_null,
|
2013-02-06 06:52:58 +00:00
|
|
|
kw_inlinehint,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_inreg,
|
2014-06-05 19:29:43 +00:00
|
|
|
kw_jumptable,
|
2013-02-06 06:52:58 +00:00
|
|
|
kw_minsize,
|
|
|
|
kw_naked,
|
|
|
|
kw_nest,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_noalias,
|
2013-02-22 00:12:35 +00:00
|
|
|
kw_nobuiltin,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_nocapture,
|
2013-02-06 06:52:58 +00:00
|
|
|
kw_noduplicate,
|
|
|
|
kw_noimplicitfloat,
|
|
|
|
kw_noinline,
|
|
|
|
kw_nonlazybind,
|
2014-05-20 01:23:40 +00:00
|
|
|
kw_nonnull,
|
2013-02-06 06:52:58 +00:00
|
|
|
kw_noredzone,
|
|
|
|
kw_noreturn,
|
|
|
|
kw_nounwind,
|
2013-08-23 11:53:55 +00:00
|
|
|
kw_optnone,
|
2013-02-06 06:52:58 +00:00
|
|
|
kw_optsize,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_readnone,
|
|
|
|
kw_readonly,
|
2013-04-20 05:14:40 +00:00
|
|
|
kw_returned,
|
2011-10-03 14:45:37 +00:00
|
|
|
kw_returns_twice,
|
2013-02-06 06:52:58 +00:00
|
|
|
kw_signext,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_ssp,
|
|
|
|
kw_sspreq,
|
2013-01-23 06:41:41 +00:00
|
|
|
kw_sspstrong,
|
2013-02-06 06:52:58 +00:00
|
|
|
kw_sret,
|
2013-02-26 06:58:09 +00:00
|
|
|
kw_sanitize_thread,
|
|
|
|
kw_sanitize_memory,
|
2013-02-06 06:52:58 +00:00
|
|
|
kw_uwtable,
|
|
|
|
kw_zeroext,
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_type,
|
|
|
|
kw_opaque,
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2014-06-27 18:19:56 +00:00
|
|
|
kw_comdat,
|
|
|
|
|
|
|
|
// Comdat types
|
|
|
|
kw_any,
|
|
|
|
kw_exactmatch,
|
|
|
|
kw_largest,
|
|
|
|
kw_noduplicates,
|
|
|
|
kw_samesize,
|
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_eq, kw_ne, kw_slt, kw_sgt, kw_sle, kw_sge, kw_ult, kw_ugt, kw_ule,
|
|
|
|
kw_uge, kw_oeq, kw_one, kw_olt, kw_ogt, kw_ole, kw_oge, kw_ord, kw_uno,
|
|
|
|
kw_ueq, kw_une,
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2011-07-28 21:48:00 +00:00
|
|
|
// atomicrmw operations that aren't also instruction keywords.
|
|
|
|
kw_xchg, kw_nand, kw_max, kw_min, kw_umax, kw_umin,
|
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
// Instruction Opcodes (Opcode in UIntVal).
|
2009-06-04 22:49:04 +00:00
|
|
|
kw_add, kw_fadd, kw_sub, kw_fsub, kw_mul, kw_fmul,
|
|
|
|
kw_udiv, kw_sdiv, kw_fdiv,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_urem, kw_srem, kw_frem, kw_shl, kw_lshr, kw_ashr,
|
2009-07-08 03:04:38 +00:00
|
|
|
kw_and, kw_or, kw_xor, kw_icmp, kw_fcmp,
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_phi, kw_call,
|
|
|
|
kw_trunc, kw_zext, kw_sext, kw_fptrunc, kw_fpext, kw_uitofp, kw_sitofp,
|
|
|
|
kw_fptoui, kw_fptosi, kw_inttoptr, kw_ptrtoint, kw_bitcast,
|
2013-11-15 01:34:59 +00:00
|
|
|
kw_addrspacecast,
|
2009-01-02 07:01:27 +00:00
|
|
|
kw_select, kw_va_arg,
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2011-08-12 20:24:12 +00:00
|
|
|
kw_landingpad, kw_personality, kw_cleanup, kw_catch, kw_filter,
|
|
|
|
|
2012-02-06 21:02:43 +00:00
|
|
|
kw_ret, kw_br, kw_switch, kw_indirectbr, kw_invoke, kw_resume,
|
2009-10-28 00:19:10 +00:00
|
|
|
kw_unreachable,
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2011-07-28 21:48:00 +00:00
|
|
|
kw_alloca, kw_load, kw_store, kw_fence, kw_cmpxchg, kw_atomicrmw,
|
|
|
|
kw_getelementptr,
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2011-06-17 06:57:15 +00:00
|
|
|
kw_extractelement, kw_insertelement, kw_shufflevector,
|
2009-10-28 03:39:23 +00:00
|
|
|
kw_extractvalue, kw_insertvalue, kw_blockaddress,
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2015-01-08 22:38:29 +00:00
|
|
|
// Metadata types.
|
|
|
|
kw_distinct,
|
|
|
|
|
2014-08-19 21:30:15 +00:00
|
|
|
// Use-list order directives.
|
|
|
|
kw_uselistorder, kw_uselistorder_bb,
|
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
// Unsigned Valued tokens (UIntVal).
|
|
|
|
GlobalID, // @42
|
|
|
|
LocalVarID, // %42
|
2013-02-06 06:52:58 +00:00
|
|
|
AttrGrpID, // #42
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
// String valued tokens (StrVal).
|
|
|
|
LabelStr, // foo:
|
|
|
|
GlobalVar, // @foo @"foo"
|
2014-06-27 18:19:56 +00:00
|
|
|
ComdatVar, // $foo
|
2009-01-02 07:01:27 +00:00
|
|
|
LocalVar, // %foo %"foo"
|
2009-12-30 05:02:06 +00:00
|
|
|
MetadataVar, // !foo
|
2009-01-02 07:01:27 +00:00
|
|
|
StringConstant, // "foo"
|
2015-02-13 01:42:09 +00:00
|
|
|
DwarfTag, // DW_TAG_foo
|
|
|
|
DwarfAttEncoding, // DW_ATE_foo
|
|
|
|
DwarfVirtuality, // DW_VIRTUALITY_foo
|
|
|
|
DwarfLang, // DW_LANG_foo
|
|
|
|
DwarfOp, // DW_OP_foo
|
2015-02-21 01:02:18 +00:00
|
|
|
DIFlag, // DIFlagFoo
|
2009-01-02 22:46:48 +00:00
|
|
|
|
2009-01-02 07:01:27 +00:00
|
|
|
// Type valued tokens (TyVal).
|
2009-01-02 22:46:48 +00:00
|
|
|
Type,
|
|
|
|
|
Revert r136253, r136263, r136269, r136313, r136325, r136326, r136329, r136338,
r136339, r136341, r136369, r136387, r136392, r136396, r136429, r136430, r136444,
r136445, r136446, r136253 pending review.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136556 91177308-0d34-0410-b5e6-96231b3b80d8
2011-07-30 05:42:50 +00:00
|
|
|
APFloat, // APFloatVal
|
|
|
|
APSInt // APSInt
|
2009-01-02 07:01:27 +00:00
|
|
|
};
|
|
|
|
} // end namespace lltok
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|