Introduce enum values for previously defined metadata types. (NFC)
authorPhilip Reames <listmail@philipreames.com>
Tue, 21 Oct 2014 00:13:20 +0000 (00:13 +0000)
committerPhilip Reames <listmail@philipreames.com>
Tue, 21 Oct 2014 00:13:20 +0000 (00:13 +0000)
commit5a3f5f751bdca3483e1edb0d3ac025a466c1ec2d
treedcbbec576b30401977a2b90e0be7ab28413101c0
parent3eb69f5482199fe33c2963af380845238656c846
Introduce enum values for previously defined metadata types. (NFC)

Our metadata scheme lazily assigns IDs to string metadata, but we have a mechanism to preassign them as well.  Using a preassigned ID is helpful since we get compile time type checking, and avoid some (minimal) string construction and comparison.  This change adds enum value for three existing metadata types:
+    MD_nontemporal = 9, // "nontemporal"
+    MD_mem_parallel_loop_access = 10, // "llvm.mem.parallel_loop_access"
+    MD_nonnull = 11 // "nonnull"

I went through an updated various uses as well.  I made no attempt to get all uses; I focused on the ones which were easily grepable and easily to translate.  For example, there were several items in LoopInfo.cpp I chose not to update.

llvm-svn: 220248
llvm/include/llvm/IR/LLVMContext.h
llvm/lib/Analysis/LoopInfo.cpp
llvm/lib/Analysis/ValueTracking.cpp
llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
llvm/lib/IR/LLVMContext.cpp
llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
llvm/lib/Transforms/Scalar/LICM.cpp