import.cpp 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. #include "toolchain/check/cpp/import.h"
  5. #include <algorithm>
  6. #include <memory>
  7. #include <optional>
  8. #include <string>
  9. #include <tuple>
  10. #include <utility>
  11. #include "clang/AST/ASTContext.h"
  12. #include "clang/AST/RecordLayout.h"
  13. #include "clang/AST/UnresolvedSet.h"
  14. #include "clang/AST/VTableBuilder.h"
  15. #include "clang/Frontend/CompilerInvocation.h"
  16. #include "clang/Sema/Lookup.h"
  17. #include "clang/Sema/Overload.h"
  18. #include "common/check.h"
  19. #include "common/ostream.h"
  20. #include "common/raw_string_ostream.h"
  21. #include "llvm/ADT/IntrusiveRefCntPtr.h"
  22. #include "llvm/ADT/StringRef.h"
  23. #include "llvm/Support/raw_ostream.h"
  24. #include "toolchain/base/int.h"
  25. #include "toolchain/base/kind_switch.h"
  26. #include "toolchain/base/value_ids.h"
  27. #include "toolchain/check/call.h"
  28. #include "toolchain/check/class.h"
  29. #include "toolchain/check/context.h"
  30. #include "toolchain/check/control_flow.h"
  31. #include "toolchain/check/convert.h"
  32. #include "toolchain/check/core_identifier.h"
  33. #include "toolchain/check/cpp/access.h"
  34. #include "toolchain/check/cpp/custom_type_mapping.h"
  35. #include "toolchain/check/cpp/generate_ast.h"
  36. #include "toolchain/check/cpp/location.h"
  37. #include "toolchain/check/cpp/macros.h"
  38. #include "toolchain/check/cpp/thunk.h"
  39. #include "toolchain/check/diagnostic_helpers.h"
  40. #include "toolchain/check/eval.h"
  41. #include "toolchain/check/function.h"
  42. #include "toolchain/check/import.h"
  43. #include "toolchain/check/inst.h"
  44. #include "toolchain/check/literal.h"
  45. #include "toolchain/check/member_access.h"
  46. #include "toolchain/check/name_lookup.h"
  47. #include "toolchain/check/operator.h"
  48. #include "toolchain/check/pattern.h"
  49. #include "toolchain/check/pattern_match.h"
  50. #include "toolchain/check/type.h"
  51. #include "toolchain/check/type_completion.h"
  52. #include "toolchain/parse/node_ids.h"
  53. #include "toolchain/sem_ir/clang_decl.h"
  54. #include "toolchain/sem_ir/class.h"
  55. #include "toolchain/sem_ir/cpp_file.h"
  56. #include "toolchain/sem_ir/cpp_overload_set.h"
  57. #include "toolchain/sem_ir/function.h"
  58. #include "toolchain/sem_ir/ids.h"
  59. #include "toolchain/sem_ir/inst.h"
  60. #include "toolchain/sem_ir/name_scope.h"
  61. #include "toolchain/sem_ir/typed_insts.h"
  62. namespace Carbon::Check {
  63. // Adds the name to the scope with the given `access_kind` and `inst_id`.
  64. // `inst_id` must have a value.
  65. static auto AddNameToScope(Context& context, SemIR::NameScopeId scope_id,
  66. SemIR::NameId name_id, SemIR::AccessKind access_kind,
  67. SemIR::InstId inst_id) -> void {
  68. CARBON_CHECK(inst_id.has_value());
  69. context.name_scopes().Get(scope_id).AddRequired(
  70. {.name_id = name_id,
  71. .result = SemIR::ScopeLookupResult::MakeFound(inst_id, access_kind)});
  72. }
  73. // Maps a Clang name to a Carbon `NameId`.
  74. static auto AddIdentifierName(Context& context, llvm::StringRef name)
  75. -> SemIR::NameId {
  76. return SemIR::NameId::ForIdentifier(context.identifiers().Add(name));
  77. }
  78. // Adds the given source location and an `ImportIRInst` referring to it in
  79. // `ImportIRId::Cpp`.
  80. static auto AddImportIRInst(SemIR::File& file,
  81. clang::SourceLocation clang_source_loc)
  82. -> SemIR::ImportIRInstId {
  83. SemIR::ClangSourceLocId clang_source_loc_id =
  84. file.clang_source_locs().Add(clang_source_loc);
  85. return file.import_ir_insts().Add(SemIR::ImportIRInst(clang_source_loc_id));
  86. }
  87. // Adds a namespace for the `Cpp` import and returns its `NameScopeId`.
  88. static auto AddNamespace(Context& context, PackageNameId cpp_package_id,
  89. llvm::ArrayRef<Parse::Tree::PackagingNames> imports)
  90. -> SemIR::NameScopeId {
  91. return AddImportNamespaceToScope(
  92. context,
  93. GetSingletonType(context, SemIR::NamespaceType::TypeInstId),
  94. SemIR::NameId::ForPackageName(cpp_package_id),
  95. SemIR::NameScopeId::Package,
  96. /*diagnose_duplicate_namespace=*/false,
  97. [&]() {
  98. return AddInst<SemIR::ImportCppDecl>(
  99. context,
  100. context.parse_tree().As<Parse::ImportDeclId>(
  101. imports.front().node_id),
  102. {});
  103. })
  104. .add_result.name_scope_id;
  105. }
  106. auto ImportCpp(Context& context,
  107. llvm::ArrayRef<Parse::Tree::PackagingNames> imports,
  108. llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> fs,
  109. std::shared_ptr<clang::CompilerInvocation> invocation) -> void {
  110. if (imports.empty()) {
  111. // TODO: Consider always having a (non-null) AST even if there are no Cpp
  112. // imports.
  113. return;
  114. }
  115. PackageNameId package_id = imports.front().package_id;
  116. CARBON_CHECK(
  117. llvm::all_of(imports, [&](const Parse::Tree::PackagingNames& import) {
  118. return import.package_id == package_id;
  119. }));
  120. auto name_scope_id = AddNamespace(context, package_id, imports);
  121. bool ast_has_error =
  122. !GenerateAst(context, imports, fs, std::move(invocation));
  123. SemIR::NameScope& name_scope = context.name_scopes().Get(name_scope_id);
  124. name_scope.set_is_closed_import(true);
  125. name_scope.set_clang_decl_context_id(context.clang_decls().Add(
  126. {.key =
  127. SemIR::ClangDeclKey(context.ast_context().getTranslationUnitDecl()),
  128. .inst_id = name_scope.inst_id()}));
  129. if (ast_has_error) {
  130. name_scope.set_has_error();
  131. }
  132. }
  133. // Returns the Clang `DeclContext` for the given name scope. Return the
  134. // translation unit decl if no scope is provided.
  135. static auto GetDeclContext(Context& context, SemIR::NameScopeId scope_id)
  136. -> clang::DeclContext* {
  137. if (!scope_id.has_value()) {
  138. return context.ast_context().getTranslationUnitDecl();
  139. }
  140. auto scope_clang_decl_context_id =
  141. context.name_scopes().Get(scope_id).clang_decl_context_id();
  142. return dyn_cast<clang::DeclContext>(
  143. context.clang_decls().Get(scope_clang_decl_context_id).key.decl);
  144. }
  145. // Returns true if the given Clang declaration is the implicit injected class
  146. // name within the class.
  147. static auto IsDeclInjectedClassName(Context& context,
  148. SemIR::NameScopeId scope_id,
  149. SemIR::NameId name_id,
  150. const clang::NamedDecl* named_decl)
  151. -> bool {
  152. if (!named_decl->isImplicit()) {
  153. return false;
  154. }
  155. const auto* record_decl = dyn_cast<clang::CXXRecordDecl>(named_decl);
  156. if (!record_decl) {
  157. return false;
  158. }
  159. const SemIR::ClangDecl& clang_decl = context.clang_decls().Get(
  160. context.name_scopes().Get(scope_id).clang_decl_context_id());
  161. const auto* scope_record_decl =
  162. cast<clang::CXXRecordDecl>(clang_decl.key.decl);
  163. const clang::ASTContext& ast_context = context.ast_context();
  164. CARBON_CHECK(ast_context.getCanonicalTagType(scope_record_decl) ==
  165. ast_context.getCanonicalTagType(record_decl));
  166. auto class_decl = context.insts().GetAs<SemIR::ClassDecl>(clang_decl.inst_id);
  167. CARBON_CHECK(name_id == context.classes().Get(class_decl.class_id).name_id);
  168. return true;
  169. }
  170. // Performs a qualified name lookup of the identifier in the given scope.
  171. // Returns the lookup result if lookup was successful.
  172. static auto ClangLookupName(Context& context, SemIR::NameScopeId scope_id,
  173. clang::IdentifierInfo* identifier_name)
  174. -> std::optional<clang::LookupResult> {
  175. CARBON_CHECK(identifier_name, "Identifier name is empty");
  176. clang::Sema& sema = context.clang_sema();
  177. // TODO: Map the LocId of the lookup to a clang SourceLocation and provide it
  178. // here so that clang's diagnostics can point into the carbon code that uses
  179. // the name.
  180. clang::LookupResult lookup(
  181. sema,
  182. clang::DeclarationNameInfo(clang::DeclarationName(identifier_name),
  183. clang::SourceLocation()),
  184. clang::Sema::LookupNameKind::LookupOrdinaryName);
  185. bool found =
  186. sema.LookupQualifiedName(lookup, GetDeclContext(context, scope_id));
  187. if (!found) {
  188. return std::nullopt;
  189. }
  190. return lookup;
  191. }
  192. // Returns whether `decl` already mapped to an instruction.
  193. static auto IsClangDeclImported(Context& context, SemIR::ClangDeclKey key)
  194. -> bool {
  195. return context.clang_decls().Lookup(key).has_value();
  196. }
  197. // If `decl` already mapped to an instruction, returns that instruction.
  198. // Otherwise returns `None`.
  199. static auto LookupClangDeclInstId(Context& context, SemIR::ClangDeclKey key)
  200. -> SemIR::InstId {
  201. const auto& clang_decls = context.clang_decls();
  202. if (auto context_clang_decl_id = clang_decls.Lookup(key);
  203. context_clang_decl_id.has_value()) {
  204. return clang_decls.Get(context_clang_decl_id).inst_id;
  205. }
  206. return SemIR::InstId::None;
  207. }
  208. // Returns the parent of the given declaration. Skips declaration types we
  209. // ignore.
  210. static auto GetParentDecl(clang::Decl* clang_decl) -> clang::Decl* {
  211. auto* parent_dc = clang_decl->getDeclContext();
  212. while (!parent_dc->isLookupContext()) {
  213. parent_dc = parent_dc->getParent();
  214. }
  215. return cast<clang::Decl>(parent_dc);
  216. }
  217. // Returns the given declaration's parent scope. Assumes the parent declaration
  218. // was already imported.
  219. static auto GetParentNameScopeId(Context& context, clang::Decl* clang_decl)
  220. -> SemIR::NameScopeId {
  221. auto* parent_decl = GetParentDecl(clang_decl);
  222. if (auto* tag_decl = dyn_cast<clang::TagDecl>(parent_decl)) {
  223. auto class_inst_id =
  224. LookupClangDeclInstId(context, SemIR::ClangDeclKey(tag_decl));
  225. CARBON_CHECK(class_inst_id.has_value());
  226. return context.classes()
  227. .Get(context.insts().GetAs<SemIR::ClassDecl>(class_inst_id).class_id)
  228. .scope_id;
  229. }
  230. if (isa<clang::NamespaceDecl, clang::TranslationUnitDecl>(parent_decl)) {
  231. auto namespace_inst_id = LookupClangDeclInstId(
  232. context, SemIR::ClangDeclKey::ForNonFunctionDecl(parent_decl));
  233. CARBON_CHECK(namespace_inst_id.has_value());
  234. return context.insts()
  235. .GetAs<SemIR::Namespace>(namespace_inst_id)
  236. .name_scope_id;
  237. }
  238. CARBON_FATAL("Unexpected kind of parent {0}", parent_decl->getDeclKindName());
  239. }
  240. // Imports a namespace declaration from Clang to Carbon. If successful, returns
  241. // the new Carbon namespace declaration `InstId`. If the declaration was already
  242. // imported, returns the mapped instruction.
  243. static auto ImportNamespaceDecl(Context& context,
  244. clang::NamespaceDecl* clang_decl)
  245. -> SemIR::InstId {
  246. auto key = SemIR::ClangDeclKey(clang_decl);
  247. // Check if the declaration is already mapped.
  248. if (SemIR::InstId existing_inst_id = LookupClangDeclInstId(context, key);
  249. existing_inst_id.has_value()) {
  250. return existing_inst_id;
  251. }
  252. auto result = AddImportNamespace(
  253. context, GetSingletonType(context, SemIR::NamespaceType::TypeInstId),
  254. AddIdentifierName(context, clang_decl->getName()),
  255. GetParentNameScopeId(context, clang_decl),
  256. /*import_id=*/SemIR::InstId::None);
  257. context.name_scopes()
  258. .Get(result.name_scope_id)
  259. .set_clang_decl_context_id(
  260. context.clang_decls().Add({.key = key, .inst_id = result.inst_id}));
  261. return result.inst_id;
  262. }
  263. // Creates a class declaration for the given class name in the given scope.
  264. // Returns the `InstId` for the declaration.
  265. static auto BuildClassDecl(Context& context,
  266. SemIR::ImportIRInstId import_ir_inst_id,
  267. SemIR::NameScopeId parent_scope_id,
  268. SemIR::NameId name_id)
  269. -> std::tuple<SemIR::ClassId, SemIR::TypeInstId> {
  270. // Add the class declaration.
  271. auto class_decl = SemIR::ClassDecl{.type_id = SemIR::TypeType::TypeId,
  272. .class_id = SemIR::ClassId::None,
  273. .decl_block_id = SemIR::InstBlockId::None};
  274. auto class_decl_id = AddPlaceholderImportedInstInNoBlock(
  275. context,
  276. MakeImportedLocIdAndInst(context, import_ir_inst_id, class_decl));
  277. SemIR::Class class_info = {
  278. {.name_id = name_id,
  279. .parent_scope_id = parent_scope_id,
  280. .generic_id = SemIR::GenericId::None,
  281. .first_param_node_id = Parse::NodeId::None,
  282. .last_param_node_id = Parse::NodeId::None,
  283. .pattern_block_id = SemIR::InstBlockId::None,
  284. .implicit_param_patterns_id = SemIR::InstBlockId::None,
  285. .param_patterns_id = SemIR::InstBlockId::None,
  286. .is_extern = false,
  287. .extern_library_id = SemIR::LibraryNameId::None,
  288. .non_owning_decl_id = SemIR::InstId::None,
  289. .first_owning_decl_id = class_decl_id},
  290. {// `.self_type_id` depends on the ClassType, so is set below.
  291. .self_type_id = SemIR::TypeId::None,
  292. // TODO: Support Dynamic classes.
  293. // TODO: Support Final classes.
  294. .inheritance_kind = SemIR::Class::Base}};
  295. class_decl.class_id = context.classes().Add(class_info);
  296. // Write the class ID into the ClassDecl.
  297. ReplaceInstBeforeConstantUse(context, class_decl_id, class_decl);
  298. SetClassSelfType(context, class_decl.class_id);
  299. return {class_decl.class_id, context.types().GetAsTypeInstId(class_decl_id)};
  300. }
  301. // Imports a tag declaration from Clang to Carbon. This covers classes (which
  302. // includes structs and unions) as well as enums. If successful, returns the new
  303. // Carbon class declaration `InstId`.
  304. static auto ImportTagDecl(Context& context, clang::TagDecl* clang_decl)
  305. -> SemIR::InstId {
  306. auto import_ir_inst_id =
  307. AddImportIRInst(context.sem_ir(), clang_decl->getLocation());
  308. auto [class_id, class_inst_id] = BuildClassDecl(
  309. context, import_ir_inst_id, GetParentNameScopeId(context, clang_decl),
  310. AddIdentifierName(context, clang_decl->getName()));
  311. // TODO: The caller does the same lookup. Avoid doing it twice.
  312. auto key = SemIR::ClangDeclKey(clang_decl);
  313. auto clang_decl_id =
  314. context.clang_decls().Add({.key = key, .inst_id = class_inst_id});
  315. // Name lookup into the Carbon class looks in the C++ class definition.
  316. auto& class_info = context.classes().Get(class_id);
  317. class_info.scope_id = context.name_scopes().Add(
  318. class_inst_id, SemIR::NameId::None, class_info.parent_scope_id);
  319. context.name_scopes()
  320. .Get(class_info.scope_id)
  321. .set_clang_decl_context_id(clang_decl_id);
  322. return class_inst_id;
  323. }
  324. // Determines the Carbon inheritance kind to use for a C++ class definition.
  325. static auto GetInheritanceKind(clang::CXXRecordDecl* class_def)
  326. -> SemIR::Class::InheritanceKind {
  327. if (class_def->isUnion()) {
  328. // Treat all unions as final classes to match their C++ semantics. While we
  329. // could support this, the author of a C++ union has no way to mark their
  330. // type as `final` to prevent it, and so we assume the intent was to
  331. // disallow inheritance.
  332. return SemIR::Class::Final;
  333. }
  334. if (class_def->hasAttr<clang::FinalAttr>()) {
  335. // The class is final in C++; don't allow Carbon types to derive from it.
  336. // Note that such a type might also be abstract in C++; we treat final as
  337. // taking precedence.
  338. //
  339. // We could also treat classes with a final destructor as being final, as
  340. // Clang does when determining whether a class is "effectively final", but
  341. // to keep our rules simpler we do not.
  342. return SemIR::Class::Final;
  343. }
  344. if (class_def->getNumVBases()) {
  345. // TODO: We treat classes with virtual bases as final for now. We use the
  346. // layout of the class including its virtual bases as its Carbon type
  347. // layout, so we wouldn't behave correctly if we derived from it.
  348. return SemIR::Class::Final;
  349. }
  350. if (class_def->isAbstract()) {
  351. // If the class has any abstract members, it's abstract.
  352. return SemIR::Class::Abstract;
  353. }
  354. // Allow inheritance from any other C++ class type.
  355. return SemIR::Class::Base;
  356. }
  357. // Checks that the specified finished class definition is valid and builds and
  358. // returns a corresponding complete type witness instruction.
  359. static auto ImportClassObjectRepr(Context& context, SemIR::ClassId class_id,
  360. SemIR::ImportIRInstId import_ir_inst_id,
  361. SemIR::TypeInstId class_type_inst_id,
  362. const clang::CXXRecordDecl* clang_def)
  363. -> SemIR::TypeInstId {
  364. if (clang_def->isInvalidDecl()) {
  365. // Clang already diagnosed this error.
  366. return SemIR::ErrorInst::TypeInstId;
  367. }
  368. // For now, if the class is empty, produce an empty struct as the object
  369. // representation. This allows our tests to continue to pass while we don't
  370. // properly support initializing imported C++ classes.
  371. // TODO: Remove this.
  372. if (clang_def->isEmpty() && !clang_def->getNumBases()) {
  373. return context.types().GetAsTypeInstId(AddInst(
  374. context,
  375. MakeImportedLocIdAndInst(
  376. context, import_ir_inst_id,
  377. SemIR::StructType{.type_id = SemIR::TypeType::TypeId,
  378. .fields_id = SemIR::StructTypeFieldsId::Empty})));
  379. }
  380. const auto& clang_layout =
  381. context.ast_context().getASTRecordLayout(clang_def);
  382. llvm::SmallVector<uint64_t> layout;
  383. llvm::SmallVector<SemIR::StructTypeField> fields;
  384. static_assert(SemIR::CustomLayoutId::SizeIndex == 0);
  385. layout.push_back(clang_layout.getSize().getQuantity());
  386. static_assert(SemIR::CustomLayoutId::AlignIndex == 1);
  387. layout.push_back(clang_layout.getAlignment().getQuantity());
  388. static_assert(SemIR::CustomLayoutId::FirstFieldIndex == 2);
  389. // TODO: Import vptr(s).
  390. // The kind of base class we've picked so far. These are ordered in increasing
  391. // preference order.
  392. enum class BaseKind {
  393. None,
  394. Empty,
  395. NonEmpty,
  396. Polymorphic,
  397. };
  398. BaseKind base_kind = BaseKind::None;
  399. // Import bases.
  400. for (const auto& base : clang_def->bases()) {
  401. if (base.isVirtual()) {
  402. // If the base is virtual, skip it from the layout. We don't know where it
  403. // will actually appear within the complete object layout, as a pointer to
  404. // this class might point to a derived type that puts the vbase in a
  405. // different place.
  406. // TODO: Track that the virtual base existed. Support derived-to-vbase
  407. // conversions by generating a clang AST fragment.
  408. continue;
  409. }
  410. auto [base_type_inst_id, base_type_id] =
  411. ImportCppType(context, import_ir_inst_id, base.getType());
  412. if (!base_type_id.has_value()) {
  413. // TODO: If the base class's type can't be mapped, skip it.
  414. continue;
  415. }
  416. auto base_decl_id = AddInst(
  417. context,
  418. MakeImportedLocIdAndInst(
  419. context, import_ir_inst_id,
  420. SemIR::BaseDecl{.type_id = GetUnboundElementType(
  421. context, class_type_inst_id, base_type_inst_id),
  422. .base_type_inst_id = base_type_inst_id,
  423. .index = SemIR::ElementIndex(fields.size())}));
  424. auto* base_class = base.getType()->getAsCXXRecordDecl();
  425. CARBON_CHECK(base_class, "Base class {0} is not a class",
  426. base.getType().getAsString());
  427. // If there's a unique "best" base class, treat it as a Carbon base class
  428. // too.
  429. // TODO: Improve handling for the case where the class has multiple base
  430. // classes.
  431. BaseKind kind = base_class->isPolymorphic() ? BaseKind::Polymorphic
  432. : base_class->isEmpty() ? BaseKind::Empty
  433. : BaseKind::NonEmpty;
  434. auto& class_info = context.classes().Get(class_id);
  435. if (kind > base_kind) {
  436. // This base is better than the previous best.
  437. class_info.base_id = base_decl_id;
  438. base_kind = kind;
  439. } else if (kind == base_kind) {
  440. // Multiple base classes of this kind: no unique best.
  441. class_info.base_id = SemIR::InstId::None;
  442. }
  443. // TODO: If the base class has virtual bases, the size of the type that we
  444. // add to the layout here will be the full size of the class (including
  445. // virtual bases), whereas the size actually occupied by this base class is
  446. // only the nvsize (excluding virtual bases).
  447. auto base_offset = base.isVirtual()
  448. ? clang_layout.getVBaseClassOffset(base_class)
  449. : clang_layout.getBaseClassOffset(base_class);
  450. layout.push_back(base_offset.getQuantity());
  451. fields.push_back(
  452. {.name_id = SemIR::NameId::Base, .type_inst_id = base_type_inst_id});
  453. }
  454. // Import fields.
  455. for (auto* decl : clang_def->decls()) {
  456. auto* field = dyn_cast<clang::FieldDecl>(decl);
  457. // Track the chain of fields from the class to this field. This chain is
  458. // only one element long unless the field is a member of an anonymous struct
  459. // or union.
  460. clang::NamedDecl* single_field_chain[1] = {field};
  461. llvm::ArrayRef<clang::NamedDecl*> chain = single_field_chain;
  462. // If this isn't a field, it might be an indirect field in an anonymous
  463. // struct or union.
  464. if (!field) {
  465. auto* indirect_field = dyn_cast<clang::IndirectFieldDecl>(decl);
  466. if (!indirect_field) {
  467. continue;
  468. }
  469. chain = indirect_field->chain();
  470. field = indirect_field->getAnonField();
  471. }
  472. if (field->isBitField()) {
  473. // TODO: Add a representation for named bitfield members.
  474. continue;
  475. }
  476. if (field->isAnonymousStructOrUnion()) {
  477. // Fields within an anonymous structure or union will be added via their
  478. // IndirectFieldDecls.
  479. continue;
  480. }
  481. auto field_name_id = AddIdentifierName(context, field->getName());
  482. auto [field_type_inst_id, field_type_id] =
  483. ImportCppType(context, import_ir_inst_id, field->getType());
  484. if (!field_type_inst_id.has_value()) {
  485. // TODO: For now, just skip over fields whose types we can't map.
  486. continue;
  487. }
  488. // Create a field now, as we know the index to use.
  489. // TODO: Consider doing this lazily instead.
  490. auto field_decl_id = AddInst(
  491. context, MakeImportedLocIdAndInst(
  492. context, import_ir_inst_id,
  493. SemIR::FieldDecl{
  494. .type_id = GetUnboundElementType(
  495. context, class_type_inst_id, field_type_inst_id),
  496. .name_id = field_name_id,
  497. .index = SemIR::ElementIndex(fields.size())}));
  498. // The imported SemIR::FieldDecl represents the original declaration `decl`,
  499. // which is either the field or the indirect field declaration.
  500. auto key = SemIR::ClangDeclKey::ForNonFunctionDecl(decl);
  501. context.clang_decls().Add({.key = key, .inst_id = field_decl_id});
  502. // Compute the offset to the field that appears directly in the class.
  503. uint64_t offset = clang_layout.getFieldOffset(
  504. cast<clang::FieldDecl>(chain.front())->getFieldIndex());
  505. // If this is an indirect field, walk the path and accumulate the offset to
  506. // the named field.
  507. for (auto* inner_decl : chain.drop_front()) {
  508. auto* inner_field = cast<clang::FieldDecl>(inner_decl);
  509. const auto& inner_layout =
  510. context.ast_context().getASTRecordLayout(inner_field->getParent());
  511. offset += inner_layout.getFieldOffset(inner_field->getFieldIndex());
  512. }
  513. layout.push_back(
  514. context.ast_context().toCharUnitsFromBits(offset).getQuantity());
  515. fields.push_back(
  516. {.name_id = field_name_id, .type_inst_id = field_type_inst_id});
  517. }
  518. // TODO: Add a field to prevent tail padding reuse if necessary.
  519. return AddTypeInst(context,
  520. MakeImportedLocIdAndInst<SemIR::CustomLayoutType>(
  521. context, import_ir_inst_id,
  522. {.type_id = SemIR::TypeType::TypeId,
  523. .fields_id = context.struct_type_fields().Add(fields),
  524. .layout_id = context.custom_layouts().Add(layout)}));
  525. }
  526. // Creates a Carbon class definition based on the information in the given Clang
  527. // class declaration, which is assumed to be for a class definition.
  528. static auto BuildClassDefinition(Context& context,
  529. SemIR::ImportIRInstId import_ir_inst_id,
  530. SemIR::ClassId class_id,
  531. SemIR::TypeInstId class_inst_id,
  532. clang::CXXRecordDecl* clang_def) -> void {
  533. auto& class_info = context.classes().Get(class_id);
  534. CARBON_CHECK(!class_info.has_definition_started());
  535. class_info.definition_id = class_inst_id;
  536. context.inst_block_stack().Push();
  537. class_info.inheritance_kind = GetInheritanceKind(clang_def);
  538. // Compute the class's object representation.
  539. auto object_repr_id = ImportClassObjectRepr(
  540. context, class_id, import_ir_inst_id, class_inst_id, clang_def);
  541. class_info.complete_type_witness_id = AddInst(
  542. context,
  543. MakeImportedLocIdAndInst<SemIR::CompleteTypeWitness>(
  544. context, import_ir_inst_id,
  545. {.type_id = GetSingletonType(context, SemIR::WitnessType::TypeInstId),
  546. .object_repr_type_inst_id = object_repr_id}));
  547. class_info.body_block_id = context.inst_block_stack().Pop();
  548. }
  549. // Computes and returns the Carbon type to use as the object representation of
  550. // the given C++ enum type. This is a builtin int type matching the enum's
  551. // representation.
  552. static auto ImportEnumObjectRepresentation(
  553. Context& context, SemIR::ImportIRInstId import_ir_inst_id,
  554. clang::EnumDecl* enum_decl) -> SemIR::TypeInstId {
  555. auto int_type = enum_decl->getIntegerType();
  556. CARBON_CHECK(!int_type.isNull(), "incomplete enum type {0}",
  557. enum_decl->getNameAsString());
  558. auto int_kind = int_type->isSignedIntegerType() ? SemIR::IntKind::Signed
  559. : SemIR::IntKind::Unsigned;
  560. auto bit_width_id = GetOrAddInst(
  561. context, MakeImportedLocIdAndInst<SemIR::IntValue>(
  562. context, import_ir_inst_id,
  563. {.type_id = GetSingletonType(
  564. context, SemIR::IntLiteralType::TypeInstId),
  565. .int_id = context.ints().AddUnsigned(llvm::APInt(
  566. 64, context.ast_context().getIntWidth(int_type)))}));
  567. return context.types().GetAsTypeInstId(
  568. GetOrAddInst(context, SemIR::LocIdAndInst::NoLoc(SemIR::IntType{
  569. .type_id = SemIR::TypeType::TypeId,
  570. .int_kind = int_kind,
  571. .bit_width_id = bit_width_id})));
  572. }
  573. // Creates a Carbon class definition based on the information in the given Clang
  574. // enum declaration.
  575. static auto BuildEnumDefinition(Context& context,
  576. SemIR::ImportIRInstId import_ir_inst_id,
  577. SemIR::ClassId class_id,
  578. SemIR::TypeInstId class_inst_id,
  579. clang::EnumDecl* enum_decl) -> void {
  580. auto& class_info = context.classes().Get(class_id);
  581. CARBON_CHECK(!class_info.has_definition_started());
  582. class_info.definition_id = class_inst_id;
  583. context.inst_block_stack().Push();
  584. // Don't allow inheritance from C++ enums, to match the behavior in C++.
  585. class_info.inheritance_kind = SemIR::Class::Final;
  586. // Compute the enum type's object representation. An enum is an adapter for
  587. // the corresponding builtin integer type.
  588. auto object_repr_id =
  589. ImportEnumObjectRepresentation(context, import_ir_inst_id, enum_decl);
  590. class_info.adapt_id = AddInst(
  591. context, MakeImportedLocIdAndInst(
  592. context, import_ir_inst_id,
  593. SemIR::AdaptDecl{.adapted_type_inst_id = object_repr_id}));
  594. class_info.complete_type_witness_id = AddInst(
  595. context,
  596. MakeImportedLocIdAndInst<SemIR::CompleteTypeWitness>(
  597. context, import_ir_inst_id,
  598. {.type_id = GetSingletonType(context, SemIR::WitnessType::TypeInstId),
  599. .object_repr_type_inst_id = object_repr_id}));
  600. class_info.body_block_id = context.inst_block_stack().Pop();
  601. }
  602. // Imports an enumerator declaration from Clang to Carbon.
  603. static auto ImportEnumConstantDecl(Context& context,
  604. clang::EnumConstantDecl* enumerator_decl)
  605. -> SemIR::InstId {
  606. auto key = SemIR::ClangDeclKey(enumerator_decl);
  607. CARBON_CHECK(!IsClangDeclImported(context, key));
  608. // Find the enclosing enum type.
  609. auto enum_key = SemIR::ClangDeclKey(
  610. cast<clang::EnumDecl>(enumerator_decl->getDeclContext()));
  611. auto type_inst_id = LookupClangDeclInstId(context, enum_key);
  612. auto type_id = context.types().GetTypeIdForTypeInstId(type_inst_id);
  613. // Build a corresponding IntValue.
  614. auto int_id = context.ints().Add(enumerator_decl->getInitVal());
  615. auto import_ir_inst_id =
  616. AddImportIRInst(context.sem_ir(), enumerator_decl->getLocation());
  617. auto inst_id = AddInstInNoBlock(
  618. context,
  619. MakeImportedLocIdAndInst<SemIR::IntValue>(
  620. context, import_ir_inst_id, {.type_id = type_id, .int_id = int_id}));
  621. context.imports().push_back(inst_id);
  622. context.clang_decls().Add({.key = key, .inst_id = inst_id});
  623. return inst_id;
  624. }
  625. // Mark the given `key` as failed in `clang_decls`.
  626. static auto MarkFailedDecl(Context& context, SemIR::ClangDeclKey key) {
  627. context.clang_decls().Add({.key = key, .inst_id = SemIR::ErrorInst::InstId});
  628. }
  629. // Creates an integer type of the given size.
  630. static auto MakeIntType(Context& context, IntId size_id, bool is_signed)
  631. -> TypeExpr {
  632. auto type_inst_id = MakeIntTypeLiteral(
  633. context, Parse::NodeId::None,
  634. is_signed ? SemIR::IntKind::Signed : SemIR::IntKind::Unsigned, size_id);
  635. return ExprAsType(context, Parse::NodeId::None, type_inst_id);
  636. }
  637. static auto MakeCppCompatType(Context& context, SemIR::LocId loc_id,
  638. CoreIdentifier name) -> TypeExpr {
  639. return ExprAsType(
  640. context, loc_id,
  641. LookupNameInCore(context, loc_id, {CoreIdentifier::CppCompat, name}));
  642. }
  643. // Maps a C++ builtin integer type to a Carbon `Core.CppCompat` type.
  644. static auto MapBuiltinCppCompatIntegerType(Context& context,
  645. unsigned int cpp_width,
  646. unsigned int carbon_width,
  647. CoreIdentifier cpp_compat_name)
  648. -> TypeExpr {
  649. if (cpp_width != carbon_width) {
  650. return TypeExpr::None;
  651. }
  652. return MakeCppCompatType(context, Parse::NodeId::None, cpp_compat_name);
  653. }
  654. // Maps a C++ builtin integer type to a Carbon type.
  655. // TODO: Handle integer types that map to named aliases.
  656. static auto MapBuiltinIntegerType(Context& context, SemIR::LocId loc_id,
  657. clang::QualType qual_type,
  658. const clang::BuiltinType& type) -> TypeExpr {
  659. clang::ASTContext& ast_context = context.ast_context();
  660. unsigned width = ast_context.getIntWidth(qual_type);
  661. bool is_signed = type.isSignedInteger();
  662. auto int_n_type = ast_context.getIntTypeForBitwidth(width, is_signed);
  663. if (clang::ASTContext::hasSameType(qual_type, int_n_type)) {
  664. TypeExpr type_expr =
  665. MakeIntType(context, context.ints().Add(width), is_signed);
  666. // Try to make sure integer types of 32 or 64 bits are complete so we can
  667. // check against them when deciding whether we need to generate a thunk.
  668. if (width == 32 || width == 64) {
  669. SemIR::TypeId type_id = type_expr.type_id;
  670. if (!context.types().IsComplete(type_id)) {
  671. TryToCompleteType(context, type_id, loc_id);
  672. }
  673. }
  674. return type_expr;
  675. }
  676. if (clang::ASTContext::hasSameType(qual_type, ast_context.CharTy)) {
  677. return ExprAsType(context, Parse::NodeId::None,
  678. MakeCharTypeLiteral(context, Parse::NodeId::None));
  679. }
  680. if (clang::ASTContext::hasSameType(qual_type, ast_context.LongTy)) {
  681. return MapBuiltinCppCompatIntegerType(context, width, 32,
  682. CoreIdentifier::Long32);
  683. }
  684. if (clang::ASTContext::hasSameType(qual_type, ast_context.UnsignedLongTy)) {
  685. return MapBuiltinCppCompatIntegerType(context, width, 32,
  686. CoreIdentifier::ULong32);
  687. }
  688. if (clang::ASTContext::hasSameType(qual_type, ast_context.LongLongTy)) {
  689. return MapBuiltinCppCompatIntegerType(context, width, 64,
  690. CoreIdentifier::LongLong64);
  691. }
  692. if (clang::ASTContext::hasSameType(qual_type,
  693. ast_context.UnsignedLongLongTy)) {
  694. return MapBuiltinCppCompatIntegerType(context, width, 64,
  695. CoreIdentifier::ULongLong64);
  696. }
  697. return TypeExpr::None;
  698. }
  699. static auto MapNullptrType(Context& context, SemIR::LocId loc_id) -> TypeExpr {
  700. return MakeCppCompatType(context, loc_id, CoreIdentifier::NullptrT);
  701. }
  702. // Maps a C++ builtin type to a Carbon type.
  703. // TODO: Support more builtin types.
  704. static auto MapBuiltinType(Context& context, SemIR::LocId loc_id,
  705. clang::QualType qual_type,
  706. const clang::BuiltinType& type) -> TypeExpr {
  707. clang::ASTContext& ast_context = context.ast_context();
  708. if (type.isBooleanType()) {
  709. CARBON_CHECK(ast_context.hasSameType(qual_type, ast_context.BoolTy));
  710. return ExprAsType(context, Parse::NodeId::None,
  711. context.types().GetInstId(GetSingletonType(
  712. context, SemIR::BoolType::TypeInstId)));
  713. }
  714. if (type.isInteger()) {
  715. return MapBuiltinIntegerType(context, loc_id, qual_type, type);
  716. }
  717. if (type.isFloatingPoint()) {
  718. if (type.isFloat16Type() || type.isFloat32Type() || type.isDoubleType() ||
  719. type.isFloat128Type()) {
  720. return ExprAsType(
  721. context, Parse::NodeId::None,
  722. MakeFloatTypeLiteral(
  723. context, Parse::NodeId::None,
  724. context.ints().Add(ast_context.getTypeSize(qual_type))));
  725. }
  726. // TODO: Handle floating-point types that map to named aliases.
  727. } else if (type.isVoidType()) {
  728. return MakeCppCompatType(context, loc_id, CoreIdentifier::VoidBase);
  729. } else if (type.isNullPtrType()) {
  730. return MapNullptrType(context, loc_id);
  731. }
  732. return TypeExpr::None;
  733. }
  734. // Determines whether record_decl is a C++ class that has a custom mapping into
  735. // Carbon, and if so, returns the corresponding Carbon type. Otherwise returns
  736. // None.
  737. static auto LookupCustomRecordType(Context& context,
  738. const clang::CXXRecordDecl* record_decl)
  739. -> TypeExpr {
  740. switch (GetCustomCppTypeMapping(record_decl)) {
  741. case CustomCppTypeMapping::None:
  742. return TypeExpr::None;
  743. case CustomCppTypeMapping::Str:
  744. return MakeStringType(
  745. context,
  746. AddImportIRInst(context.sem_ir(), record_decl->getLocation()));
  747. }
  748. }
  749. // Maps a C++ tag type (class, struct, union, enum) to a Carbon type.
  750. static auto MapTagType(Context& context, const clang::TagType& type)
  751. -> TypeExpr {
  752. auto* tag_decl = type.getDecl();
  753. CARBON_CHECK(tag_decl);
  754. // Check if the declaration is already mapped.
  755. auto key = SemIR::ClangDeclKey(tag_decl);
  756. SemIR::InstId tag_inst_id = LookupClangDeclInstId(context, key);
  757. if (!tag_inst_id.has_value()) {
  758. if (auto* record_decl = dyn_cast<clang::CXXRecordDecl>(tag_decl)) {
  759. auto custom_type = LookupCustomRecordType(context, record_decl);
  760. if (custom_type.inst_id.has_value()) {
  761. context.clang_decls().Add({.key = key, .inst_id = custom_type.inst_id});
  762. return custom_type;
  763. }
  764. }
  765. tag_inst_id = ImportTagDecl(context, tag_decl);
  766. }
  767. SemIR::TypeInstId record_type_inst_id =
  768. context.types().GetAsTypeInstId(tag_inst_id);
  769. return {
  770. // TODO: inst_id's location should be the location of the usage, not
  771. // the location of the type definition. Possibly we should synthesize a
  772. // NameRef inst, to match how this would work in Carbon code.
  773. .inst_id = record_type_inst_id,
  774. .type_id = context.types().GetTypeIdForTypeInstId(record_type_inst_id)};
  775. }
  776. // Maps a C++ type that is not a wrapper type such as a pointer to a Carbon
  777. // type.
  778. // TODO: Support more types.
  779. static auto MapNonWrapperType(Context& context, SemIR::LocId loc_id,
  780. clang::QualType type) -> TypeExpr {
  781. if (const auto* builtin_type = type->getAs<clang::BuiltinType>()) {
  782. return MapBuiltinType(context, loc_id, type, *builtin_type);
  783. }
  784. if (const auto* tag_type = type->getAs<clang::TagType>()) {
  785. return MapTagType(context, *tag_type);
  786. }
  787. CARBON_CHECK(!type.hasQualifiers() && !type->isPointerType(),
  788. "Should not see wrapper types here");
  789. return TypeExpr::None;
  790. }
  791. // Maps a qualified C++ type to a Carbon type.
  792. static auto MapQualifiedType(Context& context, clang::QualType type,
  793. TypeExpr type_expr) -> TypeExpr {
  794. auto quals = type.getQualifiers();
  795. if (quals.hasConst()) {
  796. auto type_id = GetConstType(context, type_expr.inst_id);
  797. type_expr = TypeExpr::ForUnsugared(context, type_id);
  798. quals.removeConst();
  799. }
  800. // TODO: Support other qualifiers.
  801. if (!quals.empty()) {
  802. return TypeExpr::None;
  803. }
  804. return type_expr;
  805. }
  806. // Returns true if the type has the `_Nonnull` attribute.
  807. static auto IsClangTypeNonNull(clang::QualType type) -> bool {
  808. auto nullability = type->getNullability();
  809. return nullability.has_value() &&
  810. *nullability == clang::NullabilityKind::NonNull;
  811. }
  812. // Like `clang::QualType::getUnqualifiedType()`, retrieves the unqualified
  813. // variant of the given type, but preserves `_Nonnull`.
  814. static auto ClangGetUnqualifiedTypePreserveNonNull(
  815. Context& context, clang::QualType original_type) -> clang::QualType {
  816. clang::QualType type = original_type.getUnqualifiedType();
  817. // Preserve non-nullability.
  818. if (IsClangTypeNonNull(original_type) && !IsClangTypeNonNull(type)) {
  819. type = context.ast_context().getAttributedType(
  820. clang::NullabilityKind::NonNull, type, type);
  821. }
  822. return type;
  823. }
  824. // Returns the type `Core.Optional(T)`, where `T` is described by
  825. // `inner_type_inst_id`.
  826. static auto MakeOptionalType(Context& context, SemIR::LocId loc_id,
  827. SemIR::InstId inner_type_inst_id) -> TypeExpr {
  828. auto fn_inst_id = LookupNameInCore(context, loc_id, CoreIdentifier::Optional);
  829. auto call_id = PerformCall(context, loc_id, fn_inst_id, {inner_type_inst_id});
  830. return ExprAsType(context, loc_id, call_id);
  831. }
  832. // Maps a C++ pointer type to a Carbon pointer type.
  833. static auto MapPointerType(Context& context, SemIR::LocId loc_id,
  834. clang::QualType type, TypeExpr pointee_type_expr)
  835. -> TypeExpr {
  836. CARBON_CHECK(type->isPointerType());
  837. bool optional =
  838. !IsClangTypeNonNull(type) &&
  839. // If the type was produced by C++ template substitution, then we assume
  840. // it was deduced from a Carbon pointer type, so it's non-null.
  841. !type->getAs<clang::SubstTemplateTypeParmType>();
  842. TypeExpr pointer_type_expr = TypeExpr::ForUnsugared(
  843. context, GetPointerType(context, pointee_type_expr.inst_id));
  844. if (optional) {
  845. pointer_type_expr =
  846. MakeOptionalType(context, loc_id, pointer_type_expr.inst_id);
  847. }
  848. return pointer_type_expr;
  849. }
  850. // Maps a C++ reference type to a Carbon type. We map all references to
  851. // pointers for now. Note that when mapping function parameters and return
  852. // types, a different rule is used; see MapParameterType for details.
  853. // TODO: Revisit this and decide what we really want to do here.
  854. static auto MapReferenceType(Context& context, clang::QualType type,
  855. TypeExpr referenced_type_expr) -> TypeExpr {
  856. CARBON_CHECK(type->isReferenceType());
  857. SemIR::TypeId pointer_type_id =
  858. GetPointerType(context, referenced_type_expr.inst_id);
  859. pointer_type_id =
  860. GetConstType(context, context.types().GetInstId(pointer_type_id));
  861. return TypeExpr::ForUnsugared(context, pointer_type_id);
  862. }
  863. // Maps a C++ type to a Carbon type. `type` should not be canonicalized because
  864. // we check for pointer nullability and nullability will be lost by
  865. // canonicalization.
  866. static auto MapType(Context& context, SemIR::LocId loc_id, clang::QualType type)
  867. -> TypeExpr {
  868. // Unwrap any type modifiers and wrappers.
  869. llvm::SmallVector<clang::QualType> wrapper_types;
  870. while (true) {
  871. clang::QualType orig_type = type;
  872. if (type.hasQualifiers()) {
  873. type = ClangGetUnqualifiedTypePreserveNonNull(context, type);
  874. } else if (type->isPointerType()) {
  875. type = type->getPointeeType();
  876. } else if (type->isReferenceType()) {
  877. type = type.getNonReferenceType();
  878. } else {
  879. break;
  880. }
  881. wrapper_types.push_back(orig_type);
  882. }
  883. auto mapped = MapNonWrapperType(context, loc_id, type);
  884. for (auto wrapper : llvm::reverse(wrapper_types)) {
  885. if (!mapped.inst_id.has_value() ||
  886. mapped.type_id == SemIR::ErrorInst::TypeId) {
  887. break;
  888. }
  889. if (wrapper.hasQualifiers()) {
  890. mapped = MapQualifiedType(context, wrapper, mapped);
  891. } else if (wrapper->isPointerType()) {
  892. mapped = MapPointerType(context, loc_id, wrapper, mapped);
  893. } else if (wrapper->isReferenceType()) {
  894. mapped = MapReferenceType(context, wrapper, mapped);
  895. } else {
  896. CARBON_FATAL("Unexpected wrapper type {0}", wrapper.getAsString());
  897. }
  898. }
  899. return mapped;
  900. }
  901. namespace {
  902. // Information about how to map a C++ parameter type into Carbon.
  903. struct ParameterTypeInfo {
  904. // The type to use for the Carbon parameter.
  905. TypeExpr type;
  906. // Whether to build a `ref` pattern.
  907. bool want_ref_pattern;
  908. };
  909. } // namespace
  910. // Given the type of a C++ function parameter, returns information about the
  911. // type to use for the corresponding Carbon parameter.
  912. //
  913. // Note that if the parameter has a type for which `IsSimpleAbiType` returns
  914. // true, we must produce a parameter type that has the same calling convention
  915. // as the C++ type.
  916. static auto MapParameterType(Context& context, SemIR::LocId loc_id,
  917. clang::QualType param_type) -> ParameterTypeInfo {
  918. ParameterTypeInfo info = {.type = TypeExpr::None, .want_ref_pattern = false};
  919. // Perform some custom mapping for parameters of reference type:
  920. //
  921. // * `T& x` -> `ref x: T`.
  922. // * `const T& x` -> `x: T`.
  923. // * `T&& x` -> `x: T`.
  924. //
  925. // TODO: For the `&&` mapping, we allow an rvalue reference to bind to a
  926. // durable reference expression. This should not be allowed.
  927. if (param_type->isReferenceType()) {
  928. clang::QualType pointee_type = param_type->getPointeeType();
  929. if (param_type->isLValueReferenceType()) {
  930. if (pointee_type.isConstQualified()) {
  931. // TODO: Consider only doing this if `const` is the only qualifier. For
  932. // now, any other qualifier will fail when mapping the type.
  933. auto split_type = pointee_type.getSplitUnqualifiedType();
  934. split_type.Quals.removeConst();
  935. pointee_type = context.ast_context().getQualifiedType(split_type);
  936. } else {
  937. // The reference will map to a `ref` pattern.
  938. info.want_ref_pattern = true;
  939. }
  940. }
  941. param_type = pointee_type;
  942. }
  943. info.type = MapType(context, loc_id, param_type);
  944. return info;
  945. }
  946. // Returns a block for the implicit parameters of the given function
  947. // declaration. Because function templates are not yet supported, this currently
  948. // only contains the `self` parameter. On error, produces a diagnostic and
  949. // returns None.
  950. static auto MakeImplicitParamPatternsBlockId(
  951. Context& context, SemIR::LocId loc_id,
  952. const clang::FunctionDecl& clang_decl) -> SemIR::InstBlockId {
  953. const auto* method_decl = dyn_cast<clang::CXXMethodDecl>(&clang_decl);
  954. if (!method_decl || method_decl->isStatic() ||
  955. isa<clang::CXXConstructorDecl>(clang_decl)) {
  956. return SemIR::InstBlockId::Empty;
  957. }
  958. // Build a `self` parameter from the object parameter.
  959. BeginSubpattern(context);
  960. clang::QualType param_type =
  961. method_decl->getFunctionObjectParameterReferenceType();
  962. auto param_info = MapParameterType(context, loc_id, param_type);
  963. auto [type_inst_id, type_id] = param_info.type;
  964. SemIR::ExprRegionId type_expr_region_id =
  965. EndSubpatternAsExpr(context, type_inst_id);
  966. if (!type_id.has_value()) {
  967. context.TODO(loc_id,
  968. llvm::formatv("Unsupported: object parameter type: {0}",
  969. param_type.getAsString()));
  970. return SemIR::InstBlockId::None;
  971. }
  972. // TODO: Fill in a location once available.
  973. auto pattern_id = AddParamPattern(context, loc_id, SemIR::NameId::SelfValue,
  974. type_expr_region_id, type_id,
  975. param_info.want_ref_pattern);
  976. return context.inst_blocks().Add({pattern_id});
  977. }
  978. // Returns a block id for the explicit parameters of the given function
  979. // declaration. If the function declaration has no parameters, it returns
  980. // `SemIR::InstBlockId::Empty`. In the case of an unsupported parameter type, it
  981. // produces an error and returns `SemIR::InstBlockId::None`.
  982. // TODO: Consider refactoring to extract and reuse more logic from
  983. // `HandleAnyBindingPattern()`.
  984. static auto MakeParamPatternsBlockId(Context& context, SemIR::LocId loc_id,
  985. const clang::FunctionDecl& clang_decl,
  986. int num_params) -> SemIR::InstBlockId {
  987. if (clang_decl.parameters().empty() || num_params == 0) {
  988. return SemIR::InstBlockId::Empty;
  989. }
  990. llvm::SmallVector<SemIR::InstId> params;
  991. params.reserve(num_params);
  992. CARBON_CHECK(
  993. static_cast<int>(clang_decl.getNumNonObjectParams()) >= num_params,
  994. "varargs functions are not supported");
  995. const auto* function_type =
  996. clang_decl.getType()->castAs<clang::FunctionProtoType>();
  997. for (int i : llvm::seq(num_params)) {
  998. const auto* param = clang_decl.getNonObjectParameter(i);
  999. clang::QualType orig_param_type = function_type->getParamType(
  1000. clang_decl.hasCXXExplicitFunctionObjectParameter() + i);
  1001. // The parameter type is decayed but hasn't necessarily had its qualifiers
  1002. // removed.
  1003. // TODO: The presence of qualifiers here is probably a Clang bug.
  1004. clang::QualType param_type =
  1005. ClangGetUnqualifiedTypePreserveNonNull(context, orig_param_type);
  1006. // Mark the start of a region of insts, needed for the type expression
  1007. // created later with the call of `EndSubpatternAsExpr()`.
  1008. BeginSubpattern(context);
  1009. auto param_info = MapParameterType(context, loc_id, param_type);
  1010. auto [orig_type_inst_id, type_id] = param_info.type;
  1011. // Type expression of the binding pattern - a single-entry/single-exit
  1012. // region that allows control flow in the type expression e.g. fn F(x: if C
  1013. // then i32 else i64).
  1014. SemIR::ExprRegionId type_expr_region_id =
  1015. EndSubpatternAsExpr(context, orig_type_inst_id);
  1016. if (!type_id.has_value()) {
  1017. context.TODO(loc_id, llvm::formatv("Unsupported: parameter type: {0}",
  1018. orig_param_type.getAsString()));
  1019. return SemIR::InstBlockId::None;
  1020. }
  1021. llvm::StringRef param_name = param->getName();
  1022. SemIR::NameId name_id =
  1023. param_name.empty()
  1024. // Translate an unnamed parameter to an underscore to
  1025. // match Carbon's naming of unnamed/unused function params.
  1026. ? SemIR::NameId::Underscore
  1027. : AddIdentifierName(context, param_name);
  1028. SemIR::LocId param_loc_id =
  1029. AddImportIRInst(context.sem_ir(), param->getLocation());
  1030. // TODO: Add template support.
  1031. SemIR::InstId pattern_id =
  1032. AddParamPattern(context, param_loc_id, name_id, type_expr_region_id,
  1033. type_id, param_info.want_ref_pattern);
  1034. params.push_back(pattern_id);
  1035. }
  1036. return context.inst_blocks().Add(params);
  1037. }
  1038. // Returns the return `TypeExpr` of the given function declaration. In case of
  1039. // an unsupported return type, returns `SemIR::ErrorInst::InstId`. Constructors
  1040. // are treated as returning a class instance.
  1041. // TODO: Support more return types.
  1042. static auto GetReturnTypeExpr(Context& context, SemIR::LocId loc_id,
  1043. clang::FunctionDecl* clang_decl) -> TypeExpr {
  1044. clang::QualType orig_ret_type = clang_decl->getReturnType();
  1045. if (!orig_ret_type->isVoidType()) {
  1046. // TODO: We should eventually map reference returns to non-pointer types
  1047. // here. We should return by `ref` for `T&` return types once `ref` return
  1048. // is implemented.
  1049. auto [orig_type_inst_id, type_id] = MapType(context, loc_id, orig_ret_type);
  1050. if (!orig_type_inst_id.has_value()) {
  1051. context.TODO(loc_id, llvm::formatv("Unsupported: return type: {0}",
  1052. orig_ret_type.getAsString()));
  1053. return {.inst_id = SemIR::ErrorInst::TypeInstId,
  1054. .type_id = SemIR::ErrorInst::TypeId};
  1055. }
  1056. return {orig_type_inst_id, type_id};
  1057. }
  1058. auto* ctor = dyn_cast<clang::CXXConstructorDecl>(clang_decl);
  1059. if (!ctor) {
  1060. // void.
  1061. return TypeExpr::None;
  1062. }
  1063. // TODO: Make this a `PartialType`.
  1064. SemIR::TypeInstId record_type_inst_id = context.types().GetAsTypeInstId(
  1065. LookupClangDeclInstId(context, SemIR::ClangDeclKey(ctor->getParent())));
  1066. return {
  1067. .inst_id = record_type_inst_id,
  1068. .type_id = context.types().GetTypeIdForTypeInstId(record_type_inst_id)};
  1069. }
  1070. // Information about a function's declared return type, corresponding to the
  1071. // fields of SemIR::Function with the same names.
  1072. struct ReturnInfo {
  1073. SemIR::TypeInstId return_type_inst_id;
  1074. SemIR::InstBlockId return_patterns_id;
  1075. };
  1076. // Returns information about the declared return type of the given function
  1077. // declaration. In case of an unsupported return type, it produces a diagnostic,
  1078. // and the returned return_type_inst_id will be `SemIR::ErrorInst::InstId`.
  1079. // Constructors are treated as returning a class instance.
  1080. static auto GetReturnInfo(Context& context, SemIR::LocId loc_id,
  1081. clang::FunctionDecl* clang_decl) -> ReturnInfo {
  1082. auto [type_inst_id, type_id] = GetReturnTypeExpr(context, loc_id, clang_decl);
  1083. if (!type_inst_id.has_value()) {
  1084. // void.
  1085. return {.return_type_inst_id = type_inst_id,
  1086. .return_patterns_id = SemIR::InstBlockId::None};
  1087. }
  1088. if (type_inst_id == SemIR::ErrorInst::TypeInstId) {
  1089. return {.return_type_inst_id = type_inst_id,
  1090. .return_patterns_id = SemIR::InstBlockId::None};
  1091. }
  1092. auto pattern_type_id = GetPatternType(context, type_id);
  1093. clang::SourceLocation return_type_loc =
  1094. clang_decl->getReturnTypeSourceRange().getBegin();
  1095. if (return_type_loc.isInvalid()) {
  1096. // TODO: While `getReturnTypeSourceRange()` should work, it seems broken for
  1097. // trailing return type. See
  1098. // https://github.com/llvm/llvm-project/issues/162649. Until this is fixed,
  1099. // we fallback to `getTypeSpecStartLoc()`.
  1100. return_type_loc = clang_decl->getTypeSpecStartLoc();
  1101. }
  1102. SemIR::ImportIRInstId return_type_import_ir_inst_id =
  1103. AddImportIRInst(context.sem_ir(), return_type_loc);
  1104. SemIR::InstId return_slot_pattern_id = AddPatternInst(
  1105. context, MakeImportedLocIdAndInst(
  1106. context, return_type_import_ir_inst_id,
  1107. SemIR::ReturnSlotPattern({.type_id = pattern_type_id,
  1108. .type_inst_id = type_inst_id})));
  1109. SemIR::InstId param_pattern_id = AddPatternInst(
  1110. context,
  1111. MakeImportedLocIdAndInst(
  1112. context, return_type_import_ir_inst_id,
  1113. SemIR::OutParamPattern({.type_id = pattern_type_id,
  1114. .subpattern_id = return_slot_pattern_id,
  1115. .index = SemIR::CallParamIndex::None})));
  1116. auto return_patterns_id = context.inst_blocks().Add({param_pattern_id});
  1117. return {.return_type_inst_id = type_inst_id,
  1118. .return_patterns_id = return_patterns_id};
  1119. }
  1120. namespace {
  1121. // Represents the insts and inst blocks associated with the parameters and
  1122. // returns of a function declaration, corresponding to the fields of
  1123. // SemIR::Function with the same names.
  1124. struct FunctionSignatureInsts {
  1125. SemIR::InstBlockId implicit_param_patterns_id;
  1126. SemIR::InstBlockId param_patterns_id;
  1127. SemIR::TypeInstId return_type_inst_id;
  1128. SemIR::InstBlockId return_patterns_id;
  1129. SemIR::InstBlockId call_params_id;
  1130. };
  1131. } // namespace
  1132. // Creates the insts and inst blocks that represent the parameters and returns
  1133. // of the given C++ function's Carbon counterpart, including emitting a callee
  1134. // pattern match to create the `Call` parameters, and returns a
  1135. // FunctionSignatureInsts containing the results. Produces a diagnostic and
  1136. // returns `std::nullopt` if the function declaration has an unsupported
  1137. // parameter type.
  1138. static auto CreateFunctionSignatureInsts(Context& context, SemIR::LocId loc_id,
  1139. clang::FunctionDecl* clang_decl,
  1140. int num_params)
  1141. -> std::optional<FunctionSignatureInsts> {
  1142. auto implicit_param_patterns_id =
  1143. MakeImplicitParamPatternsBlockId(context, loc_id, *clang_decl);
  1144. if (!implicit_param_patterns_id.has_value()) {
  1145. return std::nullopt;
  1146. }
  1147. auto param_patterns_id =
  1148. MakeParamPatternsBlockId(context, loc_id, *clang_decl, num_params);
  1149. if (!param_patterns_id.has_value()) {
  1150. return std::nullopt;
  1151. }
  1152. auto [return_type_inst_id, return_patterns_id] =
  1153. GetReturnInfo(context, loc_id, clang_decl);
  1154. if (return_type_inst_id == SemIR::ErrorInst::TypeInstId) {
  1155. return std::nullopt;
  1156. }
  1157. auto call_params_id =
  1158. CalleePatternMatch(context, implicit_param_patterns_id, param_patterns_id,
  1159. return_patterns_id);
  1160. return {{.implicit_param_patterns_id = implicit_param_patterns_id,
  1161. .param_patterns_id = param_patterns_id,
  1162. .return_type_inst_id = return_type_inst_id,
  1163. .return_patterns_id = return_patterns_id,
  1164. .call_params_id = call_params_id}};
  1165. }
  1166. // Returns the Carbon function name for the given function.
  1167. static auto GetFunctionName(Context& context, clang::FunctionDecl* clang_decl)
  1168. -> SemIR::NameId {
  1169. switch (clang_decl->getDeclName().getNameKind()) {
  1170. case clang::DeclarationName::CXXConstructorName: {
  1171. auto key = SemIR::ClangDeclKey(
  1172. cast<clang::CXXConstructorDecl>(clang_decl)->getParent());
  1173. return context.classes()
  1174. .Get(context.insts()
  1175. .GetAs<SemIR::ClassDecl>(LookupClangDeclInstId(context, key))
  1176. .class_id)
  1177. .name_id;
  1178. }
  1179. case clang::DeclarationName::CXXDestructorName: {
  1180. return SemIR::NameId::CppDestructor;
  1181. }
  1182. case clang::DeclarationName::CXXOperatorName: {
  1183. return SemIR::NameId::CppOperator;
  1184. }
  1185. default: {
  1186. return AddIdentifierName(context, clang_decl->getName());
  1187. }
  1188. }
  1189. }
  1190. // Creates a `FunctionDecl` and a `Function` without C++ thunk information.
  1191. // Returns std::nullopt on failure. The given Clang declaration is assumed to:
  1192. // * Have not been imported before.
  1193. // * Be of supported type (ignoring parameters).
  1194. static auto ImportFunction(Context& context, SemIR::LocId loc_id,
  1195. clang::FunctionDecl* clang_decl, int num_params)
  1196. -> std::optional<SemIR::FunctionId> {
  1197. context.scope_stack().PushForDeclName();
  1198. context.inst_block_stack().Push();
  1199. context.pattern_block_stack().Push();
  1200. auto function_params_insts =
  1201. CreateFunctionSignatureInsts(context, loc_id, clang_decl, num_params);
  1202. auto pattern_block_id = context.pattern_block_stack().Pop();
  1203. auto decl_block_id = context.inst_block_stack().Pop();
  1204. context.scope_stack().Pop();
  1205. if (!function_params_insts.has_value()) {
  1206. return std::nullopt;
  1207. }
  1208. auto function_decl = SemIR::FunctionDecl{
  1209. SemIR::TypeId::None, SemIR::FunctionId::None, decl_block_id};
  1210. auto decl_id = AddPlaceholderImportedInstInNoBlock(
  1211. context, SemIR::LocIdAndInst::NoLoc(function_decl));
  1212. auto virtual_modifier = SemIR::Function::VirtualModifier::None;
  1213. int32_t virtual_index = -1;
  1214. if (auto* method_decl = dyn_cast<clang::CXXMethodDecl>(clang_decl)) {
  1215. if (method_decl->size_overridden_methods()) {
  1216. virtual_modifier = SemIR::Function::VirtualModifier::Override;
  1217. } else if (method_decl->isVirtual()) {
  1218. virtual_modifier = SemIR::Function::VirtualModifier::Virtual;
  1219. }
  1220. if (virtual_modifier != SemIR::Function::VirtualModifier::None) {
  1221. // TODO: Add support for Microsoft/non-Itanium vtables.
  1222. virtual_index = dyn_cast<clang::ItaniumVTableContext>(
  1223. context.ast_context().getVTableContext())
  1224. ->getMethodVTableIndex(method_decl);
  1225. }
  1226. }
  1227. auto function_info = SemIR::Function{
  1228. {.name_id = GetFunctionName(context, clang_decl),
  1229. .parent_scope_id = GetParentNameScopeId(context, clang_decl),
  1230. .generic_id = SemIR::GenericId::None,
  1231. .first_param_node_id = Parse::NodeId::None,
  1232. .last_param_node_id = Parse::NodeId::None,
  1233. .pattern_block_id = pattern_block_id,
  1234. .implicit_param_patterns_id =
  1235. function_params_insts->implicit_param_patterns_id,
  1236. .param_patterns_id = function_params_insts->param_patterns_id,
  1237. .is_extern = false,
  1238. .extern_library_id = SemIR::LibraryNameId::None,
  1239. .non_owning_decl_id = SemIR::InstId::None,
  1240. .first_owning_decl_id = decl_id,
  1241. .definition_id = SemIR::InstId::None},
  1242. {.call_params_id = function_params_insts->call_params_id,
  1243. .return_type_inst_id = function_params_insts->return_type_inst_id,
  1244. .return_patterns_id = function_params_insts->return_patterns_id,
  1245. .virtual_modifier = virtual_modifier,
  1246. .virtual_index = virtual_index,
  1247. .self_param_id = FindSelfPattern(
  1248. context, function_params_insts->implicit_param_patterns_id),
  1249. .clang_decl_id = context.clang_decls().Add(
  1250. {.key = SemIR::ClangDeclKey::ForFunctionDecl(clang_decl, num_params),
  1251. .inst_id = decl_id})}};
  1252. function_decl.function_id = context.functions().Add(function_info);
  1253. function_decl.type_id = GetFunctionType(context, function_decl.function_id,
  1254. SemIR::SpecificId::None);
  1255. ReplaceInstBeforeConstantUse(context, decl_id, function_decl);
  1256. return function_decl.function_id;
  1257. }
  1258. // Imports a C++ function, returning a corresponding Carbon function.
  1259. // `num_params` specifies how many parameters the corresponding Carbon function
  1260. // should have, which may be fewer than the number of parameters that the C++
  1261. // function has if default arguments are available for the trailing parameters.
  1262. static auto ImportFunctionDecl(Context& context, SemIR::LocId loc_id,
  1263. clang::FunctionDecl* clang_decl, int num_params)
  1264. -> SemIR::InstId {
  1265. auto key = SemIR::ClangDeclKey::ForFunctionDecl(clang_decl, num_params);
  1266. // Check if the declaration is already mapped.
  1267. if (SemIR::InstId existing_inst_id = LookupClangDeclInstId(context, key);
  1268. existing_inst_id.has_value()) {
  1269. return existing_inst_id;
  1270. }
  1271. if (clang_decl->isVariadic()) {
  1272. context.TODO(loc_id, "Unsupported: Variadic function");
  1273. MarkFailedDecl(context, key);
  1274. return SemIR::ErrorInst::InstId;
  1275. }
  1276. if (clang_decl->getTemplatedKind() ==
  1277. clang::FunctionDecl::TK_FunctionTemplate) {
  1278. context.TODO(loc_id, "Unsupported: Template function");
  1279. MarkFailedDecl(context, key);
  1280. return SemIR::ErrorInst::InstId;
  1281. }
  1282. CARBON_CHECK(clang_decl->getFunctionType()->isFunctionProtoType(),
  1283. "Not Prototype function (non-C++ code)");
  1284. auto function_id = ImportFunction(context, loc_id, clang_decl, num_params);
  1285. if (!function_id) {
  1286. MarkFailedDecl(context, key);
  1287. return SemIR::ErrorInst::InstId;
  1288. }
  1289. SemIR::Function& function_info = context.functions().Get(*function_id);
  1290. if (IsCppThunkRequired(context, function_info)) {
  1291. Diagnostics::AnnotationScope annotate_diagnostics(
  1292. &context.emitter(), [&](auto& builder) {
  1293. CARBON_DIAGNOSTIC(InCppThunk, Note,
  1294. "in thunk for C++ function used here");
  1295. builder.Note(loc_id, InCppThunk);
  1296. });
  1297. if (clang::FunctionDecl* thunk_clang_decl =
  1298. BuildCppThunk(context, function_info)) {
  1299. if (auto thunk_function_id =
  1300. ImportFunction(context, loc_id, thunk_clang_decl,
  1301. thunk_clang_decl->getNumParams())) {
  1302. SemIR::InstId thunk_function_decl_id =
  1303. context.functions().Get(*thunk_function_id).first_owning_decl_id;
  1304. function_info.SetHasCppThunk(thunk_function_decl_id);
  1305. }
  1306. }
  1307. } else {
  1308. // Inform Clang that the function has been referenced. This will trigger
  1309. // instantiation if needed.
  1310. context.clang_sema().MarkFunctionReferenced(GetCppLocation(context, loc_id),
  1311. clang_decl);
  1312. // If the function is trivial, mark it as being a builtin if possible.
  1313. if (clang_decl->isTrivial()) {
  1314. // Trivial destructors map to a "no_op" builtin.
  1315. if (isa<clang::CXXDestructorDecl>(clang_decl)) {
  1316. function_info.SetBuiltinFunction(SemIR::BuiltinFunctionKind::NoOp);
  1317. }
  1318. // TODO: Should we model a trivial default constructor as performing
  1319. // value-initialization (zero-initializing all fields) or
  1320. // default-initialization (leaving fields uniniitalized)? Either way we
  1321. // could model that effect as a builtin.
  1322. // TODO: Add a builtin to model trivial copies.
  1323. }
  1324. }
  1325. return function_info.first_owning_decl_id;
  1326. }
  1327. namespace {
  1328. // An item to be imported in an import worklist.
  1329. // TODO: If worklists ever become particularly large, consider changing this
  1330. // to use a `PointerIntPair`.
  1331. struct ImportItem {
  1332. // A declaration that we want to import.
  1333. SemIR::ClangDeclKey decl_key;
  1334. // Whether we have added `decl`'s dependencies to the worklist.
  1335. bool added_dependencies;
  1336. };
  1337. // A worklist of declarations to import.
  1338. using ImportWorklist = llvm::SmallVector<ImportItem>;
  1339. } // namespace
  1340. // Adds the given declaration to our list of declarations to import.
  1341. static auto AddDependentDecl(Context& context, SemIR::ClangDeclKey decl,
  1342. ImportWorklist& worklist) -> void {
  1343. if (!IsClangDeclImported(context, decl)) {
  1344. worklist.push_back({.decl_key = decl, .added_dependencies = false});
  1345. }
  1346. }
  1347. // Finds all decls that need to be imported before importing the given type and
  1348. // adds them to the given set.
  1349. static auto AddDependentUnimportedTypeDecls(Context& context,
  1350. clang::QualType type,
  1351. ImportWorklist& worklist) -> void {
  1352. while (true) {
  1353. if (type->isPointerType() || type->isReferenceType()) {
  1354. type = type->getPointeeType();
  1355. } else if (const clang::ArrayType* array_type =
  1356. type->getAsArrayTypeUnsafe()) {
  1357. type = array_type->getElementType();
  1358. } else {
  1359. break;
  1360. }
  1361. }
  1362. if (const auto* tag_type = type->getAs<clang::TagType>()) {
  1363. AddDependentDecl(context, SemIR::ClangDeclKey(tag_type->getDecl()),
  1364. worklist);
  1365. }
  1366. }
  1367. // Finds all decls that need to be imported before importing the given function
  1368. // and adds them to the given set.
  1369. static auto AddDependentUnimportedFunctionDecls(
  1370. Context& context, const clang::FunctionDecl& clang_decl, int num_params,
  1371. ImportWorklist& worklist) -> void {
  1372. const auto* function_type =
  1373. clang_decl.getType()->castAs<clang::FunctionProtoType>();
  1374. for (int i : llvm::seq(clang_decl.hasCXXExplicitFunctionObjectParameter() +
  1375. num_params)) {
  1376. AddDependentUnimportedTypeDecls(context, function_type->getParamType(i),
  1377. worklist);
  1378. }
  1379. AddDependentUnimportedTypeDecls(context, clang_decl.getReturnType(),
  1380. worklist);
  1381. }
  1382. // Finds all decls that need to be imported before importing the given
  1383. // declaration and adds them to the given set.
  1384. static auto AddDependentUnimportedDecls(Context& context,
  1385. SemIR::ClangDeclKey key,
  1386. ImportWorklist& worklist) -> void {
  1387. clang::Decl* clang_decl = key.decl;
  1388. if (auto* clang_function_decl = clang_decl->getAsFunction()) {
  1389. AddDependentUnimportedFunctionDecls(context, *clang_function_decl,
  1390. key.num_params, worklist);
  1391. } else if (auto* type_decl = dyn_cast<clang::TypeDecl>(clang_decl)) {
  1392. if (!isa<clang::TagDecl>(clang_decl)) {
  1393. AddDependentUnimportedTypeDecls(
  1394. context, type_decl->getASTContext().getTypeDeclType(type_decl),
  1395. worklist);
  1396. }
  1397. }
  1398. auto* parent = GetParentDecl(clang_decl);
  1399. if (llvm::isa_and_nonnull<clang::TagDecl, clang::NamespaceDecl,
  1400. clang::TranslationUnitDecl>(parent)) {
  1401. AddDependentDecl(context, SemIR::ClangDeclKey::ForNonFunctionDecl(parent),
  1402. worklist);
  1403. }
  1404. }
  1405. static auto ImportVarDecl(Context& context, SemIR::LocId loc_id,
  1406. clang::VarDecl* var_decl) -> SemIR::InstId {
  1407. if (SemIR::InstId existing_inst_id =
  1408. LookupClangDeclInstId(context, SemIR::ClangDeclKey(var_decl));
  1409. existing_inst_id.has_value()) {
  1410. return existing_inst_id;
  1411. }
  1412. // Extract type and name.
  1413. clang::QualType var_type = var_decl->getType();
  1414. SemIR::TypeId var_type_id = MapType(context, loc_id, var_type).type_id;
  1415. if (!var_type_id.has_value()) {
  1416. context.TODO(loc_id, llvm::formatv("Unsupported: var type: {0}",
  1417. var_type.getAsString()));
  1418. return SemIR::ErrorInst::InstId;
  1419. }
  1420. SemIR::NameId var_name_id = AddIdentifierName(context, var_decl->getName());
  1421. SemIR::VarStorage var_storage{.type_id = var_type_id,
  1422. .pattern_id = SemIR::InstId::None};
  1423. // We can't use the convenience for `AddPlaceholderInstInNoBlock()` with typed
  1424. // nodes because it doesn't support insts with cleanup.
  1425. SemIR::InstId var_storage_inst_id =
  1426. AddPlaceholderImportedInstInNoBlock(context, {loc_id, var_storage});
  1427. auto clang_decl_id = context.clang_decls().Add(
  1428. {.key = SemIR::ClangDeclKey(var_decl), .inst_id = var_storage_inst_id});
  1429. // Entity name referring to a Clang decl for mangling.
  1430. SemIR::EntityNameId entity_name_id =
  1431. context.entity_names().AddSymbolicBindingName(
  1432. var_name_id, GetParentNameScopeId(context, var_decl),
  1433. SemIR::CompileTimeBindIndex::None, false);
  1434. context.cpp_global_names().Add({.key = {.entity_name_id = entity_name_id},
  1435. .clang_decl_id = clang_decl_id});
  1436. // Create `RefBindingPattern` and `VarPattern` in a `NameBindingDecl`.
  1437. context.pattern_block_stack().Push();
  1438. SemIR::TypeId pattern_type_id = GetPatternType(context, var_type_id);
  1439. SemIR::InstId binding_pattern_inst_id =
  1440. AddPatternInst<SemIR::RefBindingPattern>(
  1441. context, loc_id,
  1442. {.type_id = pattern_type_id, .entity_name_id = entity_name_id});
  1443. var_storage.pattern_id = AddPatternInst<SemIR::VarPattern>(
  1444. context, Parse::VariablePatternId::None,
  1445. {.type_id = pattern_type_id, .subpattern_id = binding_pattern_inst_id});
  1446. context.imports().push_back(AddInstInNoBlock<SemIR::NameBindingDecl>(
  1447. context, loc_id,
  1448. {.pattern_block_id = context.pattern_block_stack().Pop()}));
  1449. // Finalize the `VarStorage` instruction.
  1450. ReplaceInstBeforeConstantUse(context, var_storage_inst_id, var_storage);
  1451. // Inform Clang that the variable has been referenced.
  1452. context.clang_sema().MarkVariableReferenced(GetCppLocation(context, loc_id),
  1453. var_decl);
  1454. return var_storage_inst_id;
  1455. }
  1456. static auto ImportTemplateDecl(Context& context,
  1457. clang::TemplateDecl* template_decl)
  1458. -> SemIR::InstId {
  1459. auto key = SemIR::ClangDeclKey(template_decl);
  1460. // TODO: Avoid doing this lookup both here and in the insertion below.
  1461. if (SemIR::InstId existing_inst_id = LookupClangDeclInstId(context, key);
  1462. existing_inst_id.has_value()) {
  1463. return existing_inst_id;
  1464. }
  1465. // Add a placeholder instruction to resolve cycle between the clang
  1466. // declaration and the type.
  1467. auto import_loc_id =
  1468. AddImportIRInst(context.sem_ir(), template_decl->getLocation());
  1469. SemIR::StructValue value = {.type_id = SemIR::TypeId::None,
  1470. .elements_id = SemIR::InstBlockId::Empty};
  1471. auto inst_id = AddPlaceholderImportedInstInNoBlock(
  1472. context, MakeImportedLocIdAndInst(context, import_loc_id, value));
  1473. // Create a type for the constant value.
  1474. auto name_id = context.entity_names().Add(
  1475. {.name_id = AddIdentifierName(context, template_decl->getName()),
  1476. .parent_scope_id = GetParentNameScopeId(context, template_decl)});
  1477. auto decl_id = context.clang_decls().Add({.key = key, .inst_id = inst_id});
  1478. value.type_id = GetCppTemplateNameType(context, name_id, decl_id);
  1479. // Update the value with its type.
  1480. ReplaceInstBeforeConstantUse(context, inst_id, value);
  1481. return inst_id;
  1482. }
  1483. // Imports a declaration from Clang to Carbon. Returns the instruction for the
  1484. // new Carbon declaration, which will be an ErrorInst on failure. Assumes all
  1485. // dependencies have already been imported.
  1486. static auto ImportDeclAfterDependencies(Context& context, SemIR::LocId loc_id,
  1487. SemIR::ClangDeclKey key)
  1488. -> SemIR::InstId {
  1489. clang::Decl* clang_decl = key.decl;
  1490. if (auto* clang_function_decl = clang_decl->getAsFunction()) {
  1491. return ImportFunctionDecl(context, loc_id, clang_function_decl,
  1492. key.num_params);
  1493. }
  1494. if (auto* clang_namespace_decl = dyn_cast<clang::NamespaceDecl>(clang_decl)) {
  1495. return ImportNamespaceDecl(context, clang_namespace_decl);
  1496. }
  1497. if (auto* type_decl = dyn_cast<clang::TypeDecl>(clang_decl)) {
  1498. auto type = clang_decl->getASTContext().getTypeDeclType(type_decl);
  1499. auto type_inst_id = MapType(context, loc_id, type).inst_id;
  1500. if (!type_inst_id.has_value()) {
  1501. context.TODO(AddImportIRInst(context.sem_ir(), type_decl->getLocation()),
  1502. llvm::formatv("Unsupported: Type declaration: {0}",
  1503. type.getAsString()));
  1504. return SemIR::ErrorInst::InstId;
  1505. }
  1506. context.clang_decls().Add({.key = key, .inst_id = type_inst_id});
  1507. return type_inst_id;
  1508. }
  1509. if (isa<clang::FieldDecl, clang::IndirectFieldDecl>(clang_decl)) {
  1510. // Usable fields get imported as a side effect of importing the class.
  1511. if (SemIR::InstId existing_inst_id = LookupClangDeclInstId(context, key);
  1512. existing_inst_id.has_value()) {
  1513. return existing_inst_id;
  1514. }
  1515. context.TODO(AddImportIRInst(context.sem_ir(), clang_decl->getLocation()),
  1516. "Unsupported: field declaration has unhandled type or kind");
  1517. return SemIR::ErrorInst::InstId;
  1518. }
  1519. if (auto* enum_const_decl = dyn_cast<clang::EnumConstantDecl>(clang_decl)) {
  1520. return ImportEnumConstantDecl(context, enum_const_decl);
  1521. }
  1522. if (auto* var_decl = dyn_cast<clang::VarDecl>(clang_decl)) {
  1523. return ImportVarDecl(context, loc_id, var_decl);
  1524. }
  1525. if (auto* template_decl = dyn_cast<clang::TemplateDecl>(clang_decl)) {
  1526. return ImportTemplateDecl(context, template_decl);
  1527. }
  1528. context.TODO(AddImportIRInst(context.sem_ir(), clang_decl->getLocation()),
  1529. llvm::formatv("Unsupported: Declaration type {0}",
  1530. clang_decl->getDeclKindName()));
  1531. return SemIR::ErrorInst::InstId;
  1532. }
  1533. // Attempts to import a set of declarations. Returns `false` if an error was
  1534. // produced, `true` otherwise.
  1535. static auto ImportDeclSet(Context& context, SemIR::LocId loc_id,
  1536. ImportWorklist& worklist) -> bool {
  1537. // Walk the dependency graph in depth-first order, and import declarations
  1538. // once we've imported all of their dependencies.
  1539. while (!worklist.empty()) {
  1540. auto& item = worklist.back();
  1541. if (!item.added_dependencies) {
  1542. // Skip items we've already imported. We checked this when initially
  1543. // adding the item to the worklist, but it might have been added to the
  1544. // worklist twice before the first time we visited it. For example, this
  1545. // happens for `fn F(a: Cpp.T, b: Cpp.T)`.
  1546. if (IsClangDeclImported(context, item.decl_key)) {
  1547. worklist.pop_back();
  1548. continue;
  1549. }
  1550. // First time visiting this declaration (preorder): add its dependencies
  1551. // to the work list.
  1552. item.added_dependencies = true;
  1553. AddDependentUnimportedDecls(context, item.decl_key, worklist);
  1554. } else {
  1555. // Second time visiting this declaration (postorder): its dependencies are
  1556. // already imported, so we can import it now.
  1557. auto decl_key = worklist.pop_back_val().decl_key;
  1558. auto inst_id = ImportDeclAfterDependencies(context, loc_id, decl_key);
  1559. CARBON_CHECK(inst_id.has_value());
  1560. if (inst_id == SemIR::ErrorInst::InstId) {
  1561. return false;
  1562. }
  1563. CARBON_CHECK(IsClangDeclImported(context, decl_key));
  1564. }
  1565. }
  1566. return true;
  1567. }
  1568. auto ImportCppDecl(Context& context, SemIR::LocId loc_id,
  1569. SemIR::ClangDeclKey key) -> SemIR::InstId {
  1570. // Collect dependencies by walking the dependency graph in depth-first order.
  1571. ImportWorklist worklist;
  1572. AddDependentDecl(context, key, worklist);
  1573. if (!ImportDeclSet(context, loc_id, worklist)) {
  1574. return SemIR::ErrorInst::InstId;
  1575. }
  1576. return LookupClangDeclInstId(context, key);
  1577. }
  1578. auto ImportCppType(Context& context, SemIR::LocId loc_id, clang::QualType type)
  1579. -> TypeExpr {
  1580. // Collect dependencies by walking the dependency graph in depth-first order.
  1581. ImportWorklist worklist;
  1582. AddDependentUnimportedTypeDecls(context, type, worklist);
  1583. if (!ImportDeclSet(context, loc_id, worklist)) {
  1584. return {.inst_id = SemIR::ErrorInst::TypeInstId,
  1585. .type_id = SemIR::ErrorInst::TypeId};
  1586. }
  1587. return MapType(context, loc_id, type);
  1588. }
  1589. // Imports a Clang declaration into Carbon and adds that name into the
  1590. // `NameScope`.
  1591. static auto ImportNameDeclIntoScope(Context& context, SemIR::LocId loc_id,
  1592. SemIR::NameScopeId scope_id,
  1593. SemIR::NameId name_id,
  1594. SemIR::ClangDeclKey key,
  1595. SemIR::AccessKind access_kind)
  1596. -> SemIR::ScopeLookupResult {
  1597. SemIR::InstId inst_id = ImportCppDecl(context, loc_id, key);
  1598. if (!inst_id.has_value()) {
  1599. return SemIR::ScopeLookupResult::MakeNotFound();
  1600. }
  1601. AddNameToScope(context, scope_id, name_id, access_kind, inst_id);
  1602. return SemIR::ScopeLookupResult::MakeWrappedLookupResult(inst_id,
  1603. access_kind);
  1604. }
  1605. // Returns true if the scope is the top `Cpp` scope.
  1606. static auto IsTopCppScope(Context& context, SemIR::NameScopeId scope_id)
  1607. -> bool {
  1608. const SemIR::NameScope& name_scope = context.name_scopes().Get(scope_id);
  1609. CARBON_CHECK(name_scope.is_cpp_scope());
  1610. return name_scope.parent_scope_id() == SemIR::NameScopeId::Package;
  1611. }
  1612. // For a builtin name like `Cpp.long`, returns the associated type.
  1613. static auto LookupBuiltinName(Context& context, SemIR::LocId loc_id,
  1614. SemIR::NameScopeId scope_id,
  1615. SemIR::NameId name_id) -> SemIR::InstId {
  1616. if (!IsTopCppScope(context, scope_id)) {
  1617. return SemIR::InstId::None;
  1618. }
  1619. auto name = context.names().GetAsStringIfIdentifier(name_id);
  1620. if (!name) {
  1621. return SemIR::InstId::None;
  1622. }
  1623. const clang::ASTContext& ast_context = context.ast_context();
  1624. // List of types based on
  1625. // https://github.com/carbon-language/carbon-lang/blob/trunk/proposals/p5448.md#details
  1626. auto builtin_type =
  1627. llvm::StringSwitch<clang::QualType>(*name)
  1628. .Case("signed_char", ast_context.SignedCharTy)
  1629. .Case("short", ast_context.ShortTy)
  1630. .Case("int", ast_context.IntTy)
  1631. .Case("long", ast_context.LongTy)
  1632. .Case("long_long", ast_context.LongLongTy)
  1633. .Case("unsigned_char", ast_context.UnsignedCharTy)
  1634. .Case("unsigned_short", ast_context.UnsignedShortTy)
  1635. .Case("unsigned_int", ast_context.UnsignedIntTy)
  1636. .Case("unsigned_long", ast_context.UnsignedLongTy)
  1637. .Case("unsigned_long_long", ast_context.UnsignedLongLongTy)
  1638. .Case("float", ast_context.FloatTy)
  1639. .Case("double", ast_context.DoubleTy)
  1640. .Case("long_double", ast_context.LongDoubleTy)
  1641. .Case("void", ast_context.VoidTy)
  1642. .Default(clang::QualType());
  1643. if (builtin_type.isNull()) {
  1644. if (*name == "nullptr") {
  1645. // Map `Cpp.nullptr` to an uninitialized value of type `Core.CppNullptrT`.
  1646. auto type_id = MapNullptrType(context, loc_id).type_id;
  1647. return GetOrAddInst<SemIR::UninitializedValue>(
  1648. context, SemIR::LocId::None, {.type_id = type_id});
  1649. }
  1650. return SemIR::InstId::None;
  1651. }
  1652. SemIR::InstId inst_id =
  1653. MapNonWrapperType(context, loc_id, builtin_type).inst_id;
  1654. if (!inst_id.has_value()) {
  1655. context.TODO(loc_id, llvm::formatv("Unsupported: builtin type: {0}",
  1656. builtin_type.getAsString()));
  1657. return SemIR::ErrorInst::InstId;
  1658. }
  1659. return inst_id;
  1660. }
  1661. auto ImportCppOverloadSet(
  1662. Context& context, SemIR::LocId loc_id, SemIR::NameScopeId scope_id,
  1663. SemIR::NameId name_id, clang::CXXRecordDecl* naming_class,
  1664. clang::UnresolvedSet<4>&& overload_set,
  1665. clang::OverloadCandidateSet::OperatorRewriteInfo operator_rewrite_info)
  1666. -> SemIR::InstId {
  1667. SemIR::CppOverloadSetId overload_set_id = context.cpp_overload_sets().Add(
  1668. SemIR::CppOverloadSet{.name_id = name_id,
  1669. .parent_scope_id = scope_id,
  1670. .naming_class = naming_class,
  1671. .candidate_functions = std::move(overload_set),
  1672. .operator_rewrite_info = operator_rewrite_info});
  1673. auto overload_set_inst_id = AddInstInNoBlock<SemIR::CppOverloadSetValue>(
  1674. context, loc_id,
  1675. {.type_id = GetCppOverloadSetType(context, overload_set_id,
  1676. SemIR::SpecificId::None),
  1677. .overload_set_id = overload_set_id});
  1678. context.imports().push_back(overload_set_inst_id);
  1679. return overload_set_inst_id;
  1680. }
  1681. // Gets the best access for an overloaded function set. This is the access that
  1682. // we use for the overload set as a whole. More fine-grained checking is done
  1683. // after overload resolution.
  1684. static auto GetOverloadSetAccess(const clang::UnresolvedSet<4>& overload_set)
  1685. -> SemIR::AccessKind {
  1686. SemIR::AccessKind access_kind = SemIR::AccessKind::Private;
  1687. for (clang::DeclAccessPair overload : overload_set.pairs()) {
  1688. access_kind = std::min(access_kind, MapCppAccess(overload));
  1689. if (access_kind == SemIR::AccessKind::Public) {
  1690. break;
  1691. }
  1692. }
  1693. return access_kind;
  1694. }
  1695. // Imports an overload set from Clang to Carbon and adds the name into the
  1696. // `NameScope`.
  1697. static auto ImportOverloadSetIntoScope(Context& context, SemIR::LocId loc_id,
  1698. SemIR::NameScopeId scope_id,
  1699. SemIR::NameId name_id,
  1700. clang::CXXRecordDecl* naming_class,
  1701. clang::UnresolvedSet<4>&& overload_set)
  1702. -> SemIR::ScopeLookupResult {
  1703. SemIR::AccessKind access_kind = GetOverloadSetAccess(overload_set);
  1704. SemIR::InstId inst_id = ImportCppOverloadSet(
  1705. context, loc_id, scope_id, name_id, naming_class, std::move(overload_set),
  1706. /*operator_rewrite_info=*/{});
  1707. AddNameToScope(context, scope_id, name_id, access_kind, inst_id);
  1708. return SemIR::ScopeLookupResult::MakeWrappedLookupResult(inst_id,
  1709. access_kind);
  1710. }
  1711. // Imports the constructors for a given class name. The found constructors are
  1712. // imported as part of an overload set into the scope. Currently copy/move
  1713. // constructors are not imported.
  1714. static auto ImportConstructorsIntoScope(Context& context, SemIR::LocId loc_id,
  1715. SemIR::NameScopeId scope_id,
  1716. SemIR::NameId name_id)
  1717. -> SemIR::ScopeLookupResult {
  1718. auto* naming_class =
  1719. cast<clang::CXXRecordDecl>(GetDeclContext(context, scope_id));
  1720. clang::DeclContextLookupResult constructors_lookup =
  1721. context.clang_sema().LookupConstructors(naming_class);
  1722. clang::UnresolvedSet<4> overload_set;
  1723. for (auto* decl : constructors_lookup) {
  1724. auto info = clang::getConstructorInfo(decl);
  1725. if (!info.Constructor || info.Constructor->isCopyOrMoveConstructor()) {
  1726. continue;
  1727. }
  1728. overload_set.addDecl(info.FoundDecl, info.FoundDecl.getAccess());
  1729. }
  1730. if (overload_set.empty()) {
  1731. return SemIR::ScopeLookupResult::MakeNotFound();
  1732. }
  1733. return ImportOverloadSetIntoScope(context, loc_id, scope_id, name_id,
  1734. naming_class, std::move(overload_set));
  1735. }
  1736. // Attempts to import a builtin name from Clang to Carbon and adds the name into
  1737. // the scope.
  1738. static auto ImportBuiltinNameIntoScope(Context& context, SemIR::LocId loc_id,
  1739. SemIR::NameScopeId scope_id,
  1740. SemIR::NameId name_id)
  1741. -> SemIR::ScopeLookupResult {
  1742. SemIR::InstId builtin_inst_id =
  1743. LookupBuiltinName(context, loc_id, scope_id, name_id);
  1744. if (builtin_inst_id.has_value()) {
  1745. AddNameToScope(context, scope_id, name_id, SemIR::AccessKind::Public,
  1746. builtin_inst_id);
  1747. return SemIR::ScopeLookupResult::MakeWrappedLookupResult(
  1748. builtin_inst_id, SemIR::AccessKind::Public);
  1749. }
  1750. return SemIR::ScopeLookupResult::MakeNotFound();
  1751. }
  1752. // Checks if the name scope is a class that is not complete.
  1753. static auto IsIncompleteClass(Context& context, SemIR::NameScopeId scope_id)
  1754. -> bool {
  1755. auto class_decl = context.insts().TryGetAs<SemIR::ClassDecl>(
  1756. context.name_scopes().Get(scope_id).inst_id());
  1757. return class_decl.has_value() &&
  1758. !context.types().IsComplete(
  1759. context.classes().Get(class_decl->class_id).self_type_id);
  1760. }
  1761. // Maps a Clang literal expression to a Carbon constant.
  1762. // TODO: Add support for all constant types for which a C++ to Carbon type
  1763. // mapping exists.
  1764. static auto MapConstant(Context& context, SemIR::LocId loc_id,
  1765. clang::Expr* expr) -> SemIR::InstId {
  1766. CARBON_CHECK(expr, "empty expression");
  1767. if (auto* string_literal = dyn_cast<clang::StringLiteral>(expr)) {
  1768. if (!string_literal->isOrdinary() && !string_literal->isUTF8()) {
  1769. context.TODO(loc_id,
  1770. llvm::formatv("Unsupported: string literal type: {0}",
  1771. expr->getType()));
  1772. return SemIR::ErrorInst::InstId;
  1773. }
  1774. StringLiteralValueId string_id =
  1775. context.string_literal_values().Add(string_literal->getString());
  1776. auto inst_id =
  1777. MakeStringLiteral(context, Parse::StringLiteralId::None, string_id);
  1778. return inst_id;
  1779. } else if (isa<clang::CXXNullPtrLiteralExpr>(expr)) {
  1780. auto type_id = MapNullptrType(context, loc_id).type_id;
  1781. return GetOrAddInst<SemIR::UninitializedValue>(context, SemIR::LocId::None,
  1782. {.type_id = type_id});
  1783. }
  1784. SemIR::TypeId type_id = MapType(context, loc_id, expr->getType()).type_id;
  1785. if (!type_id.has_value()) {
  1786. context.TODO(loc_id, llvm::formatv("Unsupported: C++ literal's type `{0}` "
  1787. "could not be mapped to a Carbon type",
  1788. expr->getType().getAsString()));
  1789. return SemIR::ErrorInst::InstId;
  1790. }
  1791. SemIR::InstId inst_id = SemIR::InstId::None;
  1792. SemIR::ImportIRInstId imported_loc_id =
  1793. AddImportIRInst(context.sem_ir(), expr->getExprLoc());
  1794. if (auto* integer_literal = dyn_cast<clang::IntegerLiteral>(expr)) {
  1795. IntId int_id =
  1796. context.ints().Add(integer_literal->getValue().getSExtValue());
  1797. inst_id = AddInstInNoBlock(
  1798. context,
  1799. MakeImportedLocIdAndInst<SemIR::IntValue>(
  1800. context, imported_loc_id, {.type_id = type_id, .int_id = int_id}));
  1801. } else if (auto* bool_literal = dyn_cast<clang::CXXBoolLiteralExpr>(expr)) {
  1802. inst_id = AddInstInNoBlock(
  1803. context,
  1804. MakeImportedLocIdAndInst<SemIR::BoolLiteral>(
  1805. context, imported_loc_id,
  1806. {.type_id = type_id,
  1807. .value = SemIR::BoolValue::From(bool_literal->getValue())}));
  1808. } else if (auto* float_literal = dyn_cast<clang::FloatingLiteral>(expr)) {
  1809. FloatId float_id = context.floats().Add(float_literal->getValue());
  1810. inst_id = AddInstInNoBlock(context,
  1811. MakeImportedLocIdAndInst<SemIR::FloatValue>(
  1812. context, imported_loc_id,
  1813. {.type_id = type_id, .float_id = float_id}));
  1814. } else if (auto* character_literal =
  1815. dyn_cast<clang::CharacterLiteral>(expr)) {
  1816. inst_id = AddInstInNoBlock(
  1817. context, MakeImportedLocIdAndInst<SemIR::CharLiteralValue>(
  1818. context, imported_loc_id,
  1819. {.type_id = type_id,
  1820. .value = SemIR::CharId(character_literal->getValue())}));
  1821. } else {
  1822. context.TODO(loc_id, llvm::formatv(
  1823. "Unsupported: C++ constant expression type: '{0}'",
  1824. expr->getType().getAsString()));
  1825. return SemIR::ErrorInst::InstId;
  1826. }
  1827. context.imports().push_back(inst_id);
  1828. return inst_id;
  1829. }
  1830. // Imports a macro definition into the scope. Currently supports only simple
  1831. // object-like macros that expand to a constant integer value.
  1832. // TODO: Add support for other macro types and non-integer literal values.
  1833. static auto ImportMacro(Context& context, SemIR::LocId loc_id,
  1834. SemIR::NameScopeId scope_id, SemIR::NameId name_id,
  1835. clang::MacroInfo* macro_info)
  1836. -> SemIR::ScopeLookupResult {
  1837. clang::Expr* macro_expr =
  1838. TryEvaluateMacroToConstant(context, loc_id, name_id, macro_info);
  1839. if (!macro_expr) {
  1840. return SemIR::ScopeLookupResult::MakeNotFound();
  1841. }
  1842. auto inst_id = MapConstant(context, loc_id, macro_expr);
  1843. if (inst_id == SemIR::ErrorInst::InstId) {
  1844. return SemIR::ScopeLookupResult::MakeNotFound();
  1845. }
  1846. AddNameToScope(context, scope_id, name_id, SemIR::AccessKind::Public,
  1847. inst_id);
  1848. return SemIR::ScopeLookupResult::MakeWrappedLookupResult(
  1849. inst_id, SemIR::AccessKind::Public);
  1850. }
  1851. // Looks up a macro definition in the top-level `Cpp` scope. Returns nullptr if
  1852. // the macro is not found or if it is a builtin macro, function-like macro or a
  1853. // macro used for header guards.
  1854. // TODO: Function-like and builtin macros are currently not supported and their
  1855. // support still needs to be clarified.
  1856. static auto LookupMacro(Context& context, SemIR::NameScopeId scope_id,
  1857. clang::IdentifierInfo* identifier_info)
  1858. -> clang::MacroInfo* {
  1859. if (!IsTopCppScope(context, scope_id)) {
  1860. return nullptr;
  1861. }
  1862. CARBON_CHECK(identifier_info, "Identifier info is empty");
  1863. clang::MacroInfo* macro_info =
  1864. context.clang_sema().getPreprocessor().getMacroInfo(identifier_info);
  1865. if (macro_info && !macro_info->isUsedForHeaderGuard() &&
  1866. !macro_info->isFunctionLike() && !macro_info->isBuiltinMacro()) {
  1867. return macro_info;
  1868. }
  1869. return nullptr;
  1870. }
  1871. // Gets the identifier info for a name. Returns `nullptr` if the name is not an
  1872. // identifier name.
  1873. static auto GetIdentifierInfo(Context& context, SemIR::NameId name_id)
  1874. -> clang::IdentifierInfo* {
  1875. std::optional<llvm::StringRef> string_name =
  1876. context.names().GetAsStringIfIdentifier(name_id);
  1877. if (!string_name) {
  1878. return nullptr;
  1879. }
  1880. clang::IdentifierInfo* identifier_info =
  1881. context.clang_sema().getPreprocessor().getIdentifierInfo(*string_name);
  1882. return identifier_info;
  1883. }
  1884. auto ImportNameFromCpp(Context& context, SemIR::LocId loc_id,
  1885. SemIR::NameScopeId scope_id, SemIR::NameId name_id)
  1886. -> SemIR::ScopeLookupResult {
  1887. Diagnostics::AnnotationScope annotate_diagnostics(
  1888. &context.emitter(), [&](auto& builder) {
  1889. CARBON_DIAGNOSTIC(InCppNameLookup, Note,
  1890. "in `Cpp` name lookup for `{0}`", SemIR::NameId);
  1891. builder.Note(loc_id, InCppNameLookup, name_id);
  1892. });
  1893. if (IsIncompleteClass(context, scope_id)) {
  1894. return SemIR::ScopeLookupResult::MakeError();
  1895. }
  1896. clang::IdentifierInfo* identifier_info = GetIdentifierInfo(context, name_id);
  1897. if (!identifier_info) {
  1898. return SemIR::ScopeLookupResult::MakeNotFound();
  1899. }
  1900. if (clang::MacroInfo* macro_info =
  1901. LookupMacro(context, scope_id, identifier_info)) {
  1902. return ImportMacro(context, loc_id, scope_id, name_id, macro_info);
  1903. }
  1904. auto lookup = ClangLookupName(context, scope_id, identifier_info);
  1905. if (!lookup) {
  1906. return ImportBuiltinNameIntoScope(context, loc_id, scope_id, name_id);
  1907. }
  1908. // Access checks are performed separately by the Carbon name lookup logic.
  1909. lookup->suppressAccessDiagnostics();
  1910. if (lookup->isOverloadedResult() ||
  1911. (lookup->isSingleResult() &&
  1912. lookup->getFoundDecl()->isFunctionOrFunctionTemplate())) {
  1913. clang::UnresolvedSet<4> overload_set;
  1914. overload_set.append(lookup->begin(), lookup->end());
  1915. return ImportOverloadSetIntoScope(context, loc_id, scope_id, name_id,
  1916. lookup->getNamingClass(),
  1917. std::move(overload_set));
  1918. }
  1919. if (!lookup->isSingleResult()) {
  1920. // Clang will diagnose ambiguous lookup results for us.
  1921. if (!lookup->isAmbiguous()) {
  1922. context.TODO(loc_id,
  1923. llvm::formatv("Unsupported: Lookup succeeded but couldn't "
  1924. "find a single result; LookupResultKind: {0}",
  1925. static_cast<int>(lookup->getResultKind())));
  1926. }
  1927. context.name_scopes().AddRequiredName(scope_id, name_id,
  1928. SemIR::ErrorInst::InstId);
  1929. return SemIR::ScopeLookupResult::MakeError();
  1930. }
  1931. if (IsDeclInjectedClassName(context, scope_id, name_id,
  1932. lookup->getFoundDecl())) {
  1933. return ImportConstructorsIntoScope(context, loc_id, scope_id, name_id);
  1934. }
  1935. auto key = SemIR::ClangDeclKey::ForNonFunctionDecl(lookup->getFoundDecl());
  1936. return ImportNameDeclIntoScope(context, loc_id, scope_id, name_id, key,
  1937. MapCppAccess(lookup->begin().getPair()));
  1938. }
  1939. auto ImportClassDefinitionForClangDecl(Context& context, SemIR::LocId loc_id,
  1940. SemIR::ClassId class_id,
  1941. SemIR::ClangDeclId clang_decl_id)
  1942. -> bool {
  1943. SemIR::CppFile* cpp_file = context.sem_ir().cpp_file();
  1944. CARBON_CHECK(cpp_file);
  1945. auto* clang_decl =
  1946. cast<clang::TagDecl>(context.clang_decls().Get(clang_decl_id).key.decl);
  1947. auto class_inst_id = context.types().GetAsTypeInstId(
  1948. context.classes().Get(class_id).first_owning_decl_id);
  1949. // TODO: Map loc_id into a clang location and use it for diagnostics if
  1950. // instantiation fails, instead of annotating the diagnostic with another
  1951. // location.
  1952. clang::SourceLocation loc = clang_decl->getLocation();
  1953. Diagnostics::AnnotationScope annotate_diagnostics(
  1954. &context.emitter(), [&](auto& builder) {
  1955. CARBON_DIAGNOSTIC(InCppTypeCompletion, Note,
  1956. "while completing C++ type {0}", SemIR::TypeId);
  1957. builder.Note(loc_id, InCppTypeCompletion,
  1958. context.classes().Get(class_id).self_type_id);
  1959. });
  1960. // Ask Clang whether the type is complete. This triggers template
  1961. // instantiation if necessary.
  1962. clang::DiagnosticErrorTrap trap(cpp_file->diagnostics());
  1963. if (!context.cpp_context()->sema().isCompleteType(
  1964. loc, context.ast_context().getCanonicalTagType(clang_decl))) {
  1965. // Type is incomplete. Nothing more to do, but tell the caller if we
  1966. // produced an error.
  1967. return !trap.hasErrorOccurred();
  1968. }
  1969. auto import_ir_inst_id =
  1970. context.insts().GetCanonicalLocId(class_inst_id).import_ir_inst_id();
  1971. if (auto* class_decl = dyn_cast<clang::CXXRecordDecl>(clang_decl)) {
  1972. auto* class_def = class_decl->getDefinition();
  1973. CARBON_CHECK(class_def, "Complete type has no definition");
  1974. BuildClassDefinition(context, import_ir_inst_id, class_id, class_inst_id,
  1975. class_def);
  1976. } else if (auto* enum_decl = dyn_cast<clang::EnumDecl>(clang_decl)) {
  1977. BuildEnumDefinition(context, import_ir_inst_id, class_id, class_inst_id,
  1978. enum_decl);
  1979. }
  1980. return true;
  1981. }
  1982. } // namespace Carbon::Check