Lines Matching refs:RValue
39 class RValue {
81 static RValue getIgnored() { in getIgnored()
86 static RValue get(llvm::Value *V) { in get()
87 RValue ER; in get()
93 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) { in getComplex()
94 RValue ER; in getComplex()
101 static RValue getComplex(const std::pair<llvm::Value *, llvm::Value *> &C) { in getComplex()
107 static RValue getAggregate(Address addr, bool isVolatile = false) {
108 RValue ER;
465 RValue asAggregateRValue(CodeGenFunction &CGF) const { in asAggregateRValue()
466 return RValue::getAggregate(getAddress(CGF), isVolatileQualified()); in asAggregateRValue()
639 RValue asRValue() const { in asRValue()
641 return RValue::getIgnored(); in asRValue()
643 return RValue::getAggregate(getAddress(), isVolatile()); in asRValue()