import.cpp 92 KB

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