Lines Matching refs:RValue
39 class RValue {
84 static RValue getIgnored() { in getIgnored()
89 static RValue get(llvm::Value *V) { in get()
90 RValue ER; in get()
96 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) { in getComplex()
97 RValue ER; in getComplex()
104 static RValue getComplex(const std::pair<llvm::Value *, llvm::Value *> &C) { in getComplex()
110 static RValue getAggregate(Address addr, bool isVolatile = false) {
111 RValue ER;
485 RValue asAggregateRValue(CodeGenFunction &CGF) const { in asAggregateRValue()
486 return RValue::getAggregate(getAddress(CGF), isVolatileQualified()); in asAggregateRValue()
651 RValue asRValue() const { in asRValue()
653 return RValue::getIgnored(); in asRValue()
655 return RValue::getAggregate(getAddress(), isVolatile()); in asRValue()