I'm currently working with vellvm, developing a transformation on it. I'm a coq newbie.
This is the atom implementation: http://www.cis.upenn.edu/~plclub/popl08-tutorial/code/coqdoc/Atom.html
In vellvm, atoms are used as ids and labels, for example.
I would like to insert a block of code in one llvm transformation, and for that I would have to give a label of type "atom". How can I construct a Atom label?
Putting my question a bit more general: 1) Why someone would want to use Atom? 2) How can I construct one? 3) If I construct this way, will I have trouble taking in consideration that the atoms might be used differently in the code?
Thanks!
Edit: Code for id and labels
Definition id := atom. (*r identities *)
Definition l := atom. (*r labels *)