import.cpp 90 KB

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