Home | History | Annotate | Download | only in CodeGen

Lines Matching full:rvalue

32 /// RValue - This trivial value class is used to represent the result of an
36 class RValue {
69 static RValue get(llvm::Value *V) {
70 RValue ER;
76 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) {
77 RValue ER;
84 static RValue getComplex(const std::pair<llvm::Value *, llvm::Value *> &C) {
90 static RValue getAggregate(llvm::Value *V, bool Volatile = false) {
91 RValue ER;
452 RValue asRValue() const {
453 return RValue::getAggregate(getAddr(), isVolatile());