// Part of the Carbon Language project, under the Apache License v2.0 with LLVM // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception #ifndef CARBON_TOOLCHAIN_SEM_IR_IMPORT_IR_H_ #define CARBON_TOOLCHAIN_SEM_IR_IMPORT_IR_H_ #include "llvm/ADT/FoldingSet.h" #include "toolchain/sem_ir/ids.h" #include "toolchain/sem_ir/inst.h" namespace Carbon::SemIR { // A reference to an imported IR. struct ImportIR : public Printable { auto Print(llvm::raw_ostream& out) const -> void { out << "{decl_id: " << decl_id << ", is_export: " << (is_export ? "true" : "false") << "}"; } // The `import` declaration. InstId decl_id; // True if this is part of an `export import`. bool is_export; // The imported IR. const File* sem_ir; }; static_assert(sizeof(ImportIR) == 8 + sizeof(uintptr_t), "Unexpected size"); // A reference to an instruction in an imported IR. Used for diagnostics with // LocId. struct ImportIRInst : public Printable { auto Print(llvm::raw_ostream& out) const -> void { out << "{ir_id: " << ir_id << ", inst_id: " << inst_id << "}"; } auto operator==(const ImportIRInst& rhs) const -> bool { return ir_id == rhs.ir_id && inst_id == rhs.inst_id; } ImportIRId ir_id; InstId inst_id; }; } // namespace Carbon::SemIR #endif // CARBON_TOOLCHAIN_SEM_IR_IMPORT_IR_H_