Rename NumOperands to make it clear its managed by the User. NFC.
authorPete Cooper <peter_cooper@apple.com>
Fri, 12 Jun 2015 17:48:10 +0000 (17:48 +0000)
committerPete Cooper <peter_cooper@apple.com>
Fri, 12 Jun 2015 17:48:10 +0000 (17:48 +0000)
commitaaa3fa61d2d2107095f90648249ffb2f6f7099ca
tree217fcf374cb362cc6a468b55d54d27ede9d944f9
parentcff40fc84aed326d99e682a8835be60345ca7b49
Rename NumOperands to make it clear its managed by the User. NFC.

This is to try make it very clear that subclasses shouldn't be changing
the value directly.  Now that OperandList for normal instructions is computed
using the NumOperands, its critical that the NumOperands is accurate or we
could compute the wrong offset to the first operand.

I looked over all places which update NumOperands and they are all safe.
Hung off use User's don't use NumOperands to compute the OperandList so they
are safe to continue to manipulate it.  The only other User which changed it
was GlobalVariable which has an optional init list but always allocated space
for a single Use.  It was correctly setting NumOperands to 1 before setting an
initializer, and setting it to 0 after clearing the init list, so the order was safe.

Added some comments to that code to make sure that this isn't changed in future
without being aware of this constraint.

Reviewed by Duncan Exon Smith.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239621 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/IR/GlobalVariable.h
include/llvm/IR/Instructions.h
include/llvm/IR/User.h
include/llvm/IR/Value.h
lib/IR/Globals.cpp
lib/IR/Instructions.cpp
lib/IR/User.cpp
lib/IR/Value.cpp