Home | History | Annotate | Download | only in CodeGen

Lines Matching full:complex

1 //===--- CGExprComplex.cpp - Emit LLVM Code for Complex Exprs -------------===//
10 // This contains code to emit Expr nodes with complex types as LLVM code.
26 // Complex Expression Emitter
31 /// Return the complex type that we are meant to emit.
69 /// EmitLoadOfLValue - Given an expression with complex type that represents a
82 /// EmitComplexToComplexCast - Emit a cast from complex value Val to DestType.
99 llvm_unreachable("Stmt can't have complex result type!");
182 // LNot,Real,Imag never return complex.
199 assert(E->getType()->isAnyComplexType() && "Expected complex type!");
205 assert(E->getType()->isAnyComplexType() && "Expected complex type!");
259 // GCC rejects rem/and/or/xor for integer complex.
260 // Logical and/or always return int, never complex.
262 // No comparisons produce a complex result.
292 /// EmitLoadOfLValue - Given an RValue reference for a complex, emit code to
295 assert(lvalue.isSimple() && "non-simple complex l-value?");
355 CGF.ErrorUnsupported(E, "complex expression");
379 assert(RetAlloca && "Expected complex return value");
383 /// EmitComplexToComplexCast - Emit a cast from complex value Val to DestType.
391 // C99 6.3.1.6: When a value of complex type is converted to another
392 // complex type, both the real and imaginary parts follow the conversion
402 // Convert the input element to the element type of the complex.
474 llvm_unreachable("invalid cast kind for complex value");
488 llvm_unreachable("unknown cast resulting in complex value");
813 CGF.ErrorUnsupported(E, "complex va_arg expression");
829 /// complex type, ignoring the result.
833 "Invalid complex expression to emit");
842 "Invalid complex expression to emit");
848 /// EmitStoreOfComplex - Store a complex number into the specified l-value.
854 /// EmitLoadOfComplex - Load a complex number from the specified address.
875 llvm_unreachable("unexpected complex compound assignment");