clang 20.0.0git
CGExprComplex.cpp
Go to the documentation of this file.
1//===--- CGExprComplex.cpp - Emit LLVM Code for Complex Exprs -------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This contains code to emit Expr nodes with complex types as LLVM code.
10//
11//===----------------------------------------------------------------------===//
12
13#include "CGOpenMPRuntime.h"
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
16#include "ConstantEmitter.h"
18#include "llvm/ADT/STLExtras.h"
19#include "llvm/IR/Constants.h"
20#include "llvm/IR/Instructions.h"
21#include "llvm/IR/MDBuilder.h"
22#include "llvm/IR/Metadata.h"
23#include <algorithm>
24using namespace clang;
25using namespace CodeGen;
26
27//===----------------------------------------------------------------------===//
28// Complex Expression Emitter
29//===----------------------------------------------------------------------===//
30
31namespace llvm {
32extern cl::opt<bool> EnableSingleByteCoverage;
33} // namespace llvm
34
35typedef CodeGenFunction::ComplexPairTy ComplexPairTy;
36
37/// Return the complex type that we are meant to emit.
39 type = type.getCanonicalType();
40 if (const ComplexType *comp = dyn_cast<ComplexType>(type)) {
41 return comp;
42 } else {
43 return cast<ComplexType>(cast<AtomicType>(type)->getValueType());
44 }
45}
46
47namespace {
48class ComplexExprEmitter
49 : public StmtVisitor<ComplexExprEmitter, ComplexPairTy> {
50 CodeGenFunction &CGF;
51 CGBuilderTy &Builder;
52 bool IgnoreReal;
53 bool IgnoreImag;
54 bool FPHasBeenPromoted;
55
56public:
57 ComplexExprEmitter(CodeGenFunction &cgf, bool ir = false, bool ii = false)
58 : CGF(cgf), Builder(CGF.Builder), IgnoreReal(ir), IgnoreImag(ii),
59 FPHasBeenPromoted(false) {}
60
61 //===--------------------------------------------------------------------===//
62 // Utilities
63 //===--------------------------------------------------------------------===//
64
65 bool TestAndClearIgnoreReal() {
66 bool I = IgnoreReal;
67 IgnoreReal = false;
68 return I;
69 }
70 bool TestAndClearIgnoreImag() {
71 bool I = IgnoreImag;
72 IgnoreImag = false;
73 return I;
74 }
75
76 /// EmitLoadOfLValue - Given an expression with complex type that represents a
77 /// value l-value, this method emits the address of the l-value, then loads
78 /// and returns the result.
79 ComplexPairTy EmitLoadOfLValue(const Expr *E) {
80 return EmitLoadOfLValue(CGF.EmitLValue(E), E->getExprLoc());
81 }
82
83 ComplexPairTy EmitLoadOfLValue(LValue LV, SourceLocation Loc);
84
85 /// EmitStoreOfComplex - Store the specified real/imag parts into the
86 /// specified value pointer.
87 void EmitStoreOfComplex(ComplexPairTy Val, LValue LV, bool isInit);
88
89 /// Emit a cast from complex value Val to DestType.
90 ComplexPairTy EmitComplexToComplexCast(ComplexPairTy Val, QualType SrcType,
91 QualType DestType, SourceLocation Loc);
92 /// Emit a cast from scalar value Val to DestType.
93 ComplexPairTy EmitScalarToComplexCast(llvm::Value *Val, QualType SrcType,
94 QualType DestType, SourceLocation Loc);
95
96 //===--------------------------------------------------------------------===//
97 // Visitor Methods
98 //===--------------------------------------------------------------------===//
99
101 ApplyDebugLocation DL(CGF, E);
103 }
104
105 ComplexPairTy VisitStmt(Stmt *S) {
106 S->dump(llvm::errs(), CGF.getContext());
107 llvm_unreachable("Stmt can't have complex result type!");
108 }
109 ComplexPairTy VisitExpr(Expr *S);
110 ComplexPairTy VisitConstantExpr(ConstantExpr *E) {
111 if (llvm::Constant *Result = ConstantEmitter(CGF).tryEmitConstantExpr(E))
112 return ComplexPairTy(Result->getAggregateElement(0U),
113 Result->getAggregateElement(1U));
114 return Visit(E->getSubExpr());
115 }
116 ComplexPairTy VisitParenExpr(ParenExpr *PE) { return Visit(PE->getSubExpr());}
117 ComplexPairTy VisitGenericSelectionExpr(GenericSelectionExpr *GE) {
118 return Visit(GE->getResultExpr());
119 }
120 ComplexPairTy VisitImaginaryLiteral(const ImaginaryLiteral *IL);
122 VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *PE) {
123 return Visit(PE->getReplacement());
124 }
125 ComplexPairTy VisitCoawaitExpr(CoawaitExpr *S) {
126 return CGF.EmitCoawaitExpr(*S).getComplexVal();
127 }
128 ComplexPairTy VisitCoyieldExpr(CoyieldExpr *S) {
129 return CGF.EmitCoyieldExpr(*S).getComplexVal();
130 }
131 ComplexPairTy VisitUnaryCoawait(const UnaryOperator *E) {
132 return Visit(E->getSubExpr());
133 }
134
135 ComplexPairTy emitConstant(const CodeGenFunction::ConstantEmission &Constant,
136 Expr *E) {
137 assert(Constant && "not a constant");
138 if (Constant.isReference())
139 return EmitLoadOfLValue(Constant.getReferenceLValue(CGF, E),
140 E->getExprLoc());
141
142 llvm::Constant *pair = Constant.getValue();
143 return ComplexPairTy(pair->getAggregateElement(0U),
144 pair->getAggregateElement(1U));
145 }
146
147 // l-values.
148 ComplexPairTy VisitDeclRefExpr(DeclRefExpr *E) {
149 if (CodeGenFunction::ConstantEmission Constant = CGF.tryEmitAsConstant(E))
150 return emitConstant(Constant, E);
151 return EmitLoadOfLValue(E);
152 }
153 ComplexPairTy VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
154 return EmitLoadOfLValue(E);
155 }
156 ComplexPairTy VisitObjCMessageExpr(ObjCMessageExpr *E) {
157 return CGF.EmitObjCMessageExpr(E).getComplexVal();
158 }
159 ComplexPairTy VisitArraySubscriptExpr(Expr *E) { return EmitLoadOfLValue(E); }
160 ComplexPairTy VisitMemberExpr(MemberExpr *ME) {
161 if (CodeGenFunction::ConstantEmission Constant =
162 CGF.tryEmitAsConstant(ME)) {
163 CGF.EmitIgnoredExpr(ME->getBase());
164 return emitConstant(Constant, ME);
165 }
166 return EmitLoadOfLValue(ME);
167 }
168 ComplexPairTy VisitOpaqueValueExpr(OpaqueValueExpr *E) {
169 if (E->isGLValue())
170 return EmitLoadOfLValue(CGF.getOrCreateOpaqueLValueMapping(E),
171 E->getExprLoc());
173 }
174
175 ComplexPairTy VisitPseudoObjectExpr(PseudoObjectExpr *E) {
177 }
178
179 // FIXME: CompoundLiteralExpr
180
181 ComplexPairTy EmitCast(CastKind CK, Expr *Op, QualType DestTy);
182 ComplexPairTy VisitImplicitCastExpr(ImplicitCastExpr *E) {
183 // Unlike for scalars, we don't have to worry about function->ptr demotion
184 // here.
185 if (E->changesVolatileQualification())
186 return EmitLoadOfLValue(E);
187 return EmitCast(E->getCastKind(), E->getSubExpr(), E->getType());
188 }
189 ComplexPairTy VisitCastExpr(CastExpr *E) {
190 if (const auto *ECE = dyn_cast<ExplicitCastExpr>(E))
191 CGF.CGM.EmitExplicitCastExprType(ECE, &CGF);
192 if (E->changesVolatileQualification())
193 return EmitLoadOfLValue(E);
194 return EmitCast(E->getCastKind(), E->getSubExpr(), E->getType());
195 }
196 ComplexPairTy VisitCallExpr(const CallExpr *E);
197 ComplexPairTy VisitStmtExpr(const StmtExpr *E);
198
199 // Operators.
200 ComplexPairTy VisitPrePostIncDec(const UnaryOperator *E,
201 bool isInc, bool isPre) {
202 LValue LV = CGF.EmitLValue(E->getSubExpr());
203 return CGF.EmitComplexPrePostIncDec(E, LV, isInc, isPre);
204 }
205 ComplexPairTy VisitUnaryPostDec(const UnaryOperator *E) {
206 return VisitPrePostIncDec(E, false, false);
207 }
208 ComplexPairTy VisitUnaryPostInc(const UnaryOperator *E) {
209 return VisitPrePostIncDec(E, true, false);
210 }
211 ComplexPairTy VisitUnaryPreDec(const UnaryOperator *E) {
212 return VisitPrePostIncDec(E, false, true);
213 }
214 ComplexPairTy VisitUnaryPreInc(const UnaryOperator *E) {
215 return VisitPrePostIncDec(E, true, true);
216 }
217 ComplexPairTy VisitUnaryDeref(const Expr *E) { return EmitLoadOfLValue(E); }
218
219 ComplexPairTy VisitUnaryPlus(const UnaryOperator *E,
220 QualType PromotionType = QualType());
221 ComplexPairTy VisitPlus(const UnaryOperator *E, QualType PromotionType);
222 ComplexPairTy VisitUnaryMinus(const UnaryOperator *E,
223 QualType PromotionType = QualType());
224 ComplexPairTy VisitMinus(const UnaryOperator *E, QualType PromotionType);
225 ComplexPairTy VisitUnaryNot (const UnaryOperator *E);
226 // LNot,Real,Imag never return complex.
227 ComplexPairTy VisitUnaryExtension(const UnaryOperator *E) {
228 return Visit(E->getSubExpr());
229 }
230 ComplexPairTy VisitCXXDefaultArgExpr(CXXDefaultArgExpr *DAE) {
231 CodeGenFunction::CXXDefaultArgExprScope Scope(CGF, DAE);
232 return Visit(DAE->getExpr());
233 }
234 ComplexPairTy VisitCXXDefaultInitExpr(CXXDefaultInitExpr *DIE) {
235 CodeGenFunction::CXXDefaultInitExprScope Scope(CGF, DIE);
236 return Visit(DIE->getExpr());
237 }
238 ComplexPairTy VisitExprWithCleanups(ExprWithCleanups *E) {
239 CodeGenFunction::RunCleanupsScope Scope(CGF);
240 ComplexPairTy Vals = Visit(E->getSubExpr());
241 // Defend against dominance problems caused by jumps out of expression
242 // evaluation through the shared cleanup block.
243 Scope.ForceCleanup({&Vals.first, &Vals.second});
244 return Vals;
245 }
246 ComplexPairTy VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
247 assert(E->getType()->isAnyComplexType() && "Expected complex type!");
248 QualType Elem = E->getType()->castAs<ComplexType>()->getElementType();
249 llvm::Constant *Null = llvm::Constant::getNullValue(CGF.ConvertType(Elem));
250 return ComplexPairTy(Null, Null);
251 }
252 ComplexPairTy VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
253 assert(E->getType()->isAnyComplexType() && "Expected complex type!");
254 QualType Elem = E->getType()->castAs<ComplexType>()->getElementType();
255 llvm::Constant *Null =
256 llvm::Constant::getNullValue(CGF.ConvertType(Elem));
257 return ComplexPairTy(Null, Null);
258 }
259
260 struct BinOpInfo {
261 ComplexPairTy LHS;
262 ComplexPairTy RHS;
263 QualType Ty; // Computation Type.
264 FPOptions FPFeatures;
265 };
266
267 BinOpInfo EmitBinOps(const BinaryOperator *E,
268 QualType PromotionTy = QualType());
269 ComplexPairTy EmitPromoted(const Expr *E, QualType PromotionTy);
270 ComplexPairTy EmitPromotedComplexOperand(const Expr *E, QualType PromotionTy);
271 LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E,
272 ComplexPairTy (ComplexExprEmitter::*Func)
273 (const BinOpInfo &),
274 RValue &Val);
275 ComplexPairTy EmitCompoundAssign(const CompoundAssignOperator *E,
276 ComplexPairTy (ComplexExprEmitter::*Func)
277 (const BinOpInfo &));
278
279 ComplexPairTy EmitBinAdd(const BinOpInfo &Op);
280 ComplexPairTy EmitBinSub(const BinOpInfo &Op);
281 ComplexPairTy EmitBinMul(const BinOpInfo &Op);
282 ComplexPairTy EmitBinDiv(const BinOpInfo &Op);
283 ComplexPairTy EmitAlgebraicDiv(llvm::Value *A, llvm::Value *B, llvm::Value *C,
284 llvm::Value *D);
285 ComplexPairTy EmitRangeReductionDiv(llvm::Value *A, llvm::Value *B,
286 llvm::Value *C, llvm::Value *D);
287
288 ComplexPairTy EmitComplexBinOpLibCall(StringRef LibCallName,
289 const BinOpInfo &Op);
290
291 QualType GetHigherPrecisionFPType(QualType ElementType) {
292 const auto *CurrentBT = cast<BuiltinType>(ElementType);
293 switch (CurrentBT->getKind()) {
294 case BuiltinType::Kind::Float16:
295 return CGF.getContext().FloatTy;
296 case BuiltinType::Kind::Float:
297 case BuiltinType::Kind::BFloat16:
298 return CGF.getContext().DoubleTy;
299 case BuiltinType::Kind::Double:
300 return CGF.getContext().LongDoubleTy;
301 default:
302 return ElementType;
303 }
304 }
305
306 QualType HigherPrecisionTypeForComplexArithmetic(QualType ElementType,
307 bool IsDivOpCode) {
308 QualType HigherElementType = GetHigherPrecisionFPType(ElementType);
309 const llvm::fltSemantics &ElementTypeSemantics =
310 CGF.getContext().getFloatTypeSemantics(ElementType);
311 const llvm::fltSemantics &HigherElementTypeSemantics =
312 CGF.getContext().getFloatTypeSemantics(HigherElementType);
313 // Check that the promoted type can handle the intermediate values without
314 // overflowing. This can be interpreted as:
315 // (SmallerType.LargestFiniteVal * SmallerType.LargestFiniteVal) * 2 <=
316 // LargerType.LargestFiniteVal.
317 // In terms of exponent it gives this formula:
318 // (SmallerType.LargestFiniteVal * SmallerType.LargestFiniteVal
319 // doubles the exponent of SmallerType.LargestFiniteVal)
320 if (llvm::APFloat::semanticsMaxExponent(ElementTypeSemantics) * 2 + 1 <=
321 llvm::APFloat::semanticsMaxExponent(HigherElementTypeSemantics)) {
322 FPHasBeenPromoted = true;
323 return CGF.getContext().getComplexType(HigherElementType);
324 } else {
325 DiagnosticsEngine &Diags = CGF.CGM.getDiags();
326 Diags.Report(diag::warn_next_larger_fp_type_same_size_than_fp);
327 return QualType();
328 }
329 }
330
331 QualType getPromotionType(FPOptionsOverride Features, QualType Ty,
332 bool IsDivOpCode = false) {
333 if (auto *CT = Ty->getAs<ComplexType>()) {
334 QualType ElementType = CT->getElementType();
335 bool IsFloatingType = ElementType->isFloatingType();
336 bool IsComplexRangePromoted = CGF.getLangOpts().getComplexRange() ==
337 LangOptions::ComplexRangeKind::CX_Promoted;
338 bool HasNoComplexRangeOverride = !Features.hasComplexRangeOverride();
339 bool HasMatchingComplexRange = Features.hasComplexRangeOverride() &&
340 Features.getComplexRangeOverride() ==
341 CGF.getLangOpts().getComplexRange();
342
343 if (IsDivOpCode && IsFloatingType && IsComplexRangePromoted &&
344 (HasNoComplexRangeOverride || HasMatchingComplexRange))
345 return HigherPrecisionTypeForComplexArithmetic(ElementType,
346 IsDivOpCode);
347 if (ElementType.UseExcessPrecision(CGF.getContext()))
348 return CGF.getContext().getComplexType(CGF.getContext().FloatTy);
349 }
350 if (Ty.UseExcessPrecision(CGF.getContext()))
351 return CGF.getContext().FloatTy;
352 return QualType();
353 }
354
355#define HANDLEBINOP(OP) \
356 ComplexPairTy VisitBin##OP(const BinaryOperator *E) { \
357 QualType promotionTy = getPromotionType( \
358 E->getStoredFPFeaturesOrDefault(), E->getType(), \
359 (E->getOpcode() == BinaryOperatorKind::BO_Div) ? true : false); \
360 ComplexPairTy result = EmitBin##OP(EmitBinOps(E, promotionTy)); \
361 if (!promotionTy.isNull()) \
362 result = CGF.EmitUnPromotedValue(result, E->getType()); \
363 return result; \
364 }
365
366 HANDLEBINOP(Mul)
367 HANDLEBINOP(Div)
368 HANDLEBINOP(Add)
369 HANDLEBINOP(Sub)
370#undef HANDLEBINOP
371
372 ComplexPairTy VisitCXXRewrittenBinaryOperator(CXXRewrittenBinaryOperator *E) {
373 return Visit(E->getSemanticForm());
374 }
375
376 // Compound assignments.
377 ComplexPairTy VisitBinAddAssign(const CompoundAssignOperator *E) {
378 return EmitCompoundAssign(E, &ComplexExprEmitter::EmitBinAdd);
379 }
380 ComplexPairTy VisitBinSubAssign(const CompoundAssignOperator *E) {
381 return EmitCompoundAssign(E, &ComplexExprEmitter::EmitBinSub);
382 }
383 ComplexPairTy VisitBinMulAssign(const CompoundAssignOperator *E) {
384 return EmitCompoundAssign(E, &ComplexExprEmitter::EmitBinMul);
385 }
386 ComplexPairTy VisitBinDivAssign(const CompoundAssignOperator *E) {
387 return EmitCompoundAssign(E, &ComplexExprEmitter::EmitBinDiv);
388 }
389
390 // GCC rejects rem/and/or/xor for integer complex.
391 // Logical and/or always return int, never complex.
392
393 // No comparisons produce a complex result.
394
395 LValue EmitBinAssignLValue(const BinaryOperator *E,
396 ComplexPairTy &Val);
397 ComplexPairTy VisitBinAssign (const BinaryOperator *E);
398 ComplexPairTy VisitBinComma (const BinaryOperator *E);
399
400
402 VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO);
403 ComplexPairTy VisitChooseExpr(ChooseExpr *CE);
404
405 ComplexPairTy VisitInitListExpr(InitListExpr *E);
406
407 ComplexPairTy VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
408 return EmitLoadOfLValue(E);
409 }
410
411 ComplexPairTy VisitVAArgExpr(VAArgExpr *E);
412
413 ComplexPairTy VisitAtomicExpr(AtomicExpr *E) {
414 return CGF.EmitAtomicExpr(E).getComplexVal();
415 }
416
417 ComplexPairTy VisitPackIndexingExpr(PackIndexingExpr *E) {
418 return Visit(E->getSelectedExpr());
419 }
420};
421} // end anonymous namespace.
422
423//===----------------------------------------------------------------------===//
424// Utilities
425//===----------------------------------------------------------------------===//
426
427Address CodeGenFunction::emitAddrOfRealComponent(Address addr,
429 return Builder.CreateStructGEP(addr, 0, addr.getName() + ".realp");
430}
431
434 return Builder.CreateStructGEP(addr, 1, addr.getName() + ".imagp");
435}
436
437/// EmitLoadOfLValue - Given an RValue reference for a complex, emit code to
438/// load the real and imaginary pieces, returning them as Real/Imag.
439ComplexPairTy ComplexExprEmitter::EmitLoadOfLValue(LValue lvalue,
440 SourceLocation loc) {
441 assert(lvalue.isSimple() && "non-simple complex l-value?");
442 if (lvalue.getType()->isAtomicType())
443 return CGF.EmitAtomicLoad(lvalue, loc).getComplexVal();
444
445 Address SrcPtr = lvalue.getAddress();
446 bool isVolatile = lvalue.isVolatileQualified();
447
448 llvm::Value *Real = nullptr, *Imag = nullptr;
449
450 if (!IgnoreReal || isVolatile) {
451 Address RealP = CGF.emitAddrOfRealComponent(SrcPtr, lvalue.getType());
452 Real = Builder.CreateLoad(RealP, isVolatile, SrcPtr.getName() + ".real");
453 }
454
455 if (!IgnoreImag || isVolatile) {
456 Address ImagP = CGF.emitAddrOfImagComponent(SrcPtr, lvalue.getType());
457 Imag = Builder.CreateLoad(ImagP, isVolatile, SrcPtr.getName() + ".imag");
458 }
459
460 return ComplexPairTy(Real, Imag);
461}
462
463/// EmitStoreOfComplex - Store the specified real/imag parts into the
464/// specified value pointer.
465void ComplexExprEmitter::EmitStoreOfComplex(ComplexPairTy Val, LValue lvalue,
466 bool isInit) {
467 if (lvalue.getType()->isAtomicType() ||
468 (!isInit && CGF.LValueIsSuitableForInlineAtomic(lvalue)))
469 return CGF.EmitAtomicStore(RValue::getComplex(Val), lvalue, isInit);
470
471 Address Ptr = lvalue.getAddress();
472 Address RealPtr = CGF.emitAddrOfRealComponent(Ptr, lvalue.getType());
473 Address ImagPtr = CGF.emitAddrOfImagComponent(Ptr, lvalue.getType());
474
475 Builder.CreateStore(Val.first, RealPtr, lvalue.isVolatileQualified());
476 Builder.CreateStore(Val.second, ImagPtr, lvalue.isVolatileQualified());
477}
478
479
480
481//===----------------------------------------------------------------------===//
482// Visitor Methods
483//===----------------------------------------------------------------------===//
484
485ComplexPairTy ComplexExprEmitter::VisitExpr(Expr *E) {
486 CGF.ErrorUnsupported(E, "complex expression");
487 llvm::Type *EltTy =
489 llvm::Value *U = llvm::UndefValue::get(EltTy);
490 return ComplexPairTy(U, U);
491}
492
493ComplexPairTy ComplexExprEmitter::
494VisitImaginaryLiteral(const ImaginaryLiteral *IL) {
495 llvm::Value *Imag = CGF.EmitScalarExpr(IL->getSubExpr());
496 return ComplexPairTy(llvm::Constant::getNullValue(Imag->getType()), Imag);
497}
498
499
500ComplexPairTy ComplexExprEmitter::VisitCallExpr(const CallExpr *E) {
501 if (E->getCallReturnType(CGF.getContext())->isReferenceType())
502 return EmitLoadOfLValue(E);
503
504 return CGF.EmitCallExpr(E).getComplexVal();
505}
506
507ComplexPairTy ComplexExprEmitter::VisitStmtExpr(const StmtExpr *E) {
508 CodeGenFunction::StmtExprEvaluation eval(CGF);
509 Address RetAlloca = CGF.EmitCompoundStmt(*E->getSubStmt(), true);
510 assert(RetAlloca.isValid() && "Expected complex return value");
511 return EmitLoadOfLValue(CGF.MakeAddrLValue(RetAlloca, E->getType()),
512 E->getExprLoc());
513}
514
515/// Emit a cast from complex value Val to DestType.
516ComplexPairTy ComplexExprEmitter::EmitComplexToComplexCast(ComplexPairTy Val,
517 QualType SrcType,
518 QualType DestType,
520 // Get the src/dest element type.
521 SrcType = SrcType->castAs<ComplexType>()->getElementType();
522 DestType = DestType->castAs<ComplexType>()->getElementType();
523
524 // C99 6.3.1.6: When a value of complex type is converted to another
525 // complex type, both the real and imaginary parts follow the conversion
526 // rules for the corresponding real types.
527 if (Val.first)
528 Val.first = CGF.EmitScalarConversion(Val.first, SrcType, DestType, Loc);
529 if (Val.second)
530 Val.second = CGF.EmitScalarConversion(Val.second, SrcType, DestType, Loc);
531 return Val;
532}
533
534ComplexPairTy ComplexExprEmitter::EmitScalarToComplexCast(llvm::Value *Val,
535 QualType SrcType,
536 QualType DestType,
538 // Convert the input element to the element type of the complex.
539 DestType = DestType->castAs<ComplexType>()->getElementType();
540 Val = CGF.EmitScalarConversion(Val, SrcType, DestType, Loc);
541
542 // Return (realval, 0).
543 return ComplexPairTy(Val, llvm::Constant::getNullValue(Val->getType()));
544}
545
546ComplexPairTy ComplexExprEmitter::EmitCast(CastKind CK, Expr *Op,
547 QualType DestTy) {
548 switch (CK) {
549 case CK_Dependent: llvm_unreachable("dependent cast kind in IR gen!");
550
551 // Atomic to non-atomic casts may be more than a no-op for some platforms and
552 // for some types.
553 case CK_AtomicToNonAtomic:
554 case CK_NonAtomicToAtomic:
555 case CK_NoOp:
556 case CK_LValueToRValue:
557 case CK_UserDefinedConversion:
558 return Visit(Op);
559
560 case CK_LValueBitCast: {
561 LValue origLV = CGF.EmitLValue(Op);
562 Address V = origLV.getAddress().withElementType(CGF.ConvertType(DestTy));
563 return EmitLoadOfLValue(CGF.MakeAddrLValue(V, DestTy), Op->getExprLoc());
564 }
565
566 case CK_LValueToRValueBitCast: {
567 LValue SourceLVal = CGF.EmitLValue(Op);
568 Address Addr =
569 SourceLVal.getAddress().withElementType(CGF.ConvertTypeForMem(DestTy));
570 LValue DestLV = CGF.MakeAddrLValue(Addr, DestTy);
572 return EmitLoadOfLValue(DestLV, Op->getExprLoc());
573 }
574
575 case CK_BitCast:
576 case CK_BaseToDerived:
577 case CK_DerivedToBase:
578 case CK_UncheckedDerivedToBase:
579 case CK_Dynamic:
580 case CK_ToUnion:
581 case CK_ArrayToPointerDecay:
582 case CK_FunctionToPointerDecay:
583 case CK_NullToPointer:
584 case CK_NullToMemberPointer:
585 case CK_BaseToDerivedMemberPointer:
586 case CK_DerivedToBaseMemberPointer:
587 case CK_MemberPointerToBoolean:
588 case CK_ReinterpretMemberPointer:
589 case CK_ConstructorConversion:
590 case CK_IntegralToPointer:
591 case CK_PointerToIntegral:
592 case CK_PointerToBoolean:
593 case CK_ToVoid:
594 case CK_VectorSplat:
595 case CK_IntegralCast:
596 case CK_BooleanToSignedIntegral:
597 case CK_IntegralToBoolean:
598 case CK_IntegralToFloating:
599 case CK_FloatingToIntegral:
600 case CK_FloatingToBoolean:
601 case CK_FloatingCast:
602 case CK_CPointerToObjCPointerCast:
603 case CK_BlockPointerToObjCPointerCast:
604 case CK_AnyPointerToBlockPointerCast:
605 case CK_ObjCObjectLValueCast:
606 case CK_FloatingComplexToReal:
607 case CK_FloatingComplexToBoolean:
608 case CK_IntegralComplexToReal:
609 case CK_IntegralComplexToBoolean:
610 case CK_ARCProduceObject:
611 case CK_ARCConsumeObject:
612 case CK_ARCReclaimReturnedObject:
613 case CK_ARCExtendBlockObject:
614 case CK_CopyAndAutoreleaseBlockObject:
615 case CK_BuiltinFnToFnPtr:
616 case CK_ZeroToOCLOpaqueType:
617 case CK_AddressSpaceConversion:
618 case CK_IntToOCLSampler:
619 case CK_FloatingToFixedPoint:
620 case CK_FixedPointToFloating:
621 case CK_FixedPointCast:
622 case CK_FixedPointToBoolean:
623 case CK_FixedPointToIntegral:
624 case CK_IntegralToFixedPoint:
625 case CK_MatrixCast:
626 case CK_HLSLVectorTruncation:
627 case CK_HLSLArrayRValue:
628 llvm_unreachable("invalid cast kind for complex value");
629
630 case CK_FloatingRealToComplex:
631 case CK_IntegralRealToComplex: {
632 CodeGenFunction::CGFPOptionsRAII FPOptsRAII(CGF, Op);
633 return EmitScalarToComplexCast(CGF.EmitScalarExpr(Op), Op->getType(),
634 DestTy, Op->getExprLoc());
635 }
636
637 case CK_FloatingComplexCast:
638 case CK_FloatingComplexToIntegralComplex:
639 case CK_IntegralComplexCast:
640 case CK_IntegralComplexToFloatingComplex: {
641 CodeGenFunction::CGFPOptionsRAII FPOptsRAII(CGF, Op);
642 return EmitComplexToComplexCast(Visit(Op), Op->getType(), DestTy,
643 Op->getExprLoc());
644 }
645 }
646
647 llvm_unreachable("unknown cast resulting in complex value");
648}
649
650ComplexPairTy ComplexExprEmitter::VisitUnaryPlus(const UnaryOperator *E,
651 QualType PromotionType) {
652 E->hasStoredFPFeatures();
653 QualType promotionTy =
654 PromotionType.isNull()
655 ? getPromotionType(E->getStoredFPFeaturesOrDefault(),
656 E->getSubExpr()->getType())
657 : PromotionType;
658 ComplexPairTy result = VisitPlus(E, promotionTy);
659 if (!promotionTy.isNull())
660 return CGF.EmitUnPromotedValue(result, E->getSubExpr()->getType());
661 return result;
662}
663
664ComplexPairTy ComplexExprEmitter::VisitPlus(const UnaryOperator *E,
665 QualType PromotionType) {
666 TestAndClearIgnoreReal();
667 TestAndClearIgnoreImag();
668 if (!PromotionType.isNull())
669 return CGF.EmitPromotedComplexExpr(E->getSubExpr(), PromotionType);
670 return Visit(E->getSubExpr());
671}
672
673ComplexPairTy ComplexExprEmitter::VisitUnaryMinus(const UnaryOperator *E,
674 QualType PromotionType) {
675 QualType promotionTy =
676 PromotionType.isNull()
677 ? getPromotionType(E->getStoredFPFeaturesOrDefault(),
678 E->getSubExpr()->getType())
679 : PromotionType;
680 ComplexPairTy result = VisitMinus(E, promotionTy);
681 if (!promotionTy.isNull())
682 return CGF.EmitUnPromotedValue(result, E->getSubExpr()->getType());
683 return result;
684}
685ComplexPairTy ComplexExprEmitter::VisitMinus(const UnaryOperator *E,
686 QualType PromotionType) {
687 TestAndClearIgnoreReal();
688 TestAndClearIgnoreImag();
689 ComplexPairTy Op;
690 if (!PromotionType.isNull())
691 Op = CGF.EmitPromotedComplexExpr(E->getSubExpr(), PromotionType);
692 else
693 Op = Visit(E->getSubExpr());
694
695 llvm::Value *ResR, *ResI;
696 if (Op.first->getType()->isFloatingPointTy()) {
697 ResR = Builder.CreateFNeg(Op.first, "neg.r");
698 ResI = Builder.CreateFNeg(Op.second, "neg.i");
699 } else {
700 ResR = Builder.CreateNeg(Op.first, "neg.r");
701 ResI = Builder.CreateNeg(Op.second, "neg.i");
702 }
703 return ComplexPairTy(ResR, ResI);
704}
705
706ComplexPairTy ComplexExprEmitter::VisitUnaryNot(const UnaryOperator *E) {
707 TestAndClearIgnoreReal();
708 TestAndClearIgnoreImag();
709 // ~(a+ib) = a + i*-b
710 ComplexPairTy Op = Visit(E->getSubExpr());
711 llvm::Value *ResI;
712 if (Op.second->getType()->isFloatingPointTy())
713 ResI = Builder.CreateFNeg(Op.second, "conj.i");
714 else
715 ResI = Builder.CreateNeg(Op.second, "conj.i");
716
717 return ComplexPairTy(Op.first, ResI);
718}
719
720ComplexPairTy ComplexExprEmitter::EmitBinAdd(const BinOpInfo &Op) {
721 llvm::Value *ResR, *ResI;
722
723 if (Op.LHS.first->getType()->isFloatingPointTy()) {
724 CodeGenFunction::CGFPOptionsRAII FPOptsRAII(CGF, Op.FPFeatures);
725 ResR = Builder.CreateFAdd(Op.LHS.first, Op.RHS.first, "add.r");
726 if (Op.LHS.second && Op.RHS.second)
727 ResI = Builder.CreateFAdd(Op.LHS.second, Op.RHS.second, "add.i");
728 else
729 ResI = Op.LHS.second ? Op.LHS.second : Op.RHS.second;
730 assert(ResI && "Only one operand may be real!");
731 } else {
732 ResR = Builder.CreateAdd(Op.LHS.first, Op.RHS.first, "add.r");
733 assert(Op.LHS.second && Op.RHS.second &&
734 "Both operands of integer complex operators must be complex!");
735 ResI = Builder.CreateAdd(Op.LHS.second, Op.RHS.second, "add.i");
736 }
737 return ComplexPairTy(ResR, ResI);
738}
739
740ComplexPairTy ComplexExprEmitter::EmitBinSub(const BinOpInfo &Op) {
741 llvm::Value *ResR, *ResI;
742 if (Op.LHS.first->getType()->isFloatingPointTy()) {
743 CodeGenFunction::CGFPOptionsRAII FPOptsRAII(CGF, Op.FPFeatures);
744 ResR = Builder.CreateFSub(Op.LHS.first, Op.RHS.first, "sub.r");
745 if (Op.LHS.second && Op.RHS.second)
746 ResI = Builder.CreateFSub(Op.LHS.second, Op.RHS.second, "sub.i");
747 else
748 ResI = Op.LHS.second ? Op.LHS.second
749 : Builder.CreateFNeg(Op.RHS.second, "sub.i");
750 assert(ResI && "Only one operand may be real!");
751 } else {
752 ResR = Builder.CreateSub(Op.LHS.first, Op.RHS.first, "sub.r");
753 assert(Op.LHS.second && Op.RHS.second &&
754 "Both operands of integer complex operators must be complex!");
755 ResI = Builder.CreateSub(Op.LHS.second, Op.RHS.second, "sub.i");
756 }
757 return ComplexPairTy(ResR, ResI);
758}
759
760/// Emit a libcall for a binary operation on complex types.
761ComplexPairTy ComplexExprEmitter::EmitComplexBinOpLibCall(StringRef LibCallName,
762 const BinOpInfo &Op) {
763 CallArgList Args;
764 Args.add(RValue::get(Op.LHS.first),
765 Op.Ty->castAs<ComplexType>()->getElementType());
766 Args.add(RValue::get(Op.LHS.second),
767 Op.Ty->castAs<ComplexType>()->getElementType());
768 Args.add(RValue::get(Op.RHS.first),
769 Op.Ty->castAs<ComplexType>()->getElementType());
770 Args.add(RValue::get(Op.RHS.second),
771 Op.Ty->castAs<ComplexType>()->getElementType());
772
773 // We *must* use the full CG function call building logic here because the
774 // complex type has special ABI handling. We also should not forget about
775 // special calling convention which may be used for compiler builtins.
776
777 // We create a function qualified type to state that this call does not have
778 // any exceptions.
780 EPI = EPI.withExceptionSpec(
783 4, Op.Ty->castAs<ComplexType>()->getElementType());
784 QualType FQTy = CGF.getContext().getFunctionType(Op.Ty, ArgsQTys, EPI);
785 const CGFunctionInfo &FuncInfo = CGF.CGM.getTypes().arrangeFreeFunctionCall(
786 Args, cast<FunctionType>(FQTy.getTypePtr()), false);
787
788 llvm::FunctionType *FTy = CGF.CGM.getTypes().GetFunctionType(FuncInfo);
789 llvm::FunctionCallee Func = CGF.CGM.CreateRuntimeFunction(
790 FTy, LibCallName, llvm::AttributeList(), true);
792
793 llvm::CallBase *Call;
794 RValue Res = CGF.EmitCall(FuncInfo, Callee, ReturnValueSlot(), Args, &Call);
795 Call->setCallingConv(CGF.CGM.getRuntimeCC());
796 return Res.getComplexVal();
797}
798
799/// Lookup the libcall name for a given floating point type complex
800/// multiply.
801static StringRef getComplexMultiplyLibCallName(llvm::Type *Ty) {
802 switch (Ty->getTypeID()) {
803 default:
804 llvm_unreachable("Unsupported floating point type!");
805 case llvm::Type::HalfTyID:
806 return "__mulhc3";
807 case llvm::Type::FloatTyID:
808 return "__mulsc3";
809 case llvm::Type::DoubleTyID:
810 return "__muldc3";
811 case llvm::Type::PPC_FP128TyID:
812 return "__multc3";
813 case llvm::Type::X86_FP80TyID:
814 return "__mulxc3";
815 case llvm::Type::FP128TyID:
816 return "__multc3";
817 }
818}
819
820// See C11 Annex G.5.1 for the semantics of multiplicative operators on complex
821// typed values.
822ComplexPairTy ComplexExprEmitter::EmitBinMul(const BinOpInfo &Op) {
823 using llvm::Value;
824 Value *ResR, *ResI;
825 llvm::MDBuilder MDHelper(CGF.getLLVMContext());
826
827 if (Op.LHS.first->getType()->isFloatingPointTy()) {
828 // The general formulation is:
829 // (a + ib) * (c + id) = (a * c - b * d) + i(a * d + b * c)
830 //
831 // But we can fold away components which would be zero due to a real
832 // operand according to C11 Annex G.5.1p2.
833
834 CodeGenFunction::CGFPOptionsRAII FPOptsRAII(CGF, Op.FPFeatures);
835 if (Op.LHS.second && Op.RHS.second) {
836 // If both operands are complex, emit the core math directly, and then
837 // test for NaNs. If we find NaNs in the result, we delegate to a libcall
838 // to carefully re-compute the correct infinity representation if
839 // possible. The expectation is that the presence of NaNs here is
840 // *extremely* rare, and so the cost of the libcall is almost irrelevant.
841 // This is good, because the libcall re-computes the core multiplication
842 // exactly the same as we do here and re-tests for NaNs in order to be
843 // a generic complex*complex libcall.
844
845 // First compute the four products.
846 Value *AC = Builder.CreateFMul(Op.LHS.first, Op.RHS.first, "mul_ac");
847 Value *BD = Builder.CreateFMul(Op.LHS.second, Op.RHS.second, "mul_bd");
848 Value *AD = Builder.CreateFMul(Op.LHS.first, Op.RHS.second, "mul_ad");
849 Value *BC = Builder.CreateFMul(Op.LHS.second, Op.RHS.first, "mul_bc");
850
851 // The real part is the difference of the first two, the imaginary part is
852 // the sum of the second.
853 ResR = Builder.CreateFSub(AC, BD, "mul_r");
854 ResI = Builder.CreateFAdd(AD, BC, "mul_i");
855
856 if (Op.FPFeatures.getComplexRange() == LangOptions::CX_Basic ||
857 Op.FPFeatures.getComplexRange() == LangOptions::CX_Improved ||
858 Op.FPFeatures.getComplexRange() == LangOptions::CX_Promoted)
859 return ComplexPairTy(ResR, ResI);
860
861 // Emit the test for the real part becoming NaN and create a branch to
862 // handle it. We test for NaN by comparing the number to itself.
863 Value *IsRNaN = Builder.CreateFCmpUNO(ResR, ResR, "isnan_cmp");
864 llvm::BasicBlock *ContBB = CGF.createBasicBlock("complex_mul_cont");
865 llvm::BasicBlock *INaNBB = CGF.createBasicBlock("complex_mul_imag_nan");
866 llvm::Instruction *Branch = Builder.CreateCondBr(IsRNaN, INaNBB, ContBB);
867 llvm::BasicBlock *OrigBB = Branch->getParent();
868
869 // Give hint that we very much don't expect to see NaNs.
870 llvm::MDNode *BrWeight = MDHelper.createUnlikelyBranchWeights();
871 Branch->setMetadata(llvm::LLVMContext::MD_prof, BrWeight);
872
873 // Now test the imaginary part and create its branch.
874 CGF.EmitBlock(INaNBB);
875 Value *IsINaN = Builder.CreateFCmpUNO(ResI, ResI, "isnan_cmp");
876 llvm::BasicBlock *LibCallBB = CGF.createBasicBlock("complex_mul_libcall");
877 Branch = Builder.CreateCondBr(IsINaN, LibCallBB, ContBB);
878 Branch->setMetadata(llvm::LLVMContext::MD_prof, BrWeight);
879
880 // Now emit the libcall on this slowest of the slow paths.
881 CGF.EmitBlock(LibCallBB);
882 Value *LibCallR, *LibCallI;
883 std::tie(LibCallR, LibCallI) = EmitComplexBinOpLibCall(
884 getComplexMultiplyLibCallName(Op.LHS.first->getType()), Op);
885 Builder.CreateBr(ContBB);
886
887 // Finally continue execution by phi-ing together the different
888 // computation paths.
889 CGF.EmitBlock(ContBB);
890 llvm::PHINode *RealPHI = Builder.CreatePHI(ResR->getType(), 3, "real_mul_phi");
891 RealPHI->addIncoming(ResR, OrigBB);
892 RealPHI->addIncoming(ResR, INaNBB);
893 RealPHI->addIncoming(LibCallR, LibCallBB);
894 llvm::PHINode *ImagPHI = Builder.CreatePHI(ResI->getType(), 3, "imag_mul_phi");
895 ImagPHI->addIncoming(ResI, OrigBB);
896 ImagPHI->addIncoming(ResI, INaNBB);
897 ImagPHI->addIncoming(LibCallI, LibCallBB);
898 return ComplexPairTy(RealPHI, ImagPHI);
899 }
900 assert((Op.LHS.second || Op.RHS.second) &&
901 "At least one operand must be complex!");
902
903 // If either of the operands is a real rather than a complex, the
904 // imaginary component is ignored when computing the real component of the
905 // result.
906 ResR = Builder.CreateFMul(Op.LHS.first, Op.RHS.first, "mul.rl");
907
908 ResI = Op.LHS.second
909 ? Builder.CreateFMul(Op.LHS.second, Op.RHS.first, "mul.il")
910 : Builder.CreateFMul(Op.LHS.first, Op.RHS.second, "mul.ir");
911 } else {
912 assert(Op.LHS.second && Op.RHS.second &&
913 "Both operands of integer complex operators must be complex!");
914 Value *ResRl = Builder.CreateMul(Op.LHS.first, Op.RHS.first, "mul.rl");
915 Value *ResRr = Builder.CreateMul(Op.LHS.second, Op.RHS.second, "mul.rr");
916 ResR = Builder.CreateSub(ResRl, ResRr, "mul.r");
917
918 Value *ResIl = Builder.CreateMul(Op.LHS.second, Op.RHS.first, "mul.il");
919 Value *ResIr = Builder.CreateMul(Op.LHS.first, Op.RHS.second, "mul.ir");
920 ResI = Builder.CreateAdd(ResIl, ResIr, "mul.i");
921 }
922 return ComplexPairTy(ResR, ResI);
923}
924
925ComplexPairTy ComplexExprEmitter::EmitAlgebraicDiv(llvm::Value *LHSr,
926 llvm::Value *LHSi,
927 llvm::Value *RHSr,
928 llvm::Value *RHSi) {
929 // (a+ib) / (c+id) = ((ac+bd)/(cc+dd)) + i((bc-ad)/(cc+dd))
930 llvm::Value *DSTr, *DSTi;
931
932 llvm::Value *AC = Builder.CreateFMul(LHSr, RHSr); // a*c
933 llvm::Value *BD = Builder.CreateFMul(LHSi, RHSi); // b*d
934 llvm::Value *ACpBD = Builder.CreateFAdd(AC, BD); // ac+bd
935
936 llvm::Value *CC = Builder.CreateFMul(RHSr, RHSr); // c*c
937 llvm::Value *DD = Builder.CreateFMul(RHSi, RHSi); // d*d
938 llvm::Value *CCpDD = Builder.CreateFAdd(CC, DD); // cc+dd
939
940 llvm::Value *BC = Builder.CreateFMul(LHSi, RHSr); // b*c
941 llvm::Value *AD = Builder.CreateFMul(LHSr, RHSi); // a*d
942 llvm::Value *BCmAD = Builder.CreateFSub(BC, AD); // bc-ad
943
944 DSTr = Builder.CreateFDiv(ACpBD, CCpDD);
945 DSTi = Builder.CreateFDiv(BCmAD, CCpDD);
946 return ComplexPairTy(DSTr, DSTi);
947}
948
949// EmitFAbs - Emit a call to @llvm.fabs.
950static llvm::Value *EmitllvmFAbs(CodeGenFunction &CGF, llvm::Value *Value) {
951 llvm::Function *Func =
952 CGF.CGM.getIntrinsic(llvm::Intrinsic::fabs, Value->getType());
953 llvm::Value *Call = CGF.Builder.CreateCall(Func, Value);
954 return Call;
955}
956
957// EmitRangeReductionDiv - Implements Smith's algorithm for complex division.
958// SMITH, R. L. Algorithm 116: Complex division. Commun. ACM 5, 8 (1962).
959ComplexPairTy ComplexExprEmitter::EmitRangeReductionDiv(llvm::Value *LHSr,
960 llvm::Value *LHSi,
961 llvm::Value *RHSr,
962 llvm::Value *RHSi) {
963 // FIXME: This could eventually be replaced by an LLVM intrinsic to
964 // avoid this long IR sequence.
965
966 // (a + ib) / (c + id) = (e + if)
967 llvm::Value *FAbsRHSr = EmitllvmFAbs(CGF, RHSr); // |c|
968 llvm::Value *FAbsRHSi = EmitllvmFAbs(CGF, RHSi); // |d|
969 // |c| >= |d|
970 llvm::Value *IsR = Builder.CreateFCmpUGT(FAbsRHSr, FAbsRHSi, "abs_cmp");
971
972 llvm::BasicBlock *TrueBB =
973 CGF.createBasicBlock("abs_rhsr_greater_or_equal_abs_rhsi");
974 llvm::BasicBlock *FalseBB =
975 CGF.createBasicBlock("abs_rhsr_less_than_abs_rhsi");
976 llvm::BasicBlock *ContBB = CGF.createBasicBlock("complex_div");
977 Builder.CreateCondBr(IsR, TrueBB, FalseBB);
978
979 CGF.EmitBlock(TrueBB);
980 // abs(c) >= abs(d)
981 // r = d/c
982 // tmp = c + rd
983 // e = (a + br)/tmp
984 // f = (b - ar)/tmp
985 llvm::Value *DdC = Builder.CreateFDiv(RHSi, RHSr); // r=d/c
986
987 llvm::Value *RD = Builder.CreateFMul(DdC, RHSi); // rd
988 llvm::Value *CpRD = Builder.CreateFAdd(RHSr, RD); // tmp=c+rd
989
990 llvm::Value *T3 = Builder.CreateFMul(LHSi, DdC); // br
991 llvm::Value *T4 = Builder.CreateFAdd(LHSr, T3); // a+br
992 llvm::Value *DSTTr = Builder.CreateFDiv(T4, CpRD); // (a+br)/tmp
993
994 llvm::Value *T5 = Builder.CreateFMul(LHSr, DdC); // ar
995 llvm::Value *T6 = Builder.CreateFSub(LHSi, T5); // b-ar
996 llvm::Value *DSTTi = Builder.CreateFDiv(T6, CpRD); // (b-ar)/tmp
997 Builder.CreateBr(ContBB);
998
999 CGF.EmitBlock(FalseBB);
1000 // abs(c) < abs(d)
1001 // r = c/d
1002 // tmp = d + rc
1003 // e = (ar + b)/tmp
1004 // f = (br - a)/tmp
1005 llvm::Value *CdD = Builder.CreateFDiv(RHSr, RHSi); // r=c/d
1006
1007 llvm::Value *RC = Builder.CreateFMul(CdD, RHSr); // rc
1008 llvm::Value *DpRC = Builder.CreateFAdd(RHSi, RC); // tmp=d+rc
1009
1010 llvm::Value *T7 = Builder.CreateFMul(LHSr, CdD); // ar
1011 llvm::Value *T8 = Builder.CreateFAdd(T7, LHSi); // ar+b
1012 llvm::Value *DSTFr = Builder.CreateFDiv(T8, DpRC); // (ar+b)/tmp
1013
1014 llvm::Value *T9 = Builder.CreateFMul(LHSi, CdD); // br
1015 llvm::Value *T10 = Builder.CreateFSub(T9, LHSr); // br-a
1016 llvm::Value *DSTFi = Builder.CreateFDiv(T10, DpRC); // (br-a)/tmp
1017 Builder.CreateBr(ContBB);
1018
1019 // Phi together the computation paths.
1020 CGF.EmitBlock(ContBB);
1021 llvm::PHINode *VALr = Builder.CreatePHI(DSTTr->getType(), 2);
1022 VALr->addIncoming(DSTTr, TrueBB);
1023 VALr->addIncoming(DSTFr, FalseBB);
1024 llvm::PHINode *VALi = Builder.CreatePHI(DSTTi->getType(), 2);
1025 VALi->addIncoming(DSTTi, TrueBB);
1026 VALi->addIncoming(DSTFi, FalseBB);
1027 return ComplexPairTy(VALr, VALi);
1028}
1029
1030// See C11 Annex G.5.1 for the semantics of multiplicative operators on complex
1031// typed values.
1032ComplexPairTy ComplexExprEmitter::EmitBinDiv(const BinOpInfo &Op) {
1033 llvm::Value *LHSr = Op.LHS.first, *LHSi = Op.LHS.second;
1034 llvm::Value *RHSr = Op.RHS.first, *RHSi = Op.RHS.second;
1035 llvm::Value *DSTr, *DSTi;
1036 if (LHSr->getType()->isFloatingPointTy()) {
1037 CodeGenFunction::CGFPOptionsRAII FPOptsRAII(CGF, Op.FPFeatures);
1038 if (!RHSi) {
1039 assert(LHSi && "Can have at most one non-complex operand!");
1040
1041 DSTr = Builder.CreateFDiv(LHSr, RHSr);
1042 DSTi = Builder.CreateFDiv(LHSi, RHSr);
1043 return ComplexPairTy(DSTr, DSTi);
1044 }
1045 llvm::Value *OrigLHSi = LHSi;
1046 if (!LHSi)
1047 LHSi = llvm::Constant::getNullValue(RHSi->getType());
1048 if (Op.FPFeatures.getComplexRange() == LangOptions::CX_Improved ||
1049 (Op.FPFeatures.getComplexRange() == LangOptions::CX_Promoted &&
1050 !FPHasBeenPromoted))
1051 return EmitRangeReductionDiv(LHSr, LHSi, RHSr, RHSi);
1052 else if (Op.FPFeatures.getComplexRange() == LangOptions::CX_Basic ||
1053 Op.FPFeatures.getComplexRange() == LangOptions::CX_Promoted)
1054 return EmitAlgebraicDiv(LHSr, LHSi, RHSr, RHSi);
1055 // '-ffast-math' is used in the command line but followed by an
1056 // '-fno-cx-limited-range' or '-fcomplex-arithmetic=full'.
1057 else if (Op.FPFeatures.getComplexRange() == LangOptions::CX_Full) {
1058 LHSi = OrigLHSi;
1059 // If we have a complex operand on the RHS and FastMath is not allowed, we
1060 // delegate to a libcall to handle all of the complexities and minimize
1061 // underflow/overflow cases. When FastMath is allowed we construct the
1062 // divide inline using the same algorithm as for integer operands.
1063 BinOpInfo LibCallOp = Op;
1064 // If LHS was a real, supply a null imaginary part.
1065 if (!LHSi)
1066 LibCallOp.LHS.second = llvm::Constant::getNullValue(LHSr->getType());
1067
1068 switch (LHSr->getType()->getTypeID()) {
1069 default:
1070 llvm_unreachable("Unsupported floating point type!");
1071 case llvm::Type::HalfTyID:
1072 return EmitComplexBinOpLibCall("__divhc3", LibCallOp);
1073 case llvm::Type::FloatTyID:
1074 return EmitComplexBinOpLibCall("__divsc3", LibCallOp);
1075 case llvm::Type::DoubleTyID:
1076 return EmitComplexBinOpLibCall("__divdc3", LibCallOp);
1077 case llvm::Type::PPC_FP128TyID:
1078 return EmitComplexBinOpLibCall("__divtc3", LibCallOp);
1079 case llvm::Type::X86_FP80TyID:
1080 return EmitComplexBinOpLibCall("__divxc3", LibCallOp);
1081 case llvm::Type::FP128TyID:
1082 return EmitComplexBinOpLibCall("__divtc3", LibCallOp);
1083 }
1084 } else {
1085 return EmitAlgebraicDiv(LHSr, LHSi, RHSr, RHSi);
1086 }
1087 } else {
1088 assert(Op.LHS.second && Op.RHS.second &&
1089 "Both operands of integer complex operators must be complex!");
1090 // (a+ib) / (c+id) = ((ac+bd)/(cc+dd)) + i((bc-ad)/(cc+dd))
1091 llvm::Value *Tmp1 = Builder.CreateMul(LHSr, RHSr); // a*c
1092 llvm::Value *Tmp2 = Builder.CreateMul(LHSi, RHSi); // b*d
1093 llvm::Value *Tmp3 = Builder.CreateAdd(Tmp1, Tmp2); // ac+bd
1094
1095 llvm::Value *Tmp4 = Builder.CreateMul(RHSr, RHSr); // c*c
1096 llvm::Value *Tmp5 = Builder.CreateMul(RHSi, RHSi); // d*d
1097 llvm::Value *Tmp6 = Builder.CreateAdd(Tmp4, Tmp5); // cc+dd
1098
1099 llvm::Value *Tmp7 = Builder.CreateMul(LHSi, RHSr); // b*c
1100 llvm::Value *Tmp8 = Builder.CreateMul(LHSr, RHSi); // a*d
1101 llvm::Value *Tmp9 = Builder.CreateSub(Tmp7, Tmp8); // bc-ad
1102
1103 if (Op.Ty->castAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) {
1104 DSTr = Builder.CreateUDiv(Tmp3, Tmp6);
1105 DSTi = Builder.CreateUDiv(Tmp9, Tmp6);
1106 } else {
1107 DSTr = Builder.CreateSDiv(Tmp3, Tmp6);
1108 DSTi = Builder.CreateSDiv(Tmp9, Tmp6);
1109 }
1110 }
1111
1112 return ComplexPairTy(DSTr, DSTi);
1113}
1114
1116 QualType UnPromotionType) {
1117 llvm::Type *ComplexElementTy =
1118 ConvertType(UnPromotionType->castAs<ComplexType>()->getElementType());
1119 if (result.first)
1120 result.first =
1121 Builder.CreateFPTrunc(result.first, ComplexElementTy, "unpromotion");
1122 if (result.second)
1123 result.second =
1124 Builder.CreateFPTrunc(result.second, ComplexElementTy, "unpromotion");
1125 return result;
1126}
1127
1129 QualType PromotionType) {
1130 llvm::Type *ComplexElementTy =
1131 ConvertType(PromotionType->castAs<ComplexType>()->getElementType());
1132 if (result.first)
1133 result.first = Builder.CreateFPExt(result.first, ComplexElementTy, "ext");
1134 if (result.second)
1135 result.second = Builder.CreateFPExt(result.second, ComplexElementTy, "ext");
1136
1137 return result;
1138}
1139
1140ComplexPairTy ComplexExprEmitter::EmitPromoted(const Expr *E,
1141 QualType PromotionType) {
1142 E = E->IgnoreParens();
1143 if (auto BO = dyn_cast<BinaryOperator>(E)) {
1144 switch (BO->getOpcode()) {
1145#define HANDLE_BINOP(OP) \
1146 case BO_##OP: \
1147 return EmitBin##OP(EmitBinOps(BO, PromotionType));
1148 HANDLE_BINOP(Add)
1149 HANDLE_BINOP(Sub)
1150 HANDLE_BINOP(Mul)
1151 HANDLE_BINOP(Div)
1152#undef HANDLE_BINOP
1153 default:
1154 break;
1155 }
1156 } else if (auto UO = dyn_cast<UnaryOperator>(E)) {
1157 switch (UO->getOpcode()) {
1158 case UO_Minus:
1159 return VisitMinus(UO, PromotionType);
1160 case UO_Plus:
1161 return VisitPlus(UO, PromotionType);
1162 default:
1163 break;
1164 }
1165 }
1166 auto result = Visit(const_cast<Expr *>(E));
1167 if (!PromotionType.isNull())
1168 return CGF.EmitPromotedValue(result, PromotionType);
1169 else
1170 return result;
1171}
1172
1174 QualType DstTy) {
1175 return ComplexExprEmitter(*this).EmitPromoted(E, DstTy);
1176}
1177
1179ComplexExprEmitter::EmitPromotedComplexOperand(const Expr *E,
1180 QualType OverallPromotionType) {
1181 if (E->getType()->isAnyComplexType()) {
1182 if (!OverallPromotionType.isNull())
1183 return CGF.EmitPromotedComplexExpr(E, OverallPromotionType);
1184 else
1185 return Visit(const_cast<Expr *>(E));
1186 } else {
1187 if (!OverallPromotionType.isNull()) {
1188 QualType ComplexElementTy =
1189 OverallPromotionType->castAs<ComplexType>()->getElementType();
1190 return ComplexPairTy(CGF.EmitPromotedScalarExpr(E, ComplexElementTy),
1191 nullptr);
1192 } else {
1193 return ComplexPairTy(CGF.EmitScalarExpr(E), nullptr);
1194 }
1195 }
1196}
1197
1198ComplexExprEmitter::BinOpInfo
1199ComplexExprEmitter::EmitBinOps(const BinaryOperator *E,
1200 QualType PromotionType) {
1201 TestAndClearIgnoreReal();
1202 TestAndClearIgnoreImag();
1203 BinOpInfo Ops;
1204
1205 Ops.LHS = EmitPromotedComplexOperand(E->getLHS(), PromotionType);
1206 Ops.RHS = EmitPromotedComplexOperand(E->getRHS(), PromotionType);
1207 if (!PromotionType.isNull())
1208 Ops.Ty = PromotionType;
1209 else
1210 Ops.Ty = E->getType();
1211 Ops.FPFeatures = E->getFPFeaturesInEffect(CGF.getLangOpts());
1212 return Ops;
1213}
1214
1215
1216LValue ComplexExprEmitter::
1217EmitCompoundAssignLValue(const CompoundAssignOperator *E,
1218 ComplexPairTy (ComplexExprEmitter::*Func)(const BinOpInfo&),
1219 RValue &Val) {
1220 TestAndClearIgnoreReal();
1221 TestAndClearIgnoreImag();
1222 QualType LHSTy = E->getLHS()->getType();
1223 if (const AtomicType *AT = LHSTy->getAs<AtomicType>())
1224 LHSTy = AT->getValueType();
1225
1226 BinOpInfo OpInfo;
1227 OpInfo.FPFeatures = E->getFPFeaturesInEffect(CGF.getLangOpts());
1228 CodeGenFunction::CGFPOptionsRAII FPOptsRAII(CGF, OpInfo.FPFeatures);
1229
1230 // Load the RHS and LHS operands.
1231 // __block variables need to have the rhs evaluated first, plus this should
1232 // improve codegen a little.
1233 QualType PromotionTypeCR;
1234 PromotionTypeCR = getPromotionType(E->getStoredFPFeaturesOrDefault(),
1235 E->getComputationResultType());
1236 if (PromotionTypeCR.isNull())
1237 PromotionTypeCR = E->getComputationResultType();
1238 OpInfo.Ty = PromotionTypeCR;
1239 QualType ComplexElementTy =
1240 OpInfo.Ty->castAs<ComplexType>()->getElementType();
1241 QualType PromotionTypeRHS = getPromotionType(
1242 E->getStoredFPFeaturesOrDefault(), E->getRHS()->getType());
1243
1244 // The RHS should have been converted to the computation type.
1245 if (E->getRHS()->getType()->isRealFloatingType()) {
1246 if (!PromotionTypeRHS.isNull())
1247 OpInfo.RHS = ComplexPairTy(
1248 CGF.EmitPromotedScalarExpr(E->getRHS(), PromotionTypeRHS), nullptr);
1249 else {
1250 assert(CGF.getContext().hasSameUnqualifiedType(ComplexElementTy,
1251 E->getRHS()->getType()));
1252
1253 OpInfo.RHS = ComplexPairTy(CGF.EmitScalarExpr(E->getRHS()), nullptr);
1254 }
1255 } else {
1256 if (!PromotionTypeRHS.isNull()) {
1257 OpInfo.RHS = ComplexPairTy(
1258 CGF.EmitPromotedComplexExpr(E->getRHS(), PromotionTypeRHS));
1259 } else {
1260 assert(CGF.getContext().hasSameUnqualifiedType(OpInfo.Ty,
1261 E->getRHS()->getType()));
1262 OpInfo.RHS = Visit(E->getRHS());
1263 }
1264 }
1265
1266 LValue LHS = CGF.EmitLValue(E->getLHS());
1267
1268 // Load from the l-value and convert it.
1270 QualType PromotionTypeLHS = getPromotionType(
1271 E->getStoredFPFeaturesOrDefault(), E->getComputationLHSType());
1272 if (LHSTy->isAnyComplexType()) {
1273 ComplexPairTy LHSVal = EmitLoadOfLValue(LHS, Loc);
1274 if (!PromotionTypeLHS.isNull())
1275 OpInfo.LHS =
1276 EmitComplexToComplexCast(LHSVal, LHSTy, PromotionTypeLHS, Loc);
1277 else
1278 OpInfo.LHS = EmitComplexToComplexCast(LHSVal, LHSTy, OpInfo.Ty, Loc);
1279 } else {
1280 llvm::Value *LHSVal = CGF.EmitLoadOfScalar(LHS, Loc);
1281 // For floating point real operands we can directly pass the scalar form
1282 // to the binary operator emission and potentially get more efficient code.
1283 if (LHSTy->isRealFloatingType()) {
1284 QualType PromotedComplexElementTy;
1285 if (!PromotionTypeLHS.isNull()) {
1286 PromotedComplexElementTy =
1287 cast<ComplexType>(PromotionTypeLHS)->getElementType();
1288 if (!CGF.getContext().hasSameUnqualifiedType(PromotedComplexElementTy,
1289 PromotionTypeLHS))
1290 LHSVal = CGF.EmitScalarConversion(LHSVal, LHSTy,
1291 PromotedComplexElementTy, Loc);
1292 } else {
1293 if (!CGF.getContext().hasSameUnqualifiedType(ComplexElementTy, LHSTy))
1294 LHSVal =
1295 CGF.EmitScalarConversion(LHSVal, LHSTy, ComplexElementTy, Loc);
1296 }
1297 OpInfo.LHS = ComplexPairTy(LHSVal, nullptr);
1298 } else {
1299 OpInfo.LHS = EmitScalarToComplexCast(LHSVal, LHSTy, OpInfo.Ty, Loc);
1300 }
1301 }
1302
1303 // Expand the binary operator.
1304 ComplexPairTy Result = (this->*Func)(OpInfo);
1305
1306 // Truncate the result and store it into the LHS lvalue.
1307 if (LHSTy->isAnyComplexType()) {
1308 ComplexPairTy ResVal =
1309 EmitComplexToComplexCast(Result, OpInfo.Ty, LHSTy, Loc);
1310 EmitStoreOfComplex(ResVal, LHS, /*isInit*/ false);
1311 Val = RValue::getComplex(ResVal);
1312 } else {
1313 llvm::Value *ResVal =
1314 CGF.EmitComplexToScalarConversion(Result, OpInfo.Ty, LHSTy, Loc);
1315 CGF.EmitStoreOfScalar(ResVal, LHS, /*isInit*/ false);
1316 Val = RValue::get(ResVal);
1317 }
1318
1319 return LHS;
1320}
1321
1322// Compound assignments.
1323ComplexPairTy ComplexExprEmitter::
1324EmitCompoundAssign(const CompoundAssignOperator *E,
1325 ComplexPairTy (ComplexExprEmitter::*Func)(const BinOpInfo&)){
1326 RValue Val;
1327 LValue LV = EmitCompoundAssignLValue(E, Func, Val);
1328
1329 // The result of an assignment in C is the assigned r-value.
1330 if (!CGF.getLangOpts().CPlusPlus)
1331 return Val.getComplexVal();
1332
1333 // If the lvalue is non-volatile, return the computed value of the assignment.
1334 if (!LV.isVolatileQualified())
1335 return Val.getComplexVal();
1336
1337 return EmitLoadOfLValue(LV, E->getExprLoc());
1338}
1339
1340LValue ComplexExprEmitter::EmitBinAssignLValue(const BinaryOperator *E,
1341 ComplexPairTy &Val) {
1342 assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
1343 E->getRHS()->getType()) &&
1344 "Invalid assignment");
1345 TestAndClearIgnoreReal();
1346 TestAndClearIgnoreImag();
1347
1348 // Emit the RHS. __block variables need the RHS evaluated first.
1349 Val = Visit(E->getRHS());
1350
1351 // Compute the address to store into.
1352 LValue LHS = CGF.EmitLValue(E->getLHS());
1353
1354 // Store the result value into the LHS lvalue.
1355 EmitStoreOfComplex(Val, LHS, /*isInit*/ false);
1356
1357 return LHS;
1358}
1359
1360ComplexPairTy ComplexExprEmitter::VisitBinAssign(const BinaryOperator *E) {
1361 ComplexPairTy Val;
1362 LValue LV = EmitBinAssignLValue(E, Val);
1363
1364 // The result of an assignment in C is the assigned r-value.
1365 if (!CGF.getLangOpts().CPlusPlus)
1366 return Val;
1367
1368 // If the lvalue is non-volatile, return the computed value of the assignment.
1369 if (!LV.isVolatileQualified())
1370 return Val;
1371
1372 return EmitLoadOfLValue(LV, E->getExprLoc());
1373}
1374
1375ComplexPairTy ComplexExprEmitter::VisitBinComma(const BinaryOperator *E) {
1376 CGF.EmitIgnoredExpr(E->getLHS());
1377 return Visit(E->getRHS());
1378}
1379
1380ComplexPairTy ComplexExprEmitter::
1381VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
1382 TestAndClearIgnoreReal();
1383 TestAndClearIgnoreImag();
1384 llvm::BasicBlock *LHSBlock = CGF.createBasicBlock("cond.true");
1385 llvm::BasicBlock *RHSBlock = CGF.createBasicBlock("cond.false");
1386 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
1387
1388 // Bind the common expression if necessary.
1389 CodeGenFunction::OpaqueValueMapping binding(CGF, E);
1390
1391
1392 CodeGenFunction::ConditionalEvaluation eval(CGF);
1393 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock,
1394 CGF.getProfileCount(E));
1395
1396 eval.begin(CGF);
1397 CGF.EmitBlock(LHSBlock);
1399 CGF.incrementProfileCounter(E->getTrueExpr());
1400 else
1402
1403 ComplexPairTy LHS = Visit(E->getTrueExpr());
1404 LHSBlock = Builder.GetInsertBlock();
1405 CGF.EmitBranch(ContBlock);
1406 eval.end(CGF);
1407
1408 eval.begin(CGF);
1409 CGF.EmitBlock(RHSBlock);
1411 CGF.incrementProfileCounter(E->getFalseExpr());
1412 ComplexPairTy RHS = Visit(E->getFalseExpr());
1413 RHSBlock = Builder.GetInsertBlock();
1414 CGF.EmitBlock(ContBlock);
1417 eval.end(CGF);
1418
1419 // Create a PHI node for the real part.
1420 llvm::PHINode *RealPN = Builder.CreatePHI(LHS.first->getType(), 2, "cond.r");
1421 RealPN->addIncoming(LHS.first, LHSBlock);
1422 RealPN->addIncoming(RHS.first, RHSBlock);
1423
1424 // Create a PHI node for the imaginary part.
1425 llvm::PHINode *ImagPN = Builder.CreatePHI(LHS.first->getType(), 2, "cond.i");
1426 ImagPN->addIncoming(LHS.second, LHSBlock);
1427 ImagPN->addIncoming(RHS.second, RHSBlock);
1428
1429 return ComplexPairTy(RealPN, ImagPN);
1430}
1431
1432ComplexPairTy ComplexExprEmitter::VisitChooseExpr(ChooseExpr *E) {
1433 return Visit(E->getChosenSubExpr());
1434}
1435
1436ComplexPairTy ComplexExprEmitter::VisitInitListExpr(InitListExpr *E) {
1437 bool Ignore = TestAndClearIgnoreReal();
1438 (void)Ignore;
1439 assert (Ignore == false && "init list ignored");
1440 Ignore = TestAndClearIgnoreImag();
1441 (void)Ignore;
1442 assert (Ignore == false && "init list ignored");
1443
1444 if (E->getNumInits() == 2) {
1445 llvm::Value *Real = CGF.EmitScalarExpr(E->getInit(0));
1446 llvm::Value *Imag = CGF.EmitScalarExpr(E->getInit(1));
1447 return ComplexPairTy(Real, Imag);
1448 } else if (E->getNumInits() == 1) {
1449 return Visit(E->getInit(0));
1450 }
1451
1452 // Empty init list initializes to null
1453 assert(E->getNumInits() == 0 && "Unexpected number of inits");
1454 QualType Ty = E->getType()->castAs<ComplexType>()->getElementType();
1455 llvm::Type* LTy = CGF.ConvertType(Ty);
1456 llvm::Value* zeroConstant = llvm::Constant::getNullValue(LTy);
1457 return ComplexPairTy(zeroConstant, zeroConstant);
1458}
1459
1460ComplexPairTy ComplexExprEmitter::VisitVAArgExpr(VAArgExpr *E) {
1461 Address ArgValue = Address::invalid();
1462 RValue RV = CGF.EmitVAArg(E, ArgValue);
1463
1464 if (!ArgValue.isValid()) {
1465 CGF.ErrorUnsupported(E, "complex va_arg expression");
1466 llvm::Type *EltTy =
1468 llvm::Value *U = llvm::UndefValue::get(EltTy);
1469 return ComplexPairTy(U, U);
1470 }
1471
1472 return RV.getComplexVal();
1473}
1474
1475//===----------------------------------------------------------------------===//
1476// Entry Point into this File
1477//===----------------------------------------------------------------------===//
1478
1479/// EmitComplexExpr - Emit the computation of the specified expression of
1480/// complex type, ignoring the result.
1482 bool IgnoreImag) {
1483 assert(E && getComplexType(E->getType()) &&
1484 "Invalid complex expression to emit");
1485
1486 return ComplexExprEmitter(*this, IgnoreReal, IgnoreImag)
1487 .Visit(const_cast<Expr *>(E));
1488}
1489
1491 bool isInit) {
1492 assert(E && getComplexType(E->getType()) &&
1493 "Invalid complex expression to emit");
1494 ComplexExprEmitter Emitter(*this);
1495 ComplexPairTy Val = Emitter.Visit(const_cast<Expr*>(E));
1496 Emitter.EmitStoreOfComplex(Val, dest, isInit);
1497}
1498
1499/// EmitStoreOfComplex - Store a complex number into the specified l-value.
1501 bool isInit) {
1502 ComplexExprEmitter(*this).EmitStoreOfComplex(V, dest, isInit);
1503}
1504
1505/// EmitLoadOfComplex - Load a complex number from the specified address.
1507 SourceLocation loc) {
1508 return ComplexExprEmitter(*this).EmitLoadOfLValue(src, loc);
1509}
1510
1512 assert(E->getOpcode() == BO_Assign);
1513 ComplexPairTy Val; // ignored
1514 LValue LVal = ComplexExprEmitter(*this).EmitBinAssignLValue(E, Val);
1515 if (getLangOpts().OpenMP)
1517 E->getLHS());
1518 return LVal;
1519}
1520
1521typedef ComplexPairTy (ComplexExprEmitter::*CompoundFunc)(
1522 const ComplexExprEmitter::BinOpInfo &);
1523
1525 switch (Op) {
1526 case BO_MulAssign: return &ComplexExprEmitter::EmitBinMul;
1527 case BO_DivAssign: return &ComplexExprEmitter::EmitBinDiv;
1528 case BO_SubAssign: return &ComplexExprEmitter::EmitBinSub;
1529 case BO_AddAssign: return &ComplexExprEmitter::EmitBinAdd;
1530 default:
1531 llvm_unreachable("unexpected complex compound assignment");
1532 }
1533}
1534
1537 CompoundFunc Op = getComplexOp(E->getOpcode());
1538 RValue Val;
1539 return ComplexExprEmitter(*this).EmitCompoundAssignLValue(E, Op, Val);
1540}
1541
1544 llvm::Value *&Result) {
1545 CompoundFunc Op = getComplexOp(E->getOpcode());
1546 RValue Val;
1547 LValue Ret = ComplexExprEmitter(*this).EmitCompoundAssignLValue(E, Op, Val);
1548 Result = Val.getScalarVal();
1549 return Ret;
1550}
#define V(N, I)
Definition: ASTContext.h:3338
#define HANDLEBINOP(OP)
ComplexPairTy(ComplexExprEmitter::* CompoundFunc)(const ComplexExprEmitter::BinOpInfo &)
static const ComplexType * getComplexType(QualType type)
Return the complex type that we are meant to emit.
CodeGenFunction::ComplexPairTy ComplexPairTy
static llvm::Value * EmitllvmFAbs(CodeGenFunction &CGF, llvm::Value *Value)
#define HANDLE_BINOP(OP)
static StringRef getComplexMultiplyLibCallName(llvm::Type *Ty)
Lookup the libcall name for a given floating point type complex multiply.
static CompoundFunc getComplexOp(BinaryOperatorKind Op)
const Decl * D
Expr * E
SourceLocation Loc
Definition: SemaObjC.cpp:758
const llvm::fltSemantics & getFloatTypeSemantics(QualType T) const
Return the APFloat 'semantics' for the specified scalar floating point type.
CanQualType FloatTy
Definition: ASTContext.h:1130
CanQualType DoubleTy
Definition: ASTContext.h:1130
CanQualType LongDoubleTy
Definition: ASTContext.h:1130
bool hasSameUnqualifiedType(QualType T1, QualType T2) const
Determine whether the given types are equivalent after cvr-qualifiers have been removed.
Definition: ASTContext.h:2672
QualType getFunctionType(QualType ResultTy, ArrayRef< QualType > Args, const FunctionProtoType::ExtProtoInfo &EPI) const
Return a normal function type with a typed argument list.
Definition: ASTContext.h:1612
QualType getComplexType(QualType T) const
Return the uniqued reference to the type for a complex number with the specified element type.
AbstractConditionalOperator - An abstract base class for ConditionalOperator and BinaryConditionalOpe...
Definition: Expr.h:4165
AtomicExpr - Variadic atomic builtins: __atomic_exchange, __atomic_fetch_*, __atomic_load,...
Definition: Expr.h:6619
A builtin binary operation expression such as "x + y" or "x <= y".
Definition: Expr.h:3860
A default argument (C++ [dcl.fct.default]).
Definition: ExprCXX.h:1268
A use of a default initializer in a constructor or in aggregate initialization.
Definition: ExprCXX.h:1375
Expr * getExpr()
Get the initialization expression that will be used.
Definition: ExprCXX.cpp:1082
A rewritten comparison expression that was originally written using operator syntax.
Definition: ExprCXX.h:283
An expression "T()" which creates a value-initialized rvalue of type T, which is a non-class type.
Definition: ExprCXX.h:2181
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Definition: Expr.h:2830
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
Definition: Expr.h:3498
ChooseExpr - GNU builtin-in function __builtin_choose_expr.
Definition: Expr.h:4582
Represents a 'co_await' expression.
Definition: ExprCXX.h:5183
Like RawAddress, an abstract representation of an aligned address, but the pointer contained in this ...
Definition: Address.h:128
static Address invalid()
Definition: Address.h:176
Address withElementType(llvm::Type *ElemTy) const
Return address with different element type, but same pointer and alignment.
Definition: Address.h:274
llvm::StringRef getName() const
Return the IR name of the pointer value.
Definition: Address.h:216
bool isValid() const
Definition: Address.h:177
A scoped helper to set the current debug location to the specified location or preferred location of ...
Definition: CGDebugInfo.h:852
Address CreateStructGEP(Address Addr, unsigned Index, const llvm::Twine &Name="")
Definition: CGBuilder.h:218
All available information about a concrete callee.
Definition: CGCall.h:63
static CGCallee forDirect(llvm::Constant *functionPtr, const CGCalleeInfo &abstractInfo=CGCalleeInfo())
Definition: CGCall.h:137
CGFunctionInfo - Class to encapsulate the information about a function definition.
virtual void checkAndEmitLastprivateConditional(CodeGenFunction &CGF, const Expr *LHS)
Checks if the provided LVal is lastprivate conditional and emits the code to update the value of the ...
CallArgList - Type for representing both the value and type of arguments in a call.
Definition: CGCall.h:274
void add(RValue rvalue, QualType type)
Definition: CGCall.h:298
CodeGenFunction - This class organizes the per-function state that is used while generating LLVM code...
void EmitBranchOnBoolExpr(const Expr *Cond, llvm::BasicBlock *TrueBlock, llvm::BasicBlock *FalseBlock, uint64_t TrueCount, Stmt::Likelihood LH=Stmt::LH_None, const Expr *ConditionalOp=nullptr)
EmitBranchOnBoolExpr - Emit a branch on a boolean condition (e.g.
LValue getOrCreateOpaqueLValueMapping(const OpaqueValueExpr *e)
Given an opaque value expression, return its LValue mapping if it exists, otherwise create one.
LValue EmitScalarCompoundAssignWithComplex(const CompoundAssignOperator *E, llvm::Value *&Result)
LValue EmitLValue(const Expr *E, KnownNonNull_t IsKnownNonNull=NotKnownNonNull)
EmitLValue - Emit code to compute a designator that specifies the location of the expression.
RValue EmitAtomicLoad(LValue LV, SourceLocation SL, AggValueSlot Slot=AggValueSlot::ignored())
llvm::BasicBlock * createBasicBlock(const Twine &name="", llvm::Function *parent=nullptr, llvm::BasicBlock *before=nullptr)
createBasicBlock - Create an LLVM basic block.
const LangOptions & getLangOpts() const
void EmitBlock(llvm::BasicBlock *BB, bool IsFinished=false)
EmitBlock - Emit the given block.
RValue EmitCall(const CGFunctionInfo &CallInfo, const CGCallee &Callee, ReturnValueSlot ReturnValue, const CallArgList &Args, llvm::CallBase **callOrInvoke, bool IsMustTail, SourceLocation Loc, bool IsVirtualFunctionPointerThunk=false)
EmitCall - Generate a call of the given function, expecting the given result type,...
ComplexPairTy EmitComplexExpr(const Expr *E, bool IgnoreReal=false, bool IgnoreImag=false)
EmitComplexExpr - Emit the computation of the specified expression of complex type,...
RValue EmitObjCMessageExpr(const ObjCMessageExpr *E, ReturnValueSlot Return=ReturnValueSlot())
void EmitIgnoredExpr(const Expr *E)
EmitIgnoredExpr - Emit an expression in a context which ignores the result.
llvm::Type * ConvertTypeForMem(QualType T)
ConstantEmission tryEmitAsConstant(DeclRefExpr *refExpr)
void EmitComplexExprIntoLValue(const Expr *E, LValue dest, bool isInit)
EmitComplexExprIntoLValue - Emit the given expression of complex type and place its result into the s...
ComplexPairTy EmitPromotedComplexExpr(const Expr *E, QualType PromotionType)
ComplexPairTy EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV, bool isInc, bool isPre)
RValue EmitCoyieldExpr(const CoyieldExpr &E, AggValueSlot aggSlot=AggValueSlot::ignored(), bool ignoreResult=false)
ComplexPairTy EmitLoadOfComplex(LValue src, SourceLocation loc)
EmitLoadOfComplex - Load a complex number from the specified l-value.
llvm::Value * EmitComplexToScalarConversion(ComplexPairTy Src, QualType SrcTy, QualType DstTy, SourceLocation Loc)
Emit a conversion from the specified complex type to the specified destination type,...
LValue EmitComplexAssignmentLValue(const BinaryOperator *E)
Emit an l-value for an assignment (simple or compound) of complex type.
void ErrorUnsupported(const Stmt *S, const char *Type)
ErrorUnsupported - Print out an error that codegen doesn't support the specified stmt yet.
Address emitAddrOfImagComponent(Address complex, QualType complexType)
void EmitBranch(llvm::BasicBlock *Block)
EmitBranch - Emit a branch to the specified basic block from the current insert block,...
Address EmitCompoundStmt(const CompoundStmt &S, bool GetLast=false, AggValueSlot AVS=AggValueSlot::ignored())
RValue EmitVAArg(VAArgExpr *VE, Address &VAListAddr, AggValueSlot Slot=AggValueSlot::ignored())
Generate code to get an argument from the passed in pointer and update it accordingly.
RValue EmitPseudoObjectRValue(const PseudoObjectExpr *e, AggValueSlot slot=AggValueSlot::ignored())
llvm::Value * EmitLoadOfScalar(Address Addr, bool Volatile, QualType Ty, SourceLocation Loc, AlignmentSource Source=AlignmentSource::Type, bool isNontemporal=false)
EmitLoadOfScalar - Load a scalar value from an address, taking care to appropriately convert from the...
ComplexPairTy EmitUnPromotedValue(ComplexPairTy result, QualType PromotionType)
ComplexPairTy EmitPromotedValue(ComplexPairTy result, QualType PromotionType)
llvm::Value * EmitPromotedScalarExpr(const Expr *E, QualType PromotionType)
llvm::Type * ConvertType(QualType T)
RValue EmitCoawaitExpr(const CoawaitExpr &E, AggValueSlot aggSlot=AggValueSlot::ignored(), bool ignoreResult=false)
uint64_t getProfileCount(const Stmt *S)
Get the profiler's count for the given statement.
LValue MakeAddrLValue(Address Addr, QualType T, AlignmentSource Source=AlignmentSource::Type)
void EmitStoreOfComplex(ComplexPairTy V, LValue dest, bool isInit)
EmitStoreOfComplex - Store a complex number into the specified l-value.
void EmitAtomicStore(RValue rvalue, LValue lvalue, bool isInit)
llvm::Value * EmitScalarConversion(llvm::Value *Src, QualType SrcTy, QualType DstTy, SourceLocation Loc)
Emit a conversion from the specified type to the specified destination type, both of which are LLVM s...
RValue getOrCreateOpaqueRValueMapping(const OpaqueValueExpr *e)
Given an opaque value expression, return its RValue mapping if it exists, otherwise create one.
RValue EmitCallExpr(const CallExpr *E, ReturnValueSlot ReturnValue=ReturnValueSlot())
llvm::LLVMContext & getLLVMContext()
llvm::Value * EmitScalarExpr(const Expr *E, bool IgnoreResultAssign=false)
EmitScalarExpr - Emit the computation of the specified expression of LLVM scalar type,...
bool LValueIsSuitableForInlineAtomic(LValue Src)
void incrementProfileCounter(const Stmt *S, llvm::Value *StepV=nullptr)
Increment the profiler's counter for the given statement by StepV.
Address emitAddrOfRealComponent(Address complex, QualType complexType)
LValue EmitComplexCompoundAssignmentLValue(const CompoundAssignOperator *E)
void EmitStoreOfScalar(llvm::Value *Value, Address Addr, bool Volatile, QualType Ty, AlignmentSource Source=AlignmentSource::Type, bool isInit=false, bool isNontemporal=false)
EmitStoreOfScalar - Store a scalar value to an address, taking care to appropriately convert from the...
RValue EmitAtomicExpr(AtomicExpr *E)
void EmitExplicitCastExprType(const ExplicitCastExpr *E, CodeGenFunction *CGF=nullptr)
Emit type info if type of an expression is a variably modified type.
Definition: CGExpr.cpp:1243
llvm::FunctionCallee CreateRuntimeFunction(llvm::FunctionType *Ty, StringRef Name, llvm::AttributeList ExtraAttrs=llvm::AttributeList(), bool Local=false, bool AssumeConvergent=false)
Create or return a runtime function declaration with the specified type and name.
DiagnosticsEngine & getDiags() const
CGOpenMPRuntime & getOpenMPRuntime()
Return a reference to the configured OpenMP runtime.
llvm::Function * getIntrinsic(unsigned IID, ArrayRef< llvm::Type * > Tys=std::nullopt)
llvm::FunctionType * GetFunctionType(const CGFunctionInfo &Info)
GetFunctionType - Get the LLVM function type for.
Definition: CGCall.cpp:1632
const CGFunctionInfo & arrangeFreeFunctionCall(const CallArgList &Args, const FunctionType *Ty, bool ChainCall)
Figure out the rules for calling a function with the given formal type using the given arguments.
Definition: CGCall.cpp:639
LValue - This represents an lvalue references.
Definition: CGValue.h:182
bool isSimple() const
Definition: CGValue.h:278
bool isVolatileQualified() const
Definition: CGValue.h:285
void setTBAAInfo(TBAAAccessInfo Info)
Definition: CGValue.h:336
Address getAddress() const
Definition: CGValue.h:361
QualType getType() const
Definition: CGValue.h:291
RValue - This trivial value class is used to represent the result of an expression that is evaluated.
Definition: CGValue.h:42
static RValue get(llvm::Value *V)
Definition: CGValue.h:98
static RValue getComplex(llvm::Value *V1, llvm::Value *V2)
Definition: CGValue.h:108
llvm::Value * getScalarVal() const
getScalarVal() - Return the Value* of this scalar value.
Definition: CGValue.h:71
std::pair< llvm::Value *, llvm::Value * > getComplexVal() const
getComplexVal - Return the real/imag components of this complex value.
Definition: CGValue.h:78
ReturnValueSlot - Contains the address where the return value of a function can be stored,...
Definition: CGCall.h:372
Complex values, per C99 6.2.5p11.
Definition: Type.h:3108
QualType getElementType() const
Definition: Type.h:3118
CompoundAssignOperator - For compound assignments (e.g.
Definition: Expr.h:4112
CompoundLiteralExpr - [C99 6.5.2.5].
Definition: Expr.h:3428
ConstantExpr - An expression that occurs in a constant context and optionally the result of evaluatin...
Definition: Expr.h:1077
Represents a 'co_yield' expression.
Definition: ExprCXX.h:5264
A reference to a declared variable, function, enum, etc.
Definition: Expr.h:1265
Concrete class used by the front-end to report problems and issues.
Definition: Diagnostic.h:192
DiagnosticBuilder Report(SourceLocation Loc, unsigned DiagID)
Issue the message to the client.
Definition: Diagnostic.h:1547
Represents an expression – generally a full-expression – that introduces cleanups to be run at the en...
Definition: ExprCXX.h:3472
This represents one expression.
Definition: Expr.h:110
bool isGLValue() const
Definition: Expr.h:280
FPOptions getFPFeaturesInEffect(const LangOptions &LO) const
Returns the set of floating point options that apply to this expression.
Definition: Expr.cpp:3864
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
Definition: Expr.cpp:3066
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
Definition: Expr.cpp:277
QualType getType() const
Definition: Expr.h:142
Represents difference between two FPOptions values.
Definition: LangOptions.h:919
Represents a prototype with parameter type info, e.g.
Definition: Type.h:4973
Represents a C11 generic selection.
Definition: Expr.h:5907
ImaginaryLiteral - We support imaginary integer and floating point literals, like "1....
Definition: Expr.h:1717
const Expr * getSubExpr() const
Definition: Expr.h:1729
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
Definition: Expr.h:3675
Represents an implicitly-generated value initialization of an object of a given type.
Definition: Expr.h:5782
Describes an C or C++ initializer list.
Definition: Expr.h:5029
@ CX_Full
Implementation of complex division and multiplication using a call to runtime library functions(gener...
Definition: LangOptions.h:419
@ CX_Basic
Implementation of complex division and multiplication using algebraic formulas at source precision.
Definition: LangOptions.h:438
@ CX_Promoted
Implementation of complex division using algebraic formulas at higher precision.
Definition: LangOptions.h:433
@ CX_Improved
Implementation of complex division offering an improved handling for overflow in intermediate calcula...
Definition: LangOptions.h:424
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
Definition: Expr.h:3187
Expr * getBase() const
Definition: Expr.h:3264
ObjCIvarRefExpr - A reference to an ObjC instance variable.
Definition: ExprObjC.h:549
An expression that sends a message to the given Objective-C object or class.
Definition: ExprObjC.h:945
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
Definition: Expr.h:1173
ParenExpr - This represents a parenthesized expression, e.g.
Definition: Expr.h:2135
const Expr * getSubExpr() const
Definition: Expr.h:2150
PseudoObjectExpr - An expression which accesses a pseudo-object l-value.
Definition: Expr.h:6487
A (possibly-)qualified type.
Definition: Type.h:941
bool isNull() const
Return true if this QualType doesn't point to a type yet.
Definition: Type.h:1008
const Type * getTypePtr() const
Retrieves a pointer to the underlying (unqualified) type.
Definition: Type.h:7743
bool UseExcessPrecision(const ASTContext &Ctx)
Definition: Type.cpp:1571
Scope - A scope is a transient data structure that is used while parsing the program.
Definition: Scope.h:41
Encodes a location in the source.
StmtExpr - This is the GNU Statement Expression extension: ({int X=4; X;}).
Definition: Expr.h:4407
RetTy Visit(PTR(Stmt) S, ParamTys... P)
Definition: StmtVisitor.h:44
StmtVisitor - This class implements a simple visitor for Stmt subclasses.
Definition: StmtVisitor.h:185
Stmt - This represents one statement.
Definition: Stmt.h:84
Represents a reference to a non-type template parameter that has been substituted with a template arg...
Definition: ExprCXX.h:4482
const T * castAs() const
Member-template castAs<specific type>.
Definition: Type.h:8583
bool isAnyComplexType() const
Definition: Type.h:8100
bool isAtomicType() const
Definition: Type.h:8147
bool isRealFloatingType() const
Floating point categories.
Definition: Type.cpp:2266
bool isFloatingType() const
Definition: Type.cpp:2249
bool isUnsignedIntegerType() const
Return true if this is an integer type that is unsigned, according to C99 6.2.5p6 [which returns true...
Definition: Type.cpp:2196
const T * getAs() const
Member-template getAs<specific type>'.
Definition: Type.h:8516
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
Definition: Expr.h:2188
Represents a call to the builtin function __builtin_va_arg.
Definition: Expr.h:4691
QualType getType() const
Definition: Value.cpp:234
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
const AstTypeMatcher< ComplexType > complexType
Matches C99 complex types.
bool Ret(InterpState &S, CodePtr &PC, APValue &Result)
Definition: Interp.h:275
bool Null(InterpState &S, CodePtr OpPC, const Descriptor *Desc)
Definition: Interp.h:2220
bool GE(InterpState &S, CodePtr OpPC)
Definition: Interp.h:1124
The JSON file list parser is used to communicate input to InstallAPI.
BinaryOperatorKind
@ Result
The result type of a method or function.
CastKind
CastKind - The kind of operation required for a conversion.
@ EST_BasicNoexcept
noexcept
Diagnostic wrappers for TextAPI types for error reporting.
Definition: Dominators.h:30
cl::opt< bool > EnableSingleByteCoverage
#define false
Definition: stdbool.h:26
llvm::CallingConv::ID getRuntimeCC() const
static TBAAAccessInfo getMayAliasInfo()
Definition: CodeGenTBAA.h:63
Holds information about the various types of exception specification.
Definition: Type.h:5030
Extra information about a function prototype.
Definition: Type.h:5058
ExtProtoInfo withExceptionSpec(const ExceptionSpecInfo &ESI)
Definition: Type.h:5078