Lines Matching refs:RValue
38 class RValue {
80 static RValue getIgnored() { in getIgnored()
85 static RValue get(llvm::Value *V) { in get()
86 RValue ER; in get()
92 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) { in getComplex()
93 RValue ER; in getComplex()
100 static RValue getComplex(const std::pair<llvm::Value *, llvm::Value *> &C) { in getComplex()
106 static RValue getAggregate(Address addr, bool isVolatile = false) {
107 RValue ER;
435 RValue asAggregateRValue() const { in asAggregateRValue()
436 return RValue::getAggregate(getAddress(), isVolatileQualified()); in asAggregateRValue()
578 RValue asRValue() const { in asRValue()
580 return RValue::getIgnored(); in asRValue()
582 return RValue::getAggregate(getAddress(), isVolatile()); in asRValue()