Lines Matching refs:Value
10 // This class represents the inline asm strings, which are Value*'s that are
20 #include "llvm/IR/Value.h"
32 class InlineAsm : public Value {
76 return reinterpret_cast<PointerType*>(Value::getType());
103 /// input constraint is required to match it (e.g. "0"). The value is the
105 /// constraint #0 and constraint #4 has the value "0", this will be 4).
128 /// input constraint is required to match it (e.g. "0"). The value is the
130 /// constraint #0 and constraint #4 has the value "0", this will be 4).
186 static inline bool classof(const Value *V) {
187 return V->getValueID() == Value::InlineAsmVal;
194 // Bits 2-0 - A Kind_* value indicating the kind of the operand.
199 // When bits 2-0 are Kind_Mem, the Constraint_* value must be
202 // Bit 30-16 - A Constraint_* value indicating the original constraint
290 // Store RC + 1, reserve the value 0 to mean 'no register class'.