Lines Matching refs:Value
23 #include "llvm/IR/Value.h"
32 class Value;
54 /// CallArgList - Type for representing both the value and type of
62 /// The original argument. Note that the argument l-value
69 /// A value to "use" after the writeback, or null.
70 llvm::Value *ToUse;
92 llvm::Value *toUse) {
149 /// ReturnValueSlot - Contains the address where the return value of a
152 llvm::PointerIntPair<llvm::Value *, 2, unsigned int> Value;
155 // Return value slot flags
164 : Value(Addr.isValid() ? Addr.getPointer() : nullptr,
170 bool isVolatile() const { return Value.getInt() & IS_VOLATILE; }
171 Address getValue() const { return Address(Value.getPointer(), Alignment); }
172 bool isUnused() const { return Value.getInt() & IS_UNUSED; }