Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:RValue

33 /// RValue - This trivial value class is used to represent the result of an
37 class RValue {
70 static RValue get(llvm::Value *V) {
71 RValue ER;
77 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) {
78 RValue ER;
85 static RValue getComplex(const std::pair<llvm::Value *, llvm::Value *> &C) {
91 static RValue getAggregate(llvm::Value *V, bool Volatile = false) {
92 RValue ER;
354 RValue asAggregateRValue() const {
356 return RValue::getAggregate(getAddress(), isVolatileQualified());
490 RValue asRValue() const {
491 return RValue::getAggregate(getAddr(), isVolatile());