Lines Matching refs:CodeModel
132 static CodeModel::Model
133 getEffectiveSystemZCodeModel(std::optional<CodeModel::Model> CM,
136 if (*CM == CodeModel::Tiny)
137 report_fatal_error("Target does not support the tiny CodeModel", false);
138 if (*CM == CodeModel::Kernel)
139 report_fatal_error("Target does not support the kernel CodeModel", false);
143 return RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium;
144 return CodeModel::Small;
151 std::optional<CodeModel::Model> CM,