clang  3.7.0
RewriteObjCFoundationAPI.cpp
Go to the documentation of this file.
1 //===--- RewriteObjCFoundationAPI.cpp - Foundation API Rewriter -----------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Rewrites legacy method calls to modern syntax.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/Edit/Rewriters.h"
15 #include "clang/AST/ASTContext.h"
16 #include "clang/AST/ExprCXX.h"
17 #include "clang/AST/ExprObjC.h"
18 #include "clang/AST/NSAPI.h"
19 #include "clang/AST/ParentMap.h"
20 #include "clang/Edit/Commit.h"
21 #include "clang/Lex/Lexer.h"
22 
23 using namespace clang;
24 using namespace edit;
25 
27  IdentifierInfo *&ClassId,
28  const LangOptions &LangOpts) {
29  if (!Msg || Msg->isImplicit() || !Msg->getMethodDecl())
30  return false;
31 
32  const ObjCInterfaceDecl *Receiver = Msg->getReceiverInterface();
33  if (!Receiver)
34  return false;
35  ClassId = Receiver->getIdentifier();
36 
38  return true;
39 
40  // When in ARC mode we also convert "[[.. alloc] init]" messages to literals,
41  // since the change from +1 to +0 will be handled fine by ARC.
42  if (LangOpts.ObjCAutoRefCount) {
44  if (const ObjCMessageExpr *Rec = dyn_cast<ObjCMessageExpr>(
46  if (Rec->getMethodFamily() == OMF_alloc)
47  return true;
48  }
49  }
50  }
51 
52  return false;
53 }
54 
55 //===----------------------------------------------------------------------===//
56 // rewriteObjCRedundantCallWithLiteral.
57 //===----------------------------------------------------------------------===//
58 
60  const NSAPI &NS, Commit &commit) {
61  IdentifierInfo *II = nullptr;
63  return false;
64  if (Msg->getNumArgs() != 1)
65  return false;
66 
67  const Expr *Arg = Msg->getArg(0)->IgnoreParenImpCasts();
68  Selector Sel = Msg->getSelector();
69 
70  if ((isa<ObjCStringLiteral>(Arg) &&
74 
75  (isa<ObjCArrayLiteral>(Arg) &&
79 
80  (isa<ObjCDictionaryLiteral>(Arg) &&
85 
86  commit.replaceWithInner(Msg->getSourceRange(),
87  Msg->getArg(0)->getSourceRange());
88  return true;
89  }
90 
91  return false;
92 }
93 
94 //===----------------------------------------------------------------------===//
95 // rewriteToObjCSubscriptSyntax.
96 //===----------------------------------------------------------------------===//
97 
98 /// \brief Check for classes that accept 'objectForKey:' (or the other selectors
99 /// that the migrator handles) but return their instances as 'id', resulting
100 /// in the compiler resolving 'objectForKey:' as the method from NSDictionary.
101 ///
102 /// When checking if we can convert to subscripting syntax, check whether
103 /// the receiver is a result of a class method from a hardcoded list of
104 /// such classes. In such a case return the specific class as the interface
105 /// of the receiver.
106 ///
107 /// FIXME: Remove this when these classes start using 'instancetype'.
108 static const ObjCInterfaceDecl *
110  const Expr *Receiver,
111  ASTContext &Ctx) {
112  assert(IFace && Receiver);
113 
114  // If the receiver has type 'id'...
115  if (!Ctx.isObjCIdType(Receiver->getType().getUnqualifiedType()))
116  return IFace;
117 
118  const ObjCMessageExpr *
119  InnerMsg = dyn_cast<ObjCMessageExpr>(Receiver->IgnoreParenCasts());
120  if (!InnerMsg)
121  return IFace;
122 
123  QualType ClassRec;
124  switch (InnerMsg->getReceiverKind()) {
127  return IFace;
128 
130  ClassRec = InnerMsg->getClassReceiver();
131  break;
133  ClassRec = InnerMsg->getSuperType();
134  break;
135  }
136 
137  if (ClassRec.isNull())
138  return IFace;
139 
140  // ...and it is the result of a class message...
141 
142  const ObjCObjectType *ObjTy = ClassRec->getAs<ObjCObjectType>();
143  if (!ObjTy)
144  return IFace;
145  const ObjCInterfaceDecl *OID = ObjTy->getInterface();
146 
147  // ...and the receiving class is NSMapTable or NSLocale, return that
148  // class as the receiving interface.
149  if (OID->getName() == "NSMapTable" ||
150  OID->getName() == "NSLocale")
151  return OID;
152 
153  return IFace;
154 }
155 
157  const ObjCMessageExpr *Msg,
158  ASTContext &Ctx,
159  Selector subscriptSel) {
160  const Expr *Rec = Msg->getInstanceReceiver();
161  if (!Rec)
162  return false;
163  IFace = maybeAdjustInterfaceForSubscriptingCheck(IFace, Rec, Ctx);
164 
165  if (const ObjCMethodDecl *MD = IFace->lookupInstanceMethod(subscriptSel)) {
166  if (!MD->isUnavailable())
167  return true;
168  }
169  return false;
170 }
171 
172 static bool subscriptOperatorNeedsParens(const Expr *FullExpr);
173 
174 static void maybePutParensOnReceiver(const Expr *Receiver, Commit &commit) {
175  if (subscriptOperatorNeedsParens(Receiver)) {
176  SourceRange RecRange = Receiver->getSourceRange();
177  commit.insertWrap("(", RecRange, ")");
178  }
179 }
180 
182  Commit &commit) {
183  if (Msg->getNumArgs() != 1)
184  return false;
185  const Expr *Rec = Msg->getInstanceReceiver();
186  if (!Rec)
187  return false;
188 
189  SourceRange MsgRange = Msg->getSourceRange();
190  SourceRange RecRange = Rec->getSourceRange();
191  SourceRange ArgRange = Msg->getArg(0)->getSourceRange();
192 
194  ArgRange.getBegin()),
196  commit.replaceWithInner(SourceRange(ArgRange.getBegin(), MsgRange.getEnd()),
197  ArgRange);
198  commit.insertWrap("[", ArgRange, "]");
199  maybePutParensOnReceiver(Rec, commit);
200  return true;
201 }
202 
204  const ObjCMessageExpr *Msg,
205  const NSAPI &NS,
206  Commit &commit) {
207  if (!canRewriteToSubscriptSyntax(IFace, Msg, NS.getASTContext(),
209  return false;
210  return rewriteToSubscriptGetCommon(Msg, commit);
211 }
212 
214  const ObjCMessageExpr *Msg,
215  const NSAPI &NS,
216  Commit &commit) {
217  if (!canRewriteToSubscriptSyntax(IFace, Msg, NS.getASTContext(),
219  return false;
220  return rewriteToSubscriptGetCommon(Msg, commit);
221 }
222 
224  const ObjCMessageExpr *Msg,
225  const NSAPI &NS,
226  Commit &commit) {
227  if (!canRewriteToSubscriptSyntax(IFace, Msg, NS.getASTContext(),
229  return false;
230 
231  if (Msg->getNumArgs() != 2)
232  return false;
233  const Expr *Rec = Msg->getInstanceReceiver();
234  if (!Rec)
235  return false;
236 
237  SourceRange MsgRange = Msg->getSourceRange();
238  SourceRange RecRange = Rec->getSourceRange();
239  SourceRange Arg0Range = Msg->getArg(0)->getSourceRange();
240  SourceRange Arg1Range = Msg->getArg(1)->getSourceRange();
241 
243  Arg0Range.getBegin()),
246  Arg1Range.getBegin()),
247  CharSourceRange::getTokenRange(Arg0Range));
248  commit.replaceWithInner(SourceRange(Arg1Range.getBegin(), MsgRange.getEnd()),
249  Arg1Range);
250  commit.insertWrap("[", CharSourceRange::getCharRange(Arg0Range.getBegin(),
251  Arg1Range.getBegin()),
252  "] = ");
253  maybePutParensOnReceiver(Rec, commit);
254  return true;
255 }
256 
258  const ObjCMessageExpr *Msg,
259  const NSAPI &NS,
260  Commit &commit) {
261  if (!canRewriteToSubscriptSyntax(IFace, Msg, NS.getASTContext(),
263  return false;
264 
265  if (Msg->getNumArgs() != 2)
266  return false;
267  const Expr *Rec = Msg->getInstanceReceiver();
268  if (!Rec)
269  return false;
270 
271  SourceRange MsgRange = Msg->getSourceRange();
272  SourceRange RecRange = Rec->getSourceRange();
273  SourceRange Arg0Range = Msg->getArg(0)->getSourceRange();
274  SourceRange Arg1Range = Msg->getArg(1)->getSourceRange();
275 
276  SourceLocation LocBeforeVal = Arg0Range.getBegin();
277  commit.insertBefore(LocBeforeVal, "] = ");
278  commit.insertFromRange(LocBeforeVal, Arg1Range, /*afterToken=*/false,
279  /*beforePreviousInsertions=*/true);
280  commit.insertBefore(LocBeforeVal, "[");
282  Arg0Range.getBegin()),
284  commit.replaceWithInner(SourceRange(Arg0Range.getBegin(), MsgRange.getEnd()),
285  Arg0Range);
286  maybePutParensOnReceiver(Rec, commit);
287  return true;
288 }
289 
291  const NSAPI &NS, Commit &commit) {
292  if (!Msg || Msg->isImplicit() ||
294  return false;
295  const ObjCMethodDecl *Method = Msg->getMethodDecl();
296  if (!Method)
297  return false;
298 
299  const ObjCInterfaceDecl *IFace =
301  if (!IFace)
302  return false;
303  Selector Sel = Msg->getSelector();
304 
306  return rewriteToArraySubscriptGet(IFace, Msg, NS, commit);
307 
309  return rewriteToDictionarySubscriptGet(IFace, Msg, NS, commit);
310 
311  if (Msg->getNumArgs() != 2)
312  return false;
313 
315  return rewriteToArraySubscriptSet(IFace, Msg, NS, commit);
316 
318  return rewriteToDictionarySubscriptSet(IFace, Msg, NS, commit);
319 
320  return false;
321 }
322 
323 //===----------------------------------------------------------------------===//
324 // rewriteToObjCLiteralSyntax.
325 //===----------------------------------------------------------------------===//
326 
327 static bool rewriteToArrayLiteral(const ObjCMessageExpr *Msg,
328  const NSAPI &NS, Commit &commit,
329  const ParentMap *PMap);
330 static bool rewriteToDictionaryLiteral(const ObjCMessageExpr *Msg,
331  const NSAPI &NS, Commit &commit);
332 static bool rewriteToNumberLiteral(const ObjCMessageExpr *Msg,
333  const NSAPI &NS, Commit &commit);
334 static bool rewriteToNumericBoxedExpression(const ObjCMessageExpr *Msg,
335  const NSAPI &NS, Commit &commit);
336 static bool rewriteToStringBoxedExpression(const ObjCMessageExpr *Msg,
337  const NSAPI &NS, Commit &commit);
338 
340  const NSAPI &NS, Commit &commit,
341  const ParentMap *PMap) {
342  IdentifierInfo *II = nullptr;
343  if (!checkForLiteralCreation(Msg, II, NS.getASTContext().getLangOpts()))
344  return false;
345 
346  if (II == NS.getNSClassId(NSAPI::ClassId_NSArray))
347  return rewriteToArrayLiteral(Msg, NS, commit, PMap);
349  return rewriteToDictionaryLiteral(Msg, NS, commit);
351  return rewriteToNumberLiteral(Msg, NS, commit);
353  return rewriteToStringBoxedExpression(Msg, NS, commit);
354 
355  return false;
356 }
357 
358 /// \brief Returns true if the immediate message arguments of \c Msg should not
359 /// be rewritten because it will interfere with the rewrite of the parent
360 /// message expression. e.g.
361 /// \code
362 /// [NSDictionary dictionaryWithObjects:
363 /// [NSArray arrayWithObjects:@"1", @"2", nil]
364 /// forKeys:[NSArray arrayWithObjects:@"A", @"B", nil]];
365 /// \endcode
366 /// It will return true for this because we are going to rewrite this directly
367 /// to a dictionary literal without any array literals.
369  const NSAPI &NS);
370 
371 //===----------------------------------------------------------------------===//
372 // rewriteToArrayLiteral.
373 //===----------------------------------------------------------------------===//
374 
375 /// \brief Adds an explicit cast to 'id' if the type is not objc object.
376 static void objectifyExpr(const Expr *E, Commit &commit);
377 
378 static bool rewriteToArrayLiteral(const ObjCMessageExpr *Msg,
379  const NSAPI &NS, Commit &commit,
380  const ParentMap *PMap) {
381  if (PMap) {
382  const ObjCMessageExpr *ParentMsg =
383  dyn_cast_or_null<ObjCMessageExpr>(PMap->getParentIgnoreParenCasts(Msg));
384  if (shouldNotRewriteImmediateMessageArgs(ParentMsg, NS))
385  return false;
386  }
387 
388  Selector Sel = Msg->getSelector();
389  SourceRange MsgRange = Msg->getSourceRange();
390 
391  if (Sel == NS.getNSArraySelector(NSAPI::NSArr_array)) {
392  if (Msg->getNumArgs() != 0)
393  return false;
394  commit.replace(MsgRange, "@[]");
395  return true;
396  }
397 
399  if (Msg->getNumArgs() != 1)
400  return false;
401  objectifyExpr(Msg->getArg(0), commit);
402  SourceRange ArgRange = Msg->getArg(0)->getSourceRange();
403  commit.replaceWithInner(MsgRange, ArgRange);
404  commit.insertWrap("@[", ArgRange, "]");
405  return true;
406  }
407 
410  if (Msg->getNumArgs() == 0)
411  return false;
412  const Expr *SentinelExpr = Msg->getArg(Msg->getNumArgs() - 1);
413  if (!NS.getASTContext().isSentinelNullExpr(SentinelExpr))
414  return false;
415 
416  for (unsigned i = 0, e = Msg->getNumArgs() - 1; i != e; ++i)
417  objectifyExpr(Msg->getArg(i), commit);
418 
419  if (Msg->getNumArgs() == 1) {
420  commit.replace(MsgRange, "@[]");
421  return true;
422  }
423  SourceRange ArgRange(Msg->getArg(0)->getLocStart(),
424  Msg->getArg(Msg->getNumArgs()-2)->getLocEnd());
425  commit.replaceWithInner(MsgRange, ArgRange);
426  commit.insertWrap("@[", ArgRange, "]");
427  return true;
428  }
429 
430  return false;
431 }
432 
433 //===----------------------------------------------------------------------===//
434 // rewriteToDictionaryLiteral.
435 //===----------------------------------------------------------------------===//
436 
437 /// \brief If \c Msg is an NSArray creation message or literal, this gets the
438 /// objects that were used to create it.
439 /// \returns true if it is an NSArray and we got objects, or false otherwise.
440 static bool getNSArrayObjects(const Expr *E, const NSAPI &NS,
442  if (!E)
443  return false;
444 
445  E = E->IgnoreParenCasts();
446  if (!E)
447  return false;
448 
449  if (const ObjCMessageExpr *Msg = dyn_cast<ObjCMessageExpr>(E)) {
450  IdentifierInfo *Cls = nullptr;
451  if (!checkForLiteralCreation(Msg, Cls, NS.getASTContext().getLangOpts()))
452  return false;
453 
454  if (Cls != NS.getNSClassId(NSAPI::ClassId_NSArray))
455  return false;
456 
457  Selector Sel = Msg->getSelector();
458  if (Sel == NS.getNSArraySelector(NSAPI::NSArr_array))
459  return true; // empty array.
460 
462  if (Msg->getNumArgs() != 1)
463  return false;
464  Objs.push_back(Msg->getArg(0));
465  return true;
466  }
467 
470  if (Msg->getNumArgs() == 0)
471  return false;
472  const Expr *SentinelExpr = Msg->getArg(Msg->getNumArgs() - 1);
473  if (!NS.getASTContext().isSentinelNullExpr(SentinelExpr))
474  return false;
475 
476  for (unsigned i = 0, e = Msg->getNumArgs() - 1; i != e; ++i)
477  Objs.push_back(Msg->getArg(i));
478  return true;
479  }
480 
481  } else if (const ObjCArrayLiteral *ArrLit = dyn_cast<ObjCArrayLiteral>(E)) {
482  for (unsigned i = 0, e = ArrLit->getNumElements(); i != e; ++i)
483  Objs.push_back(ArrLit->getElement(i));
484  return true;
485  }
486 
487  return false;
488 }
489 
491  const NSAPI &NS, Commit &commit) {
492  Selector Sel = Msg->getSelector();
493  SourceRange MsgRange = Msg->getSourceRange();
494 
496  if (Msg->getNumArgs() != 0)
497  return false;
498  commit.replace(MsgRange, "@{}");
499  return true;
500  }
501 
502  if (Sel == NS.getNSDictionarySelector(
504  if (Msg->getNumArgs() != 2)
505  return false;
506 
507  objectifyExpr(Msg->getArg(0), commit);
508  objectifyExpr(Msg->getArg(1), commit);
509 
510  SourceRange ValRange = Msg->getArg(0)->getSourceRange();
511  SourceRange KeyRange = Msg->getArg(1)->getSourceRange();
512  // Insert key before the value.
513  commit.insertBefore(ValRange.getBegin(), ": ");
514  commit.insertFromRange(ValRange.getBegin(),
516  /*afterToken=*/false, /*beforePreviousInsertions=*/true);
517  commit.insertBefore(ValRange.getBegin(), "@{");
518  commit.insertAfterToken(ValRange.getEnd(), "}");
519  commit.replaceWithInner(MsgRange, ValRange);
520  return true;
521  }
522 
523  if (Sel == NS.getNSDictionarySelector(
526  if (Msg->getNumArgs() % 2 != 1)
527  return false;
528  unsigned SentinelIdx = Msg->getNumArgs() - 1;
529  const Expr *SentinelExpr = Msg->getArg(SentinelIdx);
530  if (!NS.getASTContext().isSentinelNullExpr(SentinelExpr))
531  return false;
532 
533  if (Msg->getNumArgs() == 1) {
534  commit.replace(MsgRange, "@{}");
535  return true;
536  }
537 
538  for (unsigned i = 0; i < SentinelIdx; i += 2) {
539  objectifyExpr(Msg->getArg(i), commit);
540  objectifyExpr(Msg->getArg(i+1), commit);
541 
542  SourceRange ValRange = Msg->getArg(i)->getSourceRange();
543  SourceRange KeyRange = Msg->getArg(i+1)->getSourceRange();
544  // Insert value after key.
545  commit.insertAfterToken(KeyRange.getEnd(), ": ");
546  commit.insertFromRange(KeyRange.getEnd(), ValRange, /*afterToken=*/true);
547  commit.remove(CharSourceRange::getCharRange(ValRange.getBegin(),
548  KeyRange.getBegin()));
549  }
550  // Range of arguments up until and including the last key.
551  // The sentinel and first value are cut off, the value will move after the
552  // key.
553  SourceRange ArgRange(Msg->getArg(1)->getLocStart(),
554  Msg->getArg(SentinelIdx-1)->getLocEnd());
555  commit.insertWrap("@{", ArgRange, "}");
556  commit.replaceWithInner(MsgRange, ArgRange);
557  return true;
558  }
559 
560  if (Sel == NS.getNSDictionarySelector(
563  if (Msg->getNumArgs() != 2)
564  return false;
565 
567  if (!getNSArrayObjects(Msg->getArg(0), NS, Vals))
568  return false;
569 
571  if (!getNSArrayObjects(Msg->getArg(1), NS, Keys))
572  return false;
573 
574  if (Vals.size() != Keys.size())
575  return false;
576 
577  if (Vals.empty()) {
578  commit.replace(MsgRange, "@{}");
579  return true;
580  }
581 
582  for (unsigned i = 0, n = Vals.size(); i < n; ++i) {
583  objectifyExpr(Vals[i], commit);
584  objectifyExpr(Keys[i], commit);
585 
586  SourceRange ValRange = Vals[i]->getSourceRange();
587  SourceRange KeyRange = Keys[i]->getSourceRange();
588  // Insert value after key.
589  commit.insertAfterToken(KeyRange.getEnd(), ": ");
590  commit.insertFromRange(KeyRange.getEnd(), ValRange, /*afterToken=*/true);
591  }
592  // Range of arguments up until and including the last key.
593  // The first value is cut off, the value will move after the key.
594  SourceRange ArgRange(Keys.front()->getLocStart(),
595  Keys.back()->getLocEnd());
596  commit.insertWrap("@{", ArgRange, "}");
597  commit.replaceWithInner(MsgRange, ArgRange);
598  return true;
599  }
600 
601  return false;
602 }
603 
605  const NSAPI &NS) {
606  if (!Msg)
607  return false;
608 
609  IdentifierInfo *II = nullptr;
610  if (!checkForLiteralCreation(Msg, II, NS.getASTContext().getLangOpts()))
611  return false;
612 
614  return false;
615 
616  Selector Sel = Msg->getSelector();
617  if (Sel == NS.getNSDictionarySelector(
620  if (Msg->getNumArgs() != 2)
621  return false;
622 
624  if (!getNSArrayObjects(Msg->getArg(0), NS, Vals))
625  return false;
626 
628  if (!getNSArrayObjects(Msg->getArg(1), NS, Keys))
629  return false;
630 
631  if (Vals.size() != Keys.size())
632  return false;
633 
634  return true;
635  }
636 
637  return false;
638 }
639 
640 //===----------------------------------------------------------------------===//
641 // rewriteToNumberLiteral.
642 //===----------------------------------------------------------------------===//
643 
644 static bool rewriteToCharLiteral(const ObjCMessageExpr *Msg,
645  const CharacterLiteral *Arg,
646  const NSAPI &NS, Commit &commit) {
647  if (Arg->getKind() != CharacterLiteral::Ascii)
648  return false;
650  Msg->getSelector())) {
651  SourceRange ArgRange = Arg->getSourceRange();
652  commit.replaceWithInner(Msg->getSourceRange(), ArgRange);
653  commit.insert(ArgRange.getBegin(), "@");
654  return true;
655  }
656 
657  return rewriteToNumericBoxedExpression(Msg, NS, commit);
658 }
659 
660 static bool rewriteToBoolLiteral(const ObjCMessageExpr *Msg,
661  const Expr *Arg,
662  const NSAPI &NS, Commit &commit) {
664  Msg->getSelector())) {
665  SourceRange ArgRange = Arg->getSourceRange();
666  commit.replaceWithInner(Msg->getSourceRange(), ArgRange);
667  commit.insert(ArgRange.getBegin(), "@");
668  return true;
669  }
670 
671  return rewriteToNumericBoxedExpression(Msg, NS, commit);
672 }
673 
674 namespace {
675 
676 struct LiteralInfo {
677  bool Hex, Octal;
678  StringRef U, F, L, LL;
679  CharSourceRange WithoutSuffRange;
680 };
681 
682 }
683 
684 static bool getLiteralInfo(SourceRange literalRange,
685  bool isFloat, bool isIntZero,
686  ASTContext &Ctx, LiteralInfo &Info) {
687  if (literalRange.getBegin().isMacroID() ||
688  literalRange.getEnd().isMacroID())
689  return false;
690  StringRef text = Lexer::getSourceText(
691  CharSourceRange::getTokenRange(literalRange),
692  Ctx.getSourceManager(), Ctx.getLangOpts());
693  if (text.empty())
694  return false;
695 
696  Optional<bool> UpperU, UpperL;
697  bool UpperF = false;
698 
699  struct Suff {
700  static bool has(StringRef suff, StringRef &text) {
701  if (text.endswith(suff)) {
702  text = text.substr(0, text.size()-suff.size());
703  return true;
704  }
705  return false;
706  }
707  };
708 
709  while (1) {
710  if (Suff::has("u", text)) {
711  UpperU = false;
712  } else if (Suff::has("U", text)) {
713  UpperU = true;
714  } else if (Suff::has("ll", text)) {
715  UpperL = false;
716  } else if (Suff::has("LL", text)) {
717  UpperL = true;
718  } else if (Suff::has("l", text)) {
719  UpperL = false;
720  } else if (Suff::has("L", text)) {
721  UpperL = true;
722  } else if (isFloat && Suff::has("f", text)) {
723  UpperF = false;
724  } else if (isFloat && Suff::has("F", text)) {
725  UpperF = true;
726  } else
727  break;
728  }
729 
730  if (!UpperU.hasValue() && !UpperL.hasValue())
731  UpperU = UpperL = true;
732  else if (UpperU.hasValue() && !UpperL.hasValue())
733  UpperL = UpperU;
734  else if (UpperL.hasValue() && !UpperU.hasValue())
735  UpperU = UpperL;
736 
737  Info.U = *UpperU ? "U" : "u";
738  Info.L = *UpperL ? "L" : "l";
739  Info.LL = *UpperL ? "LL" : "ll";
740  Info.F = UpperF ? "F" : "f";
741 
742  Info.Hex = Info.Octal = false;
743  if (text.startswith("0x"))
744  Info.Hex = true;
745  else if (!isFloat && !isIntZero && text.startswith("0"))
746  Info.Octal = true;
747 
748  SourceLocation B = literalRange.getBegin();
749  Info.WithoutSuffRange =
750  CharSourceRange::getCharRange(B, B.getLocWithOffset(text.size()));
751  return true;
752 }
753 
755  const NSAPI &NS, Commit &commit) {
756  if (Msg->getNumArgs() != 1)
757  return false;
758 
759  const Expr *Arg = Msg->getArg(0)->IgnoreParenImpCasts();
760  if (const CharacterLiteral *CharE = dyn_cast<CharacterLiteral>(Arg))
761  return rewriteToCharLiteral(Msg, CharE, NS, commit);
762  if (const ObjCBoolLiteralExpr *BE = dyn_cast<ObjCBoolLiteralExpr>(Arg))
763  return rewriteToBoolLiteral(Msg, BE, NS, commit);
764  if (const CXXBoolLiteralExpr *BE = dyn_cast<CXXBoolLiteralExpr>(Arg))
765  return rewriteToBoolLiteral(Msg, BE, NS, commit);
766 
767  const Expr *literalE = Arg;
768  if (const UnaryOperator *UOE = dyn_cast<UnaryOperator>(literalE)) {
769  if (UOE->getOpcode() == UO_Plus || UOE->getOpcode() == UO_Minus)
770  literalE = UOE->getSubExpr();
771  }
772 
773  // Only integer and floating literals, otherwise try to rewrite to boxed
774  // expression.
775  if (!isa<IntegerLiteral>(literalE) && !isa<FloatingLiteral>(literalE))
776  return rewriteToNumericBoxedExpression(Msg, NS, commit);
777 
778  ASTContext &Ctx = NS.getASTContext();
779  Selector Sel = Msg->getSelector();
781  MKOpt = NS.getNSNumberLiteralMethodKind(Sel);
782  if (!MKOpt)
783  return false;
785 
786  bool CallIsUnsigned = false, CallIsLong = false, CallIsLongLong = false;
787  bool CallIsFloating = false, CallIsDouble = false;
788 
789  switch (MK) {
790  // We cannot have these calls with int/float literals.
796  return rewriteToNumericBoxedExpression(Msg, NS, commit);
797 
800  CallIsUnsigned = true;
803  break;
804 
806  CallIsUnsigned = true;
808  CallIsLong = true;
809  break;
810 
812  CallIsUnsigned = true;
814  CallIsLongLong = true;
815  break;
816 
818  CallIsDouble = true;
820  CallIsFloating = true;
821  break;
822  }
823 
824  SourceRange ArgRange = Arg->getSourceRange();
825  QualType ArgTy = Arg->getType();
826  QualType CallTy = Msg->getArg(0)->getType();
827 
828  // Check for the easy case, the literal maps directly to the call.
829  if (Ctx.hasSameType(ArgTy, CallTy)) {
830  commit.replaceWithInner(Msg->getSourceRange(), ArgRange);
831  commit.insert(ArgRange.getBegin(), "@");
832  return true;
833  }
834 
835  // We will need to modify the literal suffix to get the same type as the call.
836  // Try with boxed expression if it came from a macro.
837  if (ArgRange.getBegin().isMacroID())
838  return rewriteToNumericBoxedExpression(Msg, NS, commit);
839 
840  bool LitIsFloat = ArgTy->isFloatingType();
841  // For a float passed to integer call, don't try rewriting to objc literal.
842  // It is difficult and a very uncommon case anyway.
843  // But try with boxed expression.
844  if (LitIsFloat && !CallIsFloating)
845  return rewriteToNumericBoxedExpression(Msg, NS, commit);
846 
847  // Try to modify the literal make it the same type as the method call.
848  // -Modify the suffix, and/or
849  // -Change integer to float
850 
851  LiteralInfo LitInfo;
852  bool isIntZero = false;
853  if (const IntegerLiteral *IntE = dyn_cast<IntegerLiteral>(literalE))
854  isIntZero = !IntE->getValue().getBoolValue();
855  if (!getLiteralInfo(ArgRange, LitIsFloat, isIntZero, Ctx, LitInfo))
856  return rewriteToNumericBoxedExpression(Msg, NS, commit);
857 
858  // Not easy to do int -> float with hex/octal and uncommon anyway.
859  if (!LitIsFloat && CallIsFloating && (LitInfo.Hex || LitInfo.Octal))
860  return rewriteToNumericBoxedExpression(Msg, NS, commit);
861 
862  SourceLocation LitB = LitInfo.WithoutSuffRange.getBegin();
863  SourceLocation LitE = LitInfo.WithoutSuffRange.getEnd();
864 
865  commit.replaceWithInner(CharSourceRange::getTokenRange(Msg->getSourceRange()),
866  LitInfo.WithoutSuffRange);
867  commit.insert(LitB, "@");
868 
869  if (!LitIsFloat && CallIsFloating)
870  commit.insert(LitE, ".0");
871 
872  if (CallIsFloating) {
873  if (!CallIsDouble)
874  commit.insert(LitE, LitInfo.F);
875  } else {
876  if (CallIsUnsigned)
877  commit.insert(LitE, LitInfo.U);
878 
879  if (CallIsLong)
880  commit.insert(LitE, LitInfo.L);
881  else if (CallIsLongLong)
882  commit.insert(LitE, LitInfo.LL);
883  }
884  return true;
885 }
886 
887 // FIXME: Make determination of operator precedence more general and
888 // make it broadly available.
889 static bool subscriptOperatorNeedsParens(const Expr *FullExpr) {
890  const Expr* Expr = FullExpr->IgnoreImpCasts();
891  if (isa<ArraySubscriptExpr>(Expr) ||
892  isa<CallExpr>(Expr) ||
893  isa<DeclRefExpr>(Expr) ||
894  isa<CXXNamedCastExpr>(Expr) ||
895  isa<CXXConstructExpr>(Expr) ||
896  isa<CXXThisExpr>(Expr) ||
897  isa<CXXTypeidExpr>(Expr) ||
898  isa<CXXUnresolvedConstructExpr>(Expr) ||
899  isa<ObjCMessageExpr>(Expr) ||
900  isa<ObjCPropertyRefExpr>(Expr) ||
901  isa<ObjCProtocolExpr>(Expr) ||
902  isa<MemberExpr>(Expr) ||
903  isa<ObjCIvarRefExpr>(Expr) ||
904  isa<ParenExpr>(FullExpr) ||
905  isa<ParenListExpr>(Expr) ||
906  isa<SizeOfPackExpr>(Expr))
907  return false;
908 
909  return true;
910 }
911 static bool castOperatorNeedsParens(const Expr *FullExpr) {
912  const Expr* Expr = FullExpr->IgnoreImpCasts();
913  if (isa<ArraySubscriptExpr>(Expr) ||
914  isa<CallExpr>(Expr) ||
915  isa<DeclRefExpr>(Expr) ||
916  isa<CastExpr>(Expr) ||
917  isa<CXXNewExpr>(Expr) ||
918  isa<CXXConstructExpr>(Expr) ||
919  isa<CXXDeleteExpr>(Expr) ||
920  isa<CXXNoexceptExpr>(Expr) ||
921  isa<CXXPseudoDestructorExpr>(Expr) ||
922  isa<CXXScalarValueInitExpr>(Expr) ||
923  isa<CXXThisExpr>(Expr) ||
924  isa<CXXTypeidExpr>(Expr) ||
925  isa<CXXUnresolvedConstructExpr>(Expr) ||
926  isa<ObjCMessageExpr>(Expr) ||
927  isa<ObjCPropertyRefExpr>(Expr) ||
928  isa<ObjCProtocolExpr>(Expr) ||
929  isa<MemberExpr>(Expr) ||
930  isa<ObjCIvarRefExpr>(Expr) ||
931  isa<ParenExpr>(FullExpr) ||
932  isa<ParenListExpr>(Expr) ||
933  isa<SizeOfPackExpr>(Expr) ||
934  isa<UnaryOperator>(Expr))
935  return false;
936 
937  return true;
938 }
939 
940 static void objectifyExpr(const Expr *E, Commit &commit) {
941  if (!E) return;
942 
943  QualType T = E->getType();
944  if (T->isObjCObjectPointerType()) {
945  if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
946  if (ICE->getCastKind() != CK_CPointerToObjCPointerCast)
947  return;
948  } else {
949  return;
950  }
951  } else if (!T->isPointerType()) {
952  return;
953  }
954 
955  SourceRange Range = E->getSourceRange();
957  commit.insertWrap("(", Range, ")");
958  commit.insertBefore(Range.getBegin(), "(id)");
959 }
960 
961 //===----------------------------------------------------------------------===//
962 // rewriteToNumericBoxedExpression.
963 //===----------------------------------------------------------------------===//
964 
965 static bool isEnumConstant(const Expr *E) {
966  if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
967  if (const ValueDecl *VD = DRE->getDecl())
968  return isa<EnumConstantDecl>(VD);
969 
970  return false;
971 }
972 
974  const NSAPI &NS, Commit &commit) {
975  if (Msg->getNumArgs() != 1)
976  return false;
977 
978  const Expr *Arg = Msg->getArg(0);
979  if (Arg->isTypeDependent())
980  return false;
981 
982  ASTContext &Ctx = NS.getASTContext();
983  Selector Sel = Msg->getSelector();
985  MKOpt = NS.getNSNumberLiteralMethodKind(Sel);
986  if (!MKOpt)
987  return false;
989 
990  const Expr *OrigArg = Arg->IgnoreImpCasts();
991  QualType FinalTy = Arg->getType();
992  QualType OrigTy = OrigArg->getType();
993  uint64_t FinalTySize = Ctx.getTypeSize(FinalTy);
994  uint64_t OrigTySize = Ctx.getTypeSize(OrigTy);
995 
996  bool isTruncated = FinalTySize < OrigTySize;
997  bool needsCast = false;
998 
999  if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
1000  switch (ICE->getCastKind()) {
1001  case CK_LValueToRValue:
1002  case CK_NoOp:
1004  break;
1005 
1006  case CK_IntegralCast: {
1007  if (MK == NSAPI::NSNumberWithBool && OrigTy->isBooleanType())
1008  break;
1009  // Be more liberal with Integer/UnsignedInteger which are very commonly
1010  // used.
1011  if ((MK == NSAPI::NSNumberWithInteger ||
1013  !isTruncated) {
1014  if (OrigTy->getAs<EnumType>() || isEnumConstant(OrigArg))
1015  break;
1016  if ((MK==NSAPI::NSNumberWithInteger) == OrigTy->isSignedIntegerType() &&
1017  OrigTySize >= Ctx.getTypeSize(Ctx.IntTy))
1018  break;
1019  }
1020 
1021  needsCast = true;
1022  break;
1023  }
1024 
1025  case CK_PointerToBoolean:
1026  case CK_IntegralToBoolean:
1027  case CK_IntegralToFloating:
1028  case CK_FloatingToIntegral:
1029  case CK_FloatingToBoolean:
1030  case CK_FloatingCast:
1035  case CK_AtomicToNonAtomic:
1037  needsCast = true;
1038  break;
1039 
1040  case CK_Dependent:
1041  case CK_BitCast:
1042  case CK_LValueBitCast:
1043  case CK_BaseToDerived:
1044  case CK_DerivedToBase:
1046  case CK_Dynamic:
1047  case CK_ToUnion:
1050  case CK_NullToPointer:
1057  case CK_IntegralToPointer:
1058  case CK_PointerToIntegral:
1059  case CK_ToVoid:
1060  case CK_VectorSplat:
1071  case CK_ARCProduceObject:
1072  case CK_ARCConsumeObject:
1075  case CK_NonAtomicToAtomic:
1077  case CK_BuiltinFnToFnPtr:
1078  case CK_ZeroToOCLEvent:
1079  return false;
1080  }
1081  }
1082 
1083  if (needsCast) {
1084  DiagnosticsEngine &Diags = Ctx.getDiagnostics();
1085  // FIXME: Use a custom category name to distinguish migration diagnostics.
1086  unsigned diagID = Diags.getCustomDiagID(DiagnosticsEngine::Warning,
1087  "converting to boxing syntax requires casting %0 to %1");
1088  Diags.Report(Msg->getExprLoc(), diagID) << OrigTy << FinalTy
1089  << Msg->getSourceRange();
1090  return false;
1091  }
1092 
1093  SourceRange ArgRange = OrigArg->getSourceRange();
1094  commit.replaceWithInner(Msg->getSourceRange(), ArgRange);
1095 
1096  if (isa<ParenExpr>(OrigArg) || isa<IntegerLiteral>(OrigArg))
1097  commit.insertBefore(ArgRange.getBegin(), "@");
1098  else
1099  commit.insertWrap("@(", ArgRange, ")");
1100 
1101  return true;
1102 }
1103 
1104 //===----------------------------------------------------------------------===//
1105 // rewriteToStringBoxedExpression.
1106 //===----------------------------------------------------------------------===//
1107 
1109  const ObjCMessageExpr *Msg,
1110  const NSAPI &NS, Commit &commit) {
1111  const Expr *Arg = Msg->getArg(0);
1112  if (Arg->isTypeDependent())
1113  return false;
1114 
1115  ASTContext &Ctx = NS.getASTContext();
1116 
1117  const Expr *OrigArg = Arg->IgnoreImpCasts();
1118  QualType OrigTy = OrigArg->getType();
1119  if (OrigTy->isArrayType())
1120  OrigTy = Ctx.getArrayDecayedType(OrigTy);
1121 
1122  if (const StringLiteral *
1123  StrE = dyn_cast<StringLiteral>(OrigArg->IgnoreParens())) {
1124  commit.replaceWithInner(Msg->getSourceRange(), StrE->getSourceRange());
1125  commit.insert(StrE->getLocStart(), "@");
1126  return true;
1127  }
1128 
1129  if (const PointerType *PT = OrigTy->getAs<PointerType>()) {
1130  QualType PointeeType = PT->getPointeeType();
1131  if (Ctx.hasSameUnqualifiedType(PointeeType, Ctx.CharTy)) {
1132  SourceRange ArgRange = OrigArg->getSourceRange();
1133  commit.replaceWithInner(Msg->getSourceRange(), ArgRange);
1134 
1135  if (isa<ParenExpr>(OrigArg) || isa<IntegerLiteral>(OrigArg))
1136  commit.insertBefore(ArgRange.getBegin(), "@");
1137  else
1138  commit.insertWrap("@(", ArgRange, ")");
1139 
1140  return true;
1141  }
1142  }
1143 
1144  return false;
1145 }
1146 
1148  const NSAPI &NS, Commit &commit) {
1149  Selector Sel = Msg->getSelector();
1150 
1154  if (Msg->getNumArgs() != 1)
1155  return false;
1156  return doRewriteToUTF8StringBoxedExpressionHelper(Msg, NS, commit);
1157  }
1158 
1160  if (Msg->getNumArgs() != 2)
1161  return false;
1162 
1163  const Expr *encodingArg = Msg->getArg(1);
1164  if (NS.isNSUTF8StringEncodingConstant(encodingArg) ||
1165  NS.isNSASCIIStringEncodingConstant(encodingArg))
1166  return doRewriteToUTF8StringBoxedExpressionHelper(Msg, NS, commit);
1167  }
1168 
1169  return false;
1170 }
The receiver is the instance of the superclass object.
Definition: ExprObjC.h:1006
Defines the clang::ASTContext interface.
SourceLocation getEnd() const
bool remove(CharSourceRange range)
Definition: Commit.cpp:86
The receiver is an object instance.
Definition: ExprObjC.h:1002
StringRef getName() const
Definition: Decl.h:168
Smart pointer class that efficiently represents Objective-C method names.
bool isMacroID() const
bool rewriteToObjCSubscriptSyntax(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit)
Selector getObjectAtIndexedSubscriptSelector() const
Returns selector for "objectAtIndexedSubscript:".
Definition: NSAPI.h:147
QualType getClassReceiver() const
Returns the type of a class message send, or NULL if the message is not a class message.
Definition: ExprObjC.h:1171
bool rewriteToObjCLiteralSyntax(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit, const ParentMap *PMap)
IdentifierInfo * getIdentifier() const
Definition: Decl.h:163
CharacterKind getKind() const
Definition: Expr.h:1342
bool insertWrap(StringRef before, CharSourceRange range, StringRef after)
Definition: Commit.cpp:98
static CharSourceRange getTokenRange(SourceRange R)
static bool rewriteToSubscriptGetCommon(const ObjCMessageExpr *Msg, Commit &commit)
NSNumberLiteralMethodKind
Enumerates the NSNumber methods used to generate literals.
Definition: NSAPI.h:170
static bool getNSArrayObjects(const Expr *E, const NSAPI &NS, SmallVectorImpl< const Expr * > &Objs)
If Msg is an NSArray creation message or literal, this gets the objects that were used to create it...
Selector getNSDictionarySelector(NSDictionaryMethodKind MK) const
The Objective-C NSDictionary selectors.
Definition: NSAPI.cpp:167
DiagnosticBuilder Report(SourceLocation Loc, unsigned DiagID)
Issue the message to the client.
Definition: Diagnostic.h:1118
bool insertAfterToken(SourceLocation loc, StringRef text, bool beforePreviousInsertions=false)
Definition: Commit.h:69
bool isBooleanType() const
Definition: Type.h:5489
bool insertFromRange(SourceLocation loc, CharSourceRange range, bool afterToken=false, bool beforePreviousInsertions=false)
Definition: Commit.cpp:59
bool isNSNumberLiteralSelector(NSNumberLiteralMethodKind MK, Selector Sel) const
Definition: NSAPI.h:195
[ARC] Consumes a retainable object pointer that has just been produced, e.g. as the return value of a...
static bool rewriteToNumberLiteral(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit)
uint64_t getTypeSize(QualType T) const
Return the size of the specified (complete) type T, in bits.
Definition: ASTContext.h:1701
CK_Dynamic - A C++ dynamic_cast.
Defines the clang::Expr interface and subclasses for C++ expressions.
QualType getArrayDecayedType(QualType T) const
Return the properly qualified result of decaying the specified array type to a pointer.
IdentifierInfo * getNSClassId(NSClassIdKindKind K) const
Definition: NSAPI.cpp:23
Expr * IgnoreImpCasts() LLVM_READONLY
Definition: Expr.h:2803
Selector getNSStringSelector(NSStringMethodKind MK) const
The Objective-C NSString selectors.
Definition: NSAPI.cpp:43
bool insert(SourceLocation loc, StringRef text, bool afterToken=false, bool beforePreviousInsertions=false)
Definition: Commit.cpp:43
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:89
Converts between different integral complex types. _Complex char -> _Complex long long _Complex unsig...
static bool isEnumConstant(const Expr *E)
Converting between two Objective-C object types, which can occur when performing reference binding to...
bool hasSameType(QualType T1, QualType T2) const
Determine whether the given types T1 and T2 are equivalent.
Definition: ASTContext.h:1871
[ARC] Causes a value of block type to be copied to the heap, if it is not already there...
static void objectifyExpr(const Expr *E, Commit &commit)
Adds an explicit cast to 'id' if the type is not objc object.
Optional< NSNumberLiteralMethodKind > getNSNumberLiteralMethodKind(Selector Sel) const
Return NSNumberLiteralMethodKind if Sel is such a selector.
Definition: NSAPI.cpp:379
static bool rewriteToArraySubscriptGet(const ObjCInterfaceDecl *IFace, const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit)
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
Definition: LangOptions.h:48
bool hasSameUnqualifiedType(QualType T1, QualType T2) const
Determine whether the given types are equivalent after cvr-qualifiers have been removed.
Definition: ASTContext.h:1896
Converts a floating point complex to bool by comparing against 0+0i.
bool replace(CharSourceRange range, StringRef text)
Definition: Commit.cpp:111
static bool rewriteToDictionarySubscriptGet(const ObjCInterfaceDecl *IFace, const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit)
const LangOptions & getLangOpts() const
Definition: ASTContext.h:533
QualType getSuperType() const
Retrieve the type referred to by 'super'.
Definition: ExprObjC.h:1228
Concrete class used by the front-end to report problems and issues.
Definition: Diagnostic.h:135
bool isNSUTF8StringEncodingConstant(const Expr *E) const
Returns true if the expression.
Definition: NSAPI.h:64
Selector getSelector() const
Definition: Expr.cpp:3718
ObjCInterfaceDecl * getInterface() const
Definition: Type.h:4758
Expr * IgnoreParenCasts() LLVM_READONLY
Definition: Expr.cpp:2439
Represents an ObjC class declaration.
Definition: DeclObjC.h:851
static const ObjCInterfaceDecl * maybeAdjustInterfaceForSubscriptingCheck(const ObjCInterfaceDecl *IFace, const Expr *Receiver, ASTContext &Ctx)
Check for classes that accept 'objectForKey:' (or the other selectors that the migrator handles) but ...
DiagnosticsEngine & getDiagnostics() const
Causes a block literal to by copied to the heap and then autoreleased.
Selector getSetObjectAtIndexedSubscriptSelector() const
Returns selector for "setObject:atIndexedSubscript".
Definition: NSAPI.h:159
static bool castOperatorNeedsParens(const Expr *FullExpr)
QualType getPointeeType() const
Definition: Type.cpp:414
Converts between different floating point complex types. _Complex float -> _Complex double...
static StringRef getSourceText(CharSourceRange Range, const SourceManager &SM, const LangOptions &LangOpts, bool *Invalid=nullptr)
Returns a string for the source that the range encompasses.
Definition: Lexer.cpp:920
const ObjCMethodDecl * getMethodDecl() const
Definition: ExprObjC.h:1248
Converts an integral complex to an integral real of the source's element type by discarding the imagi...
Represents a character-granular source range.
static bool rewriteToDictionaryLiteral(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit)
ObjCMethodDecl * lookupInstanceMethod(Selector Sel) const
Lookup an instance method for a given selector.
Definition: DeclObjC.h:1513
static bool doRewriteToUTF8StringBoxedExpressionHelper(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit)
ObjCInterfaceDecl * getReceiverInterface() const
Retrieve the Objective-C interface to which this message is being directed, if known.
Definition: Expr.cpp:3739
bool isFloatingType() const
Definition: Type.cpp:1760
An expression that sends a message to the given Objective-C object or class.
Definition: ExprObjC.h:858
static bool subscriptOperatorNeedsParens(const Expr *FullExpr)
Converts from an integral complex to a floating complex. _Complex unsigned -> _Complex float...
bool rewriteObjCRedundantCallWithLiteral(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit)
static bool checkForLiteralCreation(const ObjCMessageExpr *Msg, IdentifierInfo *&ClassId, const LangOptions &LangOpts)
Expr * getArg(unsigned Arg)
getArg - Return the specified argument.
Definition: ExprObjC.h:1286
static CharSourceRange getCharRange(SourceRange R)
static bool rewriteToArrayLiteral(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit, const ParentMap *PMap)
Encodes a location in the source. The SourceManager can decode this to get at the full include stack...
const internal::ArgumentAdaptingMatcherFunc< internal::HasMatcher > LLVM_ATTRIBUTE_UNUSED has
Matches the first method of a class or struct that satisfies InnerMatcher.
Definition: ASTMatchers.h:1885
Selector getObjectForKeyedSubscriptSelector() const
Returns selector for "objectForKeyedSubscript:".
Definition: NSAPI.h:141
bool isNSASCIIStringEncodingConstant(const Expr *E) const
Returns true if the expression.
Definition: NSAPI.h:70
Converts from an integral real to an integral complex whose element type matches the source...
SourceLocation getBegin() const
bool isTypeDependent() const
Definition: Expr.h:166
unsigned getCustomDiagID(Level L, const char(&FormatString)[N])
Return an ID for a diagnostic with the specified format string and level.
Definition: Diagnostic.h:602
Selector getNSArraySelector(NSArrayMethodKind MK) const
The Objective-C NSArray selectors.
Definition: NSAPI.cpp:90
SourceLocation getExprLoc() const LLVM_READONLY
Definition: Expr.cpp:193
Expr * getInstanceReceiver()
Returns the object expression (receiver) for an instance message, or null for a message that is not a...
Definition: ExprObjC.h:1152
static bool rewriteToDictionarySubscriptSet(const ObjCInterfaceDecl *IFace, const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit)
QualType getType() const
Definition: Expr.h:125
if(T->getSizeExpr()) TRY_TO(TraverseStmt(T-> getSizeExpr()))
CanQualType CharTy
Definition: ASTContext.h:819
Converts a floating point complex to floating point real of the source's element type. Just discards the imaginary component. _Complex long double -> long double.
ASTContext & getASTContext() const
Definition: NSAPI.h:28
static bool rewriteToArraySubscriptSet(const ObjCInterfaceDecl *IFace, const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit)
bool isSentinelNullExpr(const Expr *E)
Converts an integral complex to bool by comparing against 0+0i.
static bool rewriteToBoolLiteral(const ObjCMessageExpr *Msg, const Expr *Arg, const NSAPI &NS, Commit &commit)
static bool rewriteToStringBoxedExpression(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit)
static bool canRewriteToSubscriptSyntax(const ObjCInterfaceDecl *&IFace, const ObjCMessageExpr *Msg, ASTContext &Ctx, Selector subscriptSel)
Selector getSetObjectForKeyedSubscriptSelector() const
Returns selector for "setObject:forKeyedSubscript".
Definition: NSAPI.h:153
A conversion of a floating point real to a floating point complex of the original type...
[ARC] Reclaim a retainable object pointer object that may have been produced and autoreleased as part...
Expr * IgnoreParenImpCasts() LLVM_READONLY
Definition: Expr.cpp:2526
static bool rewriteToNumericBoxedExpression(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit)
const T * getAs() const
Definition: Type.h:5555
[ARC] Produces a retainable object pointer so that it may be consumed, e.g. by being passed to a cons...
Converts from T to _Atomic(T).
Converts from a floating complex to an integral complex. _Complex float -> _Complex int...
unsigned getNumArgs() const
Return the number of actual arguments in this message, not counting the receiver. ...
Definition: ExprObjC.h:1274
SourceManager & getSourceManager()
Definition: ASTContext.h:494
QualType getUnqualifiedType() const
Retrieve the unqualified variant of the given type, removing as little sugar as possible.
Definition: Type.h:5096
bool isObjCObjectPointerType() const
Definition: Type.h:5304
static void maybePutParensOnReceiver(const Expr *Receiver, Commit &commit)
Stmt * getParentIgnoreParenCasts(Stmt *) const
Definition: ParentMap.cpp:131
bool isImplicit() const
Indicates whether the message send was implicitly generated by the implementation. If false, it was written explicitly in the source code.
Definition: ExprObjC.h:1129
static bool getLiteralInfo(SourceRange literalRange, bool isFloat, bool isIntZero, ASTContext &Ctx, LiteralInfo &Info)
The receiver is a class.
Definition: ExprObjC.h:1000
Converts from _Atomic(T) to T.
bool isArrayType() const
Definition: Type.h:5271
bool insertBefore(SourceLocation loc, StringRef text)
Definition: Commit.h:73
CanQualType IntTy
Definition: ASTContext.h:825
A reference to a declared variable, function, enum, etc. [C99 6.5.1p2].
Definition: Expr.h:899
static bool shouldNotRewriteImmediateMessageArgs(const ObjCMessageExpr *Msg, const NSAPI &NS)
Returns true if the immediate message arguments of Msg should not be rewritten because it will interf...
bool replaceWithInner(CharSourceRange range, CharSourceRange innerRange)
Definition: Commit.cpp:127
const ObjCInterfaceDecl * getObjContainingInterface(const NamedDecl *ND) const
Returns the Objective-C interface that ND belongs to if it is an Objective-C method/property/ivar etc...
bool isObjCIdType(QualType T) const
Definition: ASTContext.h:2127
A trivial tuple used to represent a source range.
A boolean literal, per ([C++ lex.bool] Boolean literals).
Definition: ExprCXX.h:434
bool isSignedIntegerType() const
Definition: Type.cpp:1683
bool isNull() const
isNull - Return true if this QualType doesn't point to a type yet.
Definition: Type.h:633
The receiver is a superclass.
Definition: ExprObjC.h:1004
static bool rewriteToCharLiteral(const ObjCMessageExpr *Msg, const CharacterLiteral *Arg, const NSAPI &NS, Commit &commit)
ReceiverKind getReceiverKind() const
Determine the kind of receiver that this message is being sent to.
Definition: ExprObjC.h:1133
Expr * IgnoreParens() LLVM_READONLY
Definition: Expr.cpp:2408
bool isPointerType() const
Definition: Type.h:5232