Searched defs:getValueID (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp122 unsigned ValueEnumerator::getValueID(const Value *V) const { function in class:ValueEnumerator
/external/llvm/include/llvm/IR/
H A DValue.h219 /// getValueID - Return an ID for the concrete type of this object. This is
228 unsigned getValueID() const { function in class:llvm::Value
337 return Val.getValueID() >= Value::ConstantFirstVal &&
338 Val.getValueID() <= Value::ConstantLastVal;
344 return Val.getValueID() == Value::ArgumentVal;
350 return Val.getValueID() == Value::InlineAsmVal;
356 return Val.getValueID() >= Value::InstructionVal;
362 return Val.getValueID() == Value::BasicBlockVal;
368 return Val.getValueID() == Value::FunctionVal;
374 return Val.getValueID()
[all...]

Completed in 91 milliseconds