1use std::collections::{HashMap, HashSet};
18use std::path::{Path, PathBuf};
19
20use rucc_base::{Interner, Symbol};
21use rucc_diag::{Diagnostic, FileId, SourceMapFull, Span};
22use rucc_gnu::Kind;
23use rucc_lex::{Options, PpToken, PpTokenKind, Punct, TokenFlags, tokenize};
24use rucc_session::{Found, IncludeForm, PrefixMap, Preinclude};
25use rucc_target::TargetInfo;
26
27use crate::cond;
28use crate::embed;
29use crate::expand::{Condition, Expander};
30use crate::include::{
31 Context, Dependency, Frame, Header, Reader, directory_of, header_from_token,
32 header_from_tokens, spelling,
33};
34use crate::macros::{Builtin, MacroTable, parse_define};
35use crate::predef::{BUILT_IN, COMMAND_LINE, Predef, built_in, command_line};
36use crate::token::Tok;
37
38#[derive(Debug, Clone, Copy, PartialEq, Eq)]
40enum Guard {
41 Once,
43 Macro(Symbol),
48}
49
50#[derive(Debug, Clone, Copy, PartialEq, Eq)]
52enum Scan {
53 Start,
55 Inside(Symbol),
57 Closed(Symbol),
59 No,
61}
62
63#[derive(Debug)]
65struct Cond {
66 span: Span,
68 live: bool,
71 taken: bool,
74 enclosing_live: bool,
76 seen_else: bool,
78}
79
80#[derive(Debug, Clone, PartialEq, Eq)]
82pub struct LineDirective {
83 pub span: Span,
85 pub line: u32,
87 pub file: Option<Symbol>,
89 pub at: usize,
98}
99
100#[derive(Debug, Default)]
105pub struct Preprocessor {
106 macros: MacroTable,
107 expander: Expander,
108 diagnostics: Vec<Diagnostic>,
109 conds: Vec<Cond>,
110 lines: Vec<LineDirective>,
111 stack: Vec<Frame>,
113 markers: Vec<String>,
117 seen: HashMap<PathBuf, Guard>,
121 deps: Vec<Dependency>,
128 dep_ids: HashSet<PathBuf>,
140}
141
142impl Preprocessor {
143 pub fn new() -> Preprocessor {
145 Preprocessor::default()
146 }
147
148 pub fn with_prefix_map(map: PrefixMap) -> Preprocessor {
155 Preprocessor { expander: Expander::with_prefix_map(map), ..Preprocessor::default() }
156 }
157
158 pub fn macros(&self) -> &MacroTable {
160 &self.macros
161 }
162
163 pub fn macros_mut(&mut self) -> &mut MacroTable {
165 &mut self.macros
166 }
167
168 pub fn diagnostics(&self) -> &[Diagnostic] {
170 &self.diagnostics
171 }
172
173 pub fn take_diagnostics(&mut self) -> Vec<Diagnostic> {
175 std::mem::take(&mut self.diagnostics)
176 }
177
178 pub fn dependencies(&self) -> &[Dependency] {
183 &self.deps
184 }
185
186 pub fn line_directives(&self) -> &[LineDirective] {
192 &self.lines
193 }
194
195 pub fn predefine(
207 &mut self,
208 target: &TargetInfo,
209 opts: &Predef,
210 cx: &mut Context<'_>,
211 ) -> Result<(), SourceMapFull> {
212 let names = Names::new(cx.interner);
213 let file = self.synthetic(BUILT_IN, built_in(target, opts), cx, &names)?;
214 let start = cx.sources.file(file).start;
220 for (spelling, builtin) in Builtin::ALL {
221 let name = cx.interner.intern(spelling);
222 self.macros.define_builtin(name, builtin, Span::new(start, start));
223 }
224 let text = command_line(opts);
225 if !text.is_empty() {
226 self.synthetic(COMMAND_LINE, text, cx, &names)?;
227 }
228 Ok(())
229 }
230
231 fn synthetic(
233 &mut self,
234 name: &str,
235 text: String,
236 cx: &mut Context<'_>,
237 names: &Names,
238 ) -> Result<FileId, SourceMapFull> {
239 let file = cx.sources.add(name, text.into_bytes())?;
240 let mut out = Vec::new();
241 let path = PathBuf::from(name);
245 let id = cx.fs.identity(&path);
246 self.stack.push(Frame { at: Span::DUMMY, path, id, dir: None, next: 0 });
247 self.process(file, &mut out, cx, names);
248 self.stack.clear();
249 debug_assert!(out.is_empty(), "{name} is directives only and produces no tokens");
250 Ok(file)
251 }
252
253 pub fn preinclude(
275 &mut self,
276 files: &[Preinclude],
277 out: &mut Vec<Tok>,
278 cx: &mut Context<'_>,
279 ) -> Result<(), SourceMapFull> {
280 if files.is_empty() {
281 return Ok(());
282 }
283 let names = Names::new(cx.interner);
284 let mut text = String::new();
288 let mut order: Vec<(usize, &Preinclude)> = Vec::new();
289 for macros_only in [true, false] {
290 for file in files.iter().filter(|f| f.macros_only == macros_only) {
291 text.push_str(if macros_only { "-imacros " } else { "-include " });
292 order.push((text.len(), file));
293 text.push_str(&file.name);
294 text.push('\n');
295 }
296 }
297 let record = cx.sources.add(COMMAND_LINE, text.into_bytes())?;
298 let start = cx.sources.file(record).start;
299 let path = PathBuf::from(COMMAND_LINE);
303 let id = cx.fs.identity(&path);
304 self.stack.push(Frame { at: Span::DUMMY, path, id, dir: None, next: 0 });
305 let here = Path::new(".");
306 for (offset, file) in order {
307 let at = Span::new(start + offset as u32, start + (offset + file.name.len()) as u32);
308 let form = IncludeForm::Quoted;
309 let found = cx.search.resolve(cx.fs, &file.name, form, Some(here), 0);
310 let Some(found) = found else {
311 let tried = cx.search.tried(&file.name, form, Some(here), 0);
312 self.not_found(&file.name, at, &tried, cx.search.missing_system());
313 continue;
314 };
315 let mut discarded = Vec::new();
316 let sink = if file.macros_only { &mut discarded } else { &mut *out };
317 self.read(found, at, sink, cx, &names);
318 }
319 self.stack.clear();
320 Ok(())
321 }
322
323 pub fn run(&mut self, file: FileId, cx: &mut Context<'_>) -> Vec<Tok> {
328 let names = Names::new(cx.interner);
329 let mut out = Vec::new();
330 let name = cx.sources.file(file).name.clone();
331 let dir = directory_of(&name);
332 let path = PathBuf::from(name);
335 let id = cx.fs.identity(&path);
336 self.stack.push(Frame { at: Span::DUMMY, path, id, dir, next: 0 });
337 self.process(file, &mut out, cx, &names);
338 self.stack.clear();
339 out
340 }
341
342 fn process(&mut self, file: FileId, out: &mut Vec<Tok>, cx: &mut Context<'_>, names: &Names) {
344 let bytes = cx.sources.file(file).shared_bytes();
347 let start = cx.sources.file(file).start;
348 let mut reader = Reader::new(bytes.as_slice(), start, cx.lex);
349 let depth_on_entry = self.conds.len();
350 let mut text: Vec<Tok> = Vec::new();
354 let mut body: Vec<PpToken> = Vec::new();
355 let mut scan = Scan::Start;
356
357 loop {
358 let was_live = self.live();
359 let first = reader.next(cx.interner);
360 if first.is_eof() {
361 break;
362 }
363 if is_directive(first) {
364 self.flush(&mut text, out, cx, names);
365 body.clear();
366 let name_tok = reader.next(cx.interner);
367 if name_tok.is_eof() || name_tok.flags.has(TokenFlags::START_OF_LINE) {
370 reader.put_back(name_tok);
371 continue;
372 }
373 body.push(name_tok);
374 if was_live && is_include(ident_of(&name_tok), names) {
379 if let Some(header) = reader.header_name(cx.interner) {
380 body.push(header);
381 }
382 }
383 reader.line(cx.interner, &mut body);
384 let opens =
385 matches!(scan, Scan::Start).then(|| guard_opener(&body, names)).flatten();
386 let alternative = is_alternative(body.first().and_then(ident_of), names);
387 self.directive(&body, first.span, out, cx, names);
388 scan = match scan {
389 Scan::Start => match opens {
393 Some(name) if self.conds.len() == depth_on_entry + 1 => Scan::Inside(name),
394 _ => Scan::No,
395 },
396 Scan::Inside(name) if self.conds.len() == depth_on_entry => Scan::Closed(name),
397 Scan::Inside(_) if alternative && self.conds.len() == depth_on_entry + 1 => {
403 Scan::No
404 }
405 Scan::Inside(name) => Scan::Inside(name),
406 Scan::Closed(_) | Scan::No => Scan::No,
407 };
408 } else {
409 body.clear();
410 reader.line(cx.interner, &mut body);
411 if self.live() {
412 let operator = ident_of(&first) == Some(names.pragma_op)
418 || body.iter().any(|t| ident_of(t) == Some(names.pragma_op));
419 if operator {
420 self.flush(&mut text, out, cx, names);
421 }
422 text.push(Tok::new(first));
423 text.extend(body.iter().copied().map(Tok::new));
424 if operator {
425 self.flush(&mut text, out, cx, names);
426 }
427 }
428 if !matches!(scan, Scan::Inside(_)) {
430 scan = Scan::No;
431 }
432 }
433 let complaints = reader.take_diagnostics();
436 if was_live || self.live() {
437 self.diagnostics.extend(complaints);
438 }
439 }
440 self.flush(&mut text, out, cx, names);
441 self.diagnostics.extend(reader.take_diagnostics());
442
443 if let Scan::Closed(name) = scan {
446 if self.macros.is_defined(name) {
447 if let Some(frame) = self.stack.last() {
448 self.seen.entry(frame.id.clone()).or_insert(Guard::Macro(name));
449 }
450 }
451 }
452
453 for cond in self.conds.drain(depth_on_entry..) {
456 self.diagnostics
457 .push(Diagnostic::error("unterminated `#if`", cond.span).with_code("E0330"));
458 }
459 }
460
461 fn live(&self) -> bool {
463 self.conds.last().is_none_or(|c| c.live)
464 }
465
466 fn flush(
468 &mut self,
469 text: &mut Vec<Tok>,
470 out: &mut Vec<Tok>,
471 cx: &mut Context<'_>,
472 names: &Names,
473 ) {
474 if text.is_empty() {
475 return;
476 }
477 let taken = std::mem::take(text);
478 let expanded = self.expander.expand_toks(taken, &self.macros, cx.interner, cx.sources);
479 self.diagnostics.append(&mut self.expander.take_diagnostics());
480 let expanded = self.resolve_has(expanded, cx, names, Pass::Text);
485 self.pragma_operator(expanded, out, cx.interner, names);
486 }
487
488 fn directive(
490 &mut self,
491 body: &[PpToken],
492 hash: Span,
493 out: &mut Vec<Tok>,
494 cx: &mut Context<'_>,
495 names: &Names,
496 ) {
497 let Some(first) = body.first().copied() else {
498 return;
499 };
500 let name = ident_of(&first);
501 let rest = &body[1..];
502
503 if name == Some(names.r#if) {
506 let value = self.live() && self.eval(rest, hash, cx, names);
507 self.open(hash, value);
508 return;
509 }
510 if name == Some(names.ifdef) || name == Some(names.ifndef) {
511 let want = name == Some(names.ifdef);
512 let value = self.live() && self.defined_check(rest, hash, want, names);
513 self.open(hash, value);
514 return;
515 }
516 if name == Some(names.elif) || name == Some(names.elifdef) || name == Some(names.elifndef) {
517 self.elif(name, rest, hash, cx, names);
518 return;
519 }
520 if name == Some(names.r#else) {
521 self.branch_else(rest, hash);
522 return;
523 }
524 if name == Some(names.endif) {
525 self.endif(rest, hash);
526 return;
527 }
528 if !self.live() {
529 return;
533 }
534
535 if name.is_none() && decimal(&first, cx.interner).is_some() {
539 self.line_marker(body, hash, out.len(), cx);
540 return;
541 }
542
543 let interner = &mut *cx.interner;
544 if name == Some(names.define) {
545 let (def, diagnostics) = parse_define(rest, interner);
546 self.diagnostics.extend(diagnostics);
547 if let Some(def) = def {
548 if let Some(problem) = self.macros.define(def, interner) {
549 self.diagnostics.push(problem);
550 }
551 }
552 } else if name == Some(names.undef) {
553 self.undef(rest, hash, interner);
554 } else if name == Some(names.error) || name == Some(names.warning) {
555 self.message(rest, hash, name == Some(names.error), interner);
556 } else if name == Some(names.line) {
557 self.line(rest, hash, out.len(), cx);
558 } else if name == Some(names.pragma) {
559 if rest.len() == 1 && ident_of(&rest[0]) == Some(names.once) {
566 self.pragma_once(rest[0].span);
567 } else if !self.macro_stack_pragma(rest, hash, interner, names) {
568 self.pass_through(body, hash, out);
569 }
570 } else if name == Some(names.include) || name == Some(names.include_next) {
571 self.include(rest, hash, name == Some(names.include_next), out, cx, names);
572 } else if name == Some(names.embed) {
573 self.embed(rest, hash, out, cx);
574 } else {
575 self.diagnostics.push(
576 Diagnostic::error("invalid preprocessing directive", first.span).with_code("E0332"),
577 );
578 }
579 }
580
581 fn macro_stack_pragma(
593 &mut self,
594 rest: &[PpToken],
595 at: Span,
596 interner: &mut Interner,
597 names: &Names,
598 ) -> bool {
599 let which = match rest.first().and_then(ident_of) {
600 Some(name) if name == names.push_macro => names.push_macro,
601 Some(name) if name == names.pop_macro => names.pop_macro,
602 _ => return false,
603 };
604 let word = if which == names.push_macro { "push_macro" } else { "pop_macro" };
605 let [_, open, text, close, extra @ ..] = rest else {
610 self.invalid_pragma(word, at);
611 return true;
612 };
613 if open.punct() != Some(Punct::LParen)
614 || text.kind != PpTokenKind::StringLit
615 || close.punct() != Some(Punct::RParen)
616 {
617 self.invalid_pragma(word, at);
618 return true;
619 }
620 self.extra_tokens(extra, "#pragma");
621 let Some(name) = identifier_in(*text, interner) else {
626 return true;
627 };
628 if which == names.push_macro {
629 self.macros.push_macro(name);
630 } else {
631 self.macros.pop_macro(name);
632 }
633 true
634 }
635
636 fn invalid_pragma(&mut self, word: &str, at: Span) {
637 self.diagnostics.push(
638 Diagnostic::error(format!("invalid `#pragma {word}` directive"), at).with_code("E0672"),
639 );
640 }
641
642 fn pragma_once(&mut self, at: Span) {
644 if self.stack.len() <= 1 {
649 self.diagnostics.push(
650 Diagnostic::warning("`#pragma once` in the main file", at).with_code("W0332"),
651 );
652 }
653 if let Some(frame) = self.stack.last() {
654 self.seen.insert(frame.id.clone(), Guard::Once);
655 }
656 }
657
658 fn skip(&self, id: &Path) -> bool {
660 match self.seen.get(id) {
661 Some(Guard::Once) => true,
662 Some(Guard::Macro(name)) => self.macros.is_defined(*name),
663 None => false,
664 }
665 }
666
667 fn pass_through(&mut self, body: &[PpToken], hash: Span, out: &mut Vec<Tok>) {
669 let _ = self;
670 out.push(Tok::synthetic(
671 PpTokenKind::Punct(Punct::Hash),
672 None,
673 TokenFlags::START_OF_LINE,
674 hash,
675 ));
676 for (at, token) in body.iter().copied().enumerate() {
681 let mut token = Tok::new(token);
682 if at == 0 {
683 token.flags = token.flags.without(TokenFlags::LEADING_SPACE);
684 }
685 out.push(token);
686 }
687 }
688
689 fn include(
691 &mut self,
692 rest: &[PpToken],
693 hash: Span,
694 is_next: bool,
695 out: &mut Vec<Tok>,
696 cx: &mut Context<'_>,
697 names: &Names,
698 ) {
699 let Some(header) = self.header_of(rest, hash, cx) else {
700 return;
701 };
702 let (form, relative_to, from) = self.where_to_look(&header, is_next, cx);
703 let found = cx.search.resolve(cx.fs, &header.name, form, relative_to.as_deref(), from);
704 let Some(found) = found else {
705 let tried = cx.search.tried(&header.name, form, relative_to.as_deref(), from);
706 self.not_found(&header.name, hash, &tried, cx.search.missing_system());
707 return;
708 };
709 self.read(found, hash, out, cx, names);
710 }
711
712 fn not_found(&mut self, name: &str, at: Span, tried: &[PathBuf], why: Option<&str>) {
719 let where_looked = if tried.is_empty() && Path::new(name).is_absolute() {
723 "the name is an absolute path, so the search path was not used".to_owned()
724 } else if tried.is_empty() {
725 "the include search path is empty".to_owned()
726 } else {
727 let list: Vec<String> =
728 tried.iter().map(|d| d.to_string_lossy().into_owned()).collect();
729 format!("searched: {}", list.join(", "))
730 };
731 let mut said = Diagnostic::error(format!("`{name}` file not found"), at)
732 .with_code("E0341")
733 .note(where_looked, at);
734 if let Some(why) = why {
735 said = said.note(why, at);
736 }
737 self.diagnostics.push(said);
738 }
739
740 fn read(
747 &mut self,
748 found: Found,
749 at: Span,
750 out: &mut Vec<Tok>,
751 cx: &mut Context<'_>,
752 names: &Names,
753 ) {
754 let id = cx.fs.identity(&found.path);
755 if self.dep_ids.insert(id.clone()) {
760 let path = rucc_session::path_key(&found.path);
767 self.deps.push(Dependency { path, is_system: found.is_system });
768 }
769 if self.skip(&id) {
774 return;
775 }
776 if self.stack.len() >= cx.max_include_depth as usize {
777 let mut diagnostic = Diagnostic::error("`#include` nested too deeply", at)
778 .with_code("E0342")
779 .note("a header that includes itself with no include guard is the usual cause", at);
780 if let Some(outer) = self.stack.first().filter(|f| !f.at.is_dummy()) {
781 diagnostic = diagnostic.note("the outermost include is here", outer.at);
782 }
783 self.diagnostics.push(diagnostic);
784 return;
785 }
786 let added = cx.sources.add_shared(found.name.clone(), found.bytes.clone(), Some(at));
787 let file = match added {
788 Ok(file) => file,
789 Err(full) => {
790 self.diagnostics.push(Diagnostic::error(full.to_string(), at).with_code("E0344"));
791 return;
792 }
793 };
794 if found.is_system || cx.sources.is_system(at.lo) {
802 cx.sources.mark_system(file);
803 }
804 self.stack.push(Frame {
805 at,
806 dir: found.path.parent().map(Path::to_path_buf),
807 id,
808 path: found.path,
809 next: found.next,
810 });
811 self.process(file, out, cx, names);
812 self.stack.pop();
813 }
814
815 fn embed(&mut self, rest: &[PpToken], hash: Span, out: &mut Vec<Tok>, cx: &mut Context<'_>) {
817 let Some((header, params)) = self.embed_line(rest, hash, cx) else {
818 return;
819 };
820 let Some(found) = self.find(&header, false, cx) else {
821 self.diagnostics.push(
822 Diagnostic::error(format!("`{}` resource not found", header.name), hash)
823 .with_code("E0341")
824 .note("an `#embed` resource is looked for on the include path", hash),
825 );
826 return;
827 };
828 embed::tokens(found.bytes.as_slice(), ¶ms, hash, cx.interner, out);
833 }
834
835 fn embed_line(
837 &mut self,
838 rest: &[PpToken],
839 hash: Span,
840 cx: &mut Context<'_>,
841 ) -> Option<(Header, embed::Params)> {
842 if rest.is_empty() {
843 self.bad_header(hash);
844 return None;
845 }
846 let line: Vec<Tok> = rest.iter().copied().map(Tok::new).collect();
847 let line = if line[0].kind == PpTokenKind::HeaderName {
853 line
854 } else {
855 let expanded = self.expander.expand_toks(line, &self.macros, cx.interner, cx.sources);
856 self.diagnostics.append(&mut self.expander.take_diagnostics());
857 expanded
858 };
859 let Some(used) = embed::header_length(&line) else {
860 self.bad_header(line.first().map_or(hash, |t| t.report_span()));
861 return None;
862 };
863 let header = if line[0].kind == PpTokenKind::HeaderName {
864 header_from_token(spelling(line[0], cx.interner))
865 } else {
866 let spellings: Vec<&str> =
867 line[..used].iter().map(|t| spelling(*t, cx.interner)).collect();
868 header_from_tokens(&spellings)
869 };
870 let Some(header) = header else {
871 self.bad_header(line[0].report_span());
872 return None;
873 };
874 let params = self.embed_params(&line[used..], hash, cx)?;
875 Some((header, params))
876 }
877
878 fn embed_params(
880 &mut self,
881 line: &[Tok],
882 at: Span,
883 cx: &mut Context<'_>,
884 ) -> Option<embed::Params> {
885 let Preprocessor { expander, macros, diagnostics, .. } = self;
886 let sources = &mut *cx.sources;
887 let mut expand = |toks: Vec<Tok>, interner: &mut Interner| {
888 expander.expand_toks(toks, macros, interner, sources)
889 };
890 let params = embed::parse(line, at, cx.interner, diagnostics, &mut expand);
891 self.diagnostics.append(&mut self.expander.take_diagnostics());
892 params
893 }
894
895 fn where_to_look(
906 &self,
907 header: &Header,
908 is_next: bool,
909 cx: &Context<'_>,
910 ) -> (IncludeForm, Option<PathBuf>, usize) {
911 let form = if header.angled { IncludeForm::Angled } else { IncludeForm::Quoted };
912 let frame = self.stack.last();
913 let from = if is_next {
914 frame.map_or(0, |f| f.next).max(cx.search.start(form))
915 } else {
916 cx.search.start(form)
917 };
918 let relative_to = if is_next { None } else { frame.and_then(|f| f.dir.clone()) };
919 (form, relative_to, from)
920 }
921
922 fn find(&self, header: &Header, is_next: bool, cx: &Context<'_>) -> Option<Found> {
924 let (form, relative_to, from) = self.where_to_look(header, is_next, cx);
925 cx.search.resolve(cx.fs, &header.name, form, relative_to.as_deref(), from)
926 }
927
928 fn header_of(&mut self, rest: &[PpToken], hash: Span, cx: &mut Context<'_>) -> Option<Header> {
930 if let Some(first) = rest.first().copied() {
931 if first.kind == PpTokenKind::HeaderName {
932 let text = first.value.map_or("", |v| cx.interner.resolve(v));
933 let header = header_from_token(text);
934 if header.is_none() {
935 self.bad_header(first.span);
936 }
937 self.extra_tokens(&rest[1..], "#include");
938 return header;
939 }
940 }
941 if rest.is_empty() {
945 self.bad_header(hash);
946 return None;
947 }
948 let line: Vec<Tok> = rest.iter().copied().map(Tok::new).collect();
949 let expanded = self.expander.expand_toks(line, &self.macros, cx.interner, cx.sources);
950 self.diagnostics.append(&mut self.expander.take_diagnostics());
951 let spellings: Vec<&str> = expanded.iter().map(|t| spelling(*t, cx.interner)).collect();
952 let header = header_from_tokens(&spellings);
953 if header.is_none() {
954 let at = expanded.first().map_or(hash, |t| t.report_span());
955 self.bad_header(at);
956 }
957 header
958 }
959
960 fn bad_operand(&mut self, tok: Tok, at: Span, interner: &Interner) {
962 self.diagnostics.push(
963 Diagnostic::error(
964 format!("expected an identifier as the operand of `{}`", spelling(tok, interner)),
965 at,
966 )
967 .with_code("E0345"),
968 );
969 }
970
971 fn bad_header(&mut self, at: Span) {
972 self.diagnostics.push(
973 Diagnostic::error("expected a file name in `<>` or `\"\"`", at).with_code("E0343"),
974 );
975 }
976
977 fn open(&mut self, span: Span, value: bool) {
979 let enclosing_live = self.live();
980 self.conds.push(Cond {
981 span,
982 live: enclosing_live && value,
983 taken: value,
984 enclosing_live,
985 seen_else: false,
986 });
987 }
988
989 fn elif(
990 &mut self,
991 name: Option<Symbol>,
992 rest: &[PpToken],
993 hash: Span,
994 cx: &mut Context<'_>,
995 names: &Names,
996 ) {
997 let Some(top) = self.conds.last() else {
998 self.stray("elif", hash);
999 return;
1000 };
1001 if top.seen_else {
1002 self.diagnostics
1003 .push(Diagnostic::error("`#elif` after `#else`", hash).with_code("E0333"));
1004 return;
1005 }
1006 let (enclosing_live, already_taken) = (top.enclosing_live, top.taken);
1009 let consider = enclosing_live && !already_taken;
1010 let value = if !consider {
1011 false
1012 } else if name == Some(names.elif) {
1013 self.eval(rest, hash, cx, names)
1014 } else {
1015 self.defined_check(rest, hash, name == Some(names.elifdef), names)
1016 };
1017 let top = self.conds.last_mut().expect("checked above and nothing popped");
1018 top.live = consider && value;
1019 top.taken = already_taken || value;
1020 }
1021
1022 fn branch_else(&mut self, rest: &[PpToken], hash: Span) {
1023 let Some(top) = self.conds.last_mut() else {
1024 self.stray("else", hash);
1025 return;
1026 };
1027 if top.seen_else {
1028 self.diagnostics.push(Diagnostic::error("a second `#else`", hash).with_code("E0333"));
1029 return;
1030 }
1031 top.live = top.enclosing_live && !top.taken;
1032 top.taken = true;
1033 top.seen_else = true;
1034 let enclosing_live = top.enclosing_live;
1035 if enclosing_live {
1036 self.extra_tokens(rest, "#else");
1037 }
1038 }
1039
1040 fn endif(&mut self, rest: &[PpToken], hash: Span) {
1041 if self.conds.pop().is_none() {
1042 self.stray("endif", hash);
1043 return;
1044 }
1045 if self.live() {
1046 self.extra_tokens(rest, "#endif");
1047 }
1048 }
1049
1050 fn stray(&mut self, what: &str, hash: Span) {
1051 self.diagnostics
1052 .push(Diagnostic::error(format!("`#{what}` without `#if`"), hash).with_code("E0334"));
1053 }
1054
1055 fn extra_tokens(&mut self, rest: &[PpToken], what: &str) {
1060 if let Some(first) = rest.first() {
1061 self.diagnostics.push(
1062 Diagnostic::warning(format!("extra tokens after `{what}`"), first.span)
1063 .with_code("W0330"),
1064 );
1065 }
1066 }
1067
1068 fn eval(&mut self, rest: &[PpToken], hash: Span, cx: &mut Context<'_>, names: &Names) -> bool {
1070 let line: Vec<Tok> = rest.iter().copied().map(Tok::new).collect();
1071 let line = self.resolve_defined(line, cx.interner, names);
1078 let line = self.resolve_has(line, cx, names, Pass::Headers);
1083 let condition = Condition { defined: names.defined, report: cx.pedantic };
1084 let line =
1085 self.expander.expand_condition(line, &self.macros, cx.interner, cx.sources, condition);
1086 self.diagnostics.append(&mut self.expander.take_diagnostics());
1087 let line = self.resolve_defined(line, cx.interner, names);
1088 let line = self.resolve_has(line, cx, names, Pass::Rest);
1089 cond::evaluate(&line, cx.interner, &mut self.diagnostics, hash)
1090 }
1091
1092 fn resolve_has(
1097 &mut self,
1098 line: Vec<Tok>,
1099 cx: &mut Context<'_>,
1100 names: &Names,
1101 pass: Pass,
1102 ) -> Vec<Tok> {
1103 if !line.iter().any(|t| t.ident().is_some_and(|n| names.has.op(n).is_some())) {
1104 return line;
1105 }
1106 let mut out = Vec::with_capacity(line.len());
1107 let mut at = 0;
1108 while at < line.len() {
1109 let tok = line[at];
1110 let op = tok.ident().and_then(|n| names.has.op(n));
1111 let Some(op) = op.filter(|op| pass.answers(*op)) else {
1112 if pass == Pass::Text && op.is_some_and(Op::is_header) {
1113 self.outside_a_directive(tok, cx);
1114 }
1115 out.push(tok);
1116 at += 1;
1117 continue;
1118 };
1119 let Some((operand, after)) = arguments(&line, at + 1) else {
1120 if pass != Pass::Headers {
1124 self.diagnostics.push(
1125 Diagnostic::error(
1126 format!("expected `(` after `{}`", spelling(tok, cx.interner)),
1127 tok.report_span(),
1128 )
1129 .with_code("E0345"),
1130 );
1131 }
1132 out.push(tok);
1133 at += 1;
1134 continue;
1135 };
1136 at = after;
1137 let value = self.ask(op, operand, tok, cx);
1140 let sym = cx.interner.intern(&value.to_string());
1141 out.push(Tok::synthetic(PpTokenKind::Number, Some(sym), tok.flags, tok.report_span()));
1142 }
1143 out
1144 }
1145
1146 fn outside_a_directive(&mut self, tok: Tok, cx: &Context<'_>) {
1154 self.diagnostics.push(
1155 Diagnostic::error(
1156 format!(
1157 "`{}` used outside of a preprocessing directive",
1158 spelling(tok, cx.interner)
1159 ),
1160 tok.report_span(),
1161 )
1162 .with_code("E0350"),
1163 );
1164 }
1165
1166 fn ask(&mut self, op: Op, operand: &[Tok], tok: Tok, cx: &mut Context<'_>) -> u32 {
1168 let at = operand.first().map_or(tok.report_span(), |t| t.report_span());
1169 match op {
1170 Op::Include | Op::IncludeNext => {
1171 let spellings: Vec<&str> =
1172 operand.iter().map(|t| spelling(*t, cx.interner)).collect();
1173 let Some(header) = header_from_tokens(&spellings) else {
1174 self.bad_header(at);
1175 return 0;
1176 };
1177 u32::from(self.find(&header, op == Op::IncludeNext, cx).is_some())
1178 }
1179 Op::Embed => {
1180 let Some(used) = embed::header_length(operand) else {
1185 self.bad_header(at);
1186 return 0;
1187 };
1188 let header = if operand[0].kind == PpTokenKind::HeaderName {
1189 header_from_token(spelling(operand[0], cx.interner))
1190 } else {
1191 let spellings: Vec<&str> =
1192 operand[..used].iter().map(|t| spelling(*t, cx.interner)).collect();
1193 header_from_tokens(&spellings)
1194 };
1195 let Some(header) = header else {
1196 self.bad_header(at);
1197 return 0;
1198 };
1199 let Some(params) = self.embed_params(&operand[used..], at, cx) else {
1204 return 0;
1205 };
1206 match self.find(&header, false, cx) {
1207 None => 0,
1208 Some(found) => {
1209 let taken = params.taken(found.bytes.as_slice().len() as u64);
1210 if taken == 0 { 2 } else { 1 }
1211 }
1212 }
1213 }
1214 Op::BuildingModule => {
1215 if attribute_name(operand, cx.interner).is_none() {
1216 self.bad_operand(tok, at, cx.interner);
1217 }
1218 0
1225 }
1226 Op::Table(kind) => {
1227 let Some(name) = attribute_name(operand, cx.interner) else {
1228 self.bad_operand(tok, at, cx.interner);
1229 return 0;
1230 };
1231 match kind {
1232 Kind::Attribute => rucc_gnu::has_attribute(name),
1233 Kind::CAttribute => rucc_gnu::has_c_attribute(name),
1234 Kind::Builtin => rucc_gnu::has_builtin(name),
1235 Kind::Feature => rucc_gnu::has_feature(name),
1236 Kind::Extension => rucc_gnu::has_extension(name),
1237 }
1238 }
1239 }
1240 }
1241
1242 fn resolve_defined(
1244 &mut self,
1245 line: Vec<Tok>,
1246 interner: &mut Interner,
1247 names: &Names,
1248 ) -> Vec<Tok> {
1249 if !line.iter().any(|t| t.ident() == Some(names.defined)) {
1250 return line;
1251 }
1252 let mut out = Vec::with_capacity(line.len());
1253 let mut at = 0;
1254 while at < line.len() {
1255 let tok = line[at];
1256 if tok.ident() != Some(names.defined) {
1257 out.push(tok);
1258 at += 1;
1259 continue;
1260 }
1261 let parenthesised = line.get(at + 1).is_some_and(|t| t.is(Punct::LParen));
1262 let name_at = if parenthesised { at + 2 } else { at + 1 };
1263 let name = line.get(name_at).and_then(|t| t.ident());
1264 let Some(name) = name else {
1265 self.diagnostics.push(
1266 Diagnostic::error("`defined` without a macro name", tok.report_span())
1267 .with_code("E0335"),
1268 );
1269 out.push(tok);
1270 at += 1;
1271 continue;
1272 };
1273 at = name_at + 1;
1274 if parenthesised {
1275 if line.get(at).is_some_and(|t| t.is(Punct::RParen)) {
1276 at += 1;
1277 } else {
1278 self.diagnostics.push(
1279 Diagnostic::error("expected `)` after `defined`", tok.report_span())
1280 .with_code("E0335"),
1281 );
1282 }
1283 }
1284 let value = self.macros.is_defined(name) || names.has.op(name).is_some();
1288 out.push(number(value, tok.flags, tok.report_span(), interner));
1289 }
1290 out
1291 }
1292
1293 fn defined_check(
1295 &mut self,
1296 rest: &[PpToken],
1297 hash: Span,
1298 want_defined: bool,
1299 names: &Names,
1300 ) -> bool {
1301 let Some(name) = rest.first().and_then(ident_of) else {
1302 self.diagnostics.push(
1303 Diagnostic::error("expected a macro name", rest.first().map_or(hash, |t| t.span))
1304 .with_code("E0336"),
1305 );
1306 return false;
1307 };
1308 self.extra_tokens(&rest[1..], if want_defined { "#ifdef" } else { "#ifndef" });
1309 let defined = self.macros.is_defined(name) || names.has.op(name).is_some();
1310 defined == want_defined
1311 }
1312
1313 fn undef(&mut self, rest: &[PpToken], hash: Span, interner: &Interner) {
1314 let Some(name) = rest.first().and_then(ident_of) else {
1315 self.diagnostics.push(
1316 Diagnostic::error("expected a macro name", rest.first().map_or(hash, |t| t.span))
1317 .with_code("E0336"),
1318 );
1319 return;
1320 };
1321 let text = interner.resolve(name);
1324 if text == "defined" || text.starts_with("__STDC_") {
1325 self.diagnostics.push(
1326 Diagnostic::error(format!("`{text}` cannot be undefined"), rest[0].span)
1327 .with_code("E0337"),
1328 );
1329 return;
1330 }
1331 self.macros.undef(name);
1332 self.extra_tokens(&rest[1..], "#undef");
1333 }
1334
1335 fn message(&mut self, rest: &[PpToken], hash: Span, fatal: bool, interner: &Interner) {
1337 let text = spell_line(rest, interner);
1338 let span = rest.first().map_or(hash, |t| t.span.to(last_span(rest)));
1339 let diag = if fatal {
1340 Diagnostic::error(text, span).with_code("E0338")
1341 } else {
1342 Diagnostic::warning(text, span).with_code("W0331")
1343 };
1344 self.diagnostics.push(diag);
1345 }
1346
1347 fn line(&mut self, rest: &[PpToken], hash: Span, at: usize, cx: &mut Context<'_>) {
1352 let line: Vec<Tok> = rest.iter().copied().map(Tok::new).collect();
1353 let line = self.expander.expand_toks(line, &self.macros, cx.interner, cx.sources);
1354 self.diagnostics.append(&mut self.expander.take_diagnostics());
1355 let interner = &mut *cx.interner;
1356
1357 let number_text = line
1358 .first()
1359 .filter(|t| t.kind == PpTokenKind::Number)
1360 .and_then(|t| t.value)
1361 .map(|v| interner.resolve(v));
1362 let Some(parsed) = number_text.and_then(|t| t.parse::<u64>().ok()) else {
1363 self.diagnostics.push(
1364 Diagnostic::error(
1365 "`#line` needs a decimal line number",
1366 line.first().map_or(hash, |t| t.report_span()),
1367 )
1368 .with_code("E0339"),
1369 );
1370 return;
1371 };
1372 if parsed == 0 || parsed > 2_147_483_647 {
1375 self.diagnostics.push(
1376 Diagnostic::error("`#line` number is out of range", line[0].report_span())
1377 .with_code("E0339"),
1378 );
1379 return;
1380 }
1381
1382 let mut file = None;
1383 if let Some(second) = line.get(1) {
1384 if second.kind == PpTokenKind::StringLit {
1385 file = second.value;
1386 } else {
1387 self.diagnostics.push(
1388 Diagnostic::error(
1389 "`#line` file name must be a string literal",
1390 second.report_span(),
1391 )
1392 .with_code("E0339"),
1393 );
1394 return;
1395 }
1396 }
1397 if let Some(extra) = line.get(2) {
1398 self.diagnostics.push(
1399 Diagnostic::warning("extra tokens after `#line`", extra.report_span())
1400 .with_code("W0330"),
1401 );
1402 }
1403 #[expect(
1404 clippy::cast_possible_truncation,
1405 reason = "the range check above keeps this inside i32, let alone u32"
1406 )]
1407 let number = parsed as u32;
1408 self.lines.push(LineDirective { span: hash, line: number, file, at });
1409 let name = file.map(|v| destringize(cx.interner.resolve(v)));
1410 cx.sources.set_presumed(hash.lo, number, name);
1411 }
1412
1413 fn line_marker(&mut self, body: &[PpToken], hash: Span, at: usize, cx: &mut Context<'_>) {
1430 let Some(number) = decimal(&body[0], cx.interner) else { return };
1431 let mut rest = &body[1..];
1432 let mut file = None;
1433 if let Some(first) = rest.first().filter(|t| t.kind == PpTokenKind::StringLit) {
1434 file = first.value;
1435 rest = &rest[1..];
1436 }
1437
1438 let (mut entering, mut leaving) = (false, false);
1439 for flag in rest {
1440 match decimal(flag, cx.interner) {
1441 Some(1) => entering = true,
1442 Some(2) => leaving = true,
1443 Some(3 | 4) => {}
1444 _ => {
1445 let text = spell_line(std::slice::from_ref(flag), cx.interner);
1446 self.diagnostics.push(
1447 Diagnostic::error(
1448 format!("invalid flag `{text}` in line directive"),
1449 flag.span,
1450 )
1451 .with_code("E0339"),
1452 );
1453 return;
1454 }
1455 }
1456 }
1457
1458 let name = file.map(|v| destringize(cx.interner.resolve(v)));
1459 if leaving {
1460 if let Some(name) = &name {
1461 if !self.leave_marker(name) {
1462 self.diagnostics.push(
1463 Diagnostic::warning(
1464 format!("file `{name}` linemarker ignored due to incorrect nesting"),
1465 last_span(body),
1466 )
1467 .with_code("W0330"),
1468 );
1469 return;
1470 }
1471 } else {
1472 self.markers.pop();
1473 }
1474 }
1475 if entering {
1476 let here = cx.sources.presumed(hash.lo).map(|loc| loc.name.to_owned());
1477 self.markers.push(here.unwrap_or_default());
1478 }
1479
1480 self.lines.push(LineDirective { span: hash, line: number, file, at });
1481 cx.sources.set_presumed(hash.lo, number, name);
1482 }
1483
1484 fn leave_marker(&mut self, name: &str) -> bool {
1498 if let Some(at) = self.markers.iter().rposition(|outer| outer == name) {
1499 self.markers.truncate(at);
1500 return true;
1501 }
1502 let found = self.stack.iter().rev().skip(1).any(|f| f.path.as_os_str() == name);
1505 if found {
1506 self.markers.clear();
1507 }
1508 found
1509 }
1510
1511 fn pragma_operator(
1517 &mut self,
1518 expanded: Vec<Tok>,
1519 out: &mut Vec<Tok>,
1520 interner: &mut Interner,
1521 names: &Names,
1522 ) {
1523 if !expanded.iter().any(|t| t.ident() == Some(names.pragma_op)) {
1524 out.extend(expanded);
1525 return;
1526 }
1527 let mut at = 0;
1528 let mut ends_a_line = false;
1533 while at < expanded.len() {
1534 let mut tok = expanded[at];
1535 if tok.ident() != Some(names.pragma_op) {
1536 if ends_a_line {
1537 tok.flags = tok.flags.with(TokenFlags::START_OF_LINE);
1538 ends_a_line = false;
1539 }
1540 out.push(tok);
1541 at += 1;
1542 continue;
1543 }
1544 let open = expanded.get(at + 1).is_some_and(|t| t.is(Punct::LParen));
1545 let text = expanded.get(at + 2).filter(|t| t.kind == PpTokenKind::StringLit);
1546 let close = expanded.get(at + 3).is_some_and(|t| t.is(Punct::RParen));
1547 let (Some(text), true, true) = (text, open, close) else {
1548 self.diagnostics.push(
1549 Diagnostic::error("`_Pragma` takes a single string literal", tok.report_span())
1550 .with_code("E0340"),
1551 );
1552 out.push(tok);
1553 at += 1;
1554 continue;
1555 };
1556 let literal = text.value.map(|v| interner.resolve(v)).unwrap_or_default();
1557 let body = destringize(literal);
1558 self.emit_pragma(&body, tok, out, interner, names);
1559 ends_a_line = true;
1560 at += 4;
1561 }
1562 }
1563
1564 fn emit_pragma(
1566 &mut self,
1567 body: &str,
1568 at: Tok,
1569 out: &mut Vec<Tok>,
1570 interner: &mut Interner,
1571 names: &Names,
1572 ) {
1573 let span = at.report_span();
1574 let (tokens, diagnostics) = tokenize(body.as_bytes(), 0, Options::new(), interner);
1575 self.diagnostics.extend(
1578 diagnostics
1579 .into_iter()
1580 .map(|d| Diagnostic::new(d.severity, d.message, span).with_code("E0340")),
1581 );
1582 let tokens: Vec<PpToken> = tokens.into_iter().filter(|t| !t.is_eof()).collect();
1583 if self.macro_stack_pragma(&tokens, span, interner, names) {
1587 return;
1588 }
1589 out.push(Tok::synthetic(
1590 PpTokenKind::Punct(Punct::Hash),
1591 None,
1592 TokenFlags::START_OF_LINE,
1593 span,
1594 ));
1595 out.push(Tok::synthetic(PpTokenKind::Ident, Some(names.pragma), TokenFlags::EMPTY, span));
1596 for (at, t) in tokens.into_iter().enumerate() {
1600 let spaced = at == 0 || t.flags.has(TokenFlags::LEADING_SPACE);
1603 let flags = if spaced {
1604 TokenFlags::EMPTY.with(TokenFlags::LEADING_SPACE)
1605 } else {
1606 TokenFlags::EMPTY
1607 };
1608 out.push(Tok::synthetic(t.kind, t.value, flags, span));
1609 }
1610 }
1611}
1612
1613fn guard_opener(body: &[PpToken], names: &Names) -> Option<Symbol> {
1618 let name = ident_of(body.first()?)?;
1619 let rest = &body[1..];
1620 if name == names.ifndef {
1621 let [only] = rest else {
1622 return None;
1623 };
1624 return ident_of(only);
1625 }
1626 if name != names.r#if {
1627 return None;
1628 }
1629 let [bang, defined, tail @ ..] = rest else {
1630 return None;
1631 };
1632 if bang.punct() != Some(Punct::Bang) || ident_of(defined) != Some(names.defined) {
1633 return None;
1634 }
1635 match tail {
1636 [only] => ident_of(only),
1637 [open, only, close]
1638 if open.punct() == Some(Punct::LParen) && close.punct() == Some(Punct::RParen) =>
1639 {
1640 ident_of(only)
1641 }
1642 _ => None,
1643 }
1644}
1645
1646fn is_alternative(name: Option<Symbol>, names: &Names) -> bool {
1648 let Some(name) = name else { return false };
1649 name == names.r#else || name == names.elif || name == names.elifdef || name == names.elifndef
1650}
1651
1652fn is_include(name: Option<Symbol>, names: &Names) -> bool {
1654 name == Some(names.include) || name == Some(names.include_next) || name == Some(names.embed)
1655}
1656
1657fn is_directive(tok: PpToken) -> bool {
1659 tok.flags.has(TokenFlags::START_OF_LINE) && tok.punct() == Some(Punct::Hash)
1660}
1661
1662fn ident_of(tok: &PpToken) -> Option<Symbol> {
1663 match tok.kind {
1664 PpTokenKind::Ident => tok.value,
1665 _ => None,
1666 }
1667}
1668
1669fn last_span(tokens: &[PpToken]) -> Span {
1670 tokens.last().map_or(Span::DUMMY, |t| t.span)
1671}
1672
1673fn decimal(tok: &PpToken, interner: &Interner) -> Option<u32> {
1679 if tok.kind != PpTokenKind::Number {
1680 return None;
1681 }
1682 let text = interner.resolve(tok.value?);
1683 if text.is_empty() || !text.bytes().all(|b| b.is_ascii_digit()) {
1684 return None;
1685 }
1686 text.parse::<u32>().ok().filter(|n| *n <= 2_147_483_647)
1689}
1690
1691fn number(value: bool, flags: TokenFlags, span: Span, interner: &mut Interner) -> Tok {
1693 let sym = interner.intern(if value { "1" } else { "0" });
1694 Tok::synthetic(PpTokenKind::Number, Some(sym), flags, span)
1695}
1696
1697fn spell_line(tokens: &[PpToken], interner: &Interner) -> String {
1699 let mut out = String::new();
1700 for (index, tok) in tokens.iter().enumerate() {
1701 if index > 0 && tok.flags.has(TokenFlags::LEADING_SPACE) {
1702 out.push(' ');
1703 }
1704 match tok.value {
1705 Some(sym) => out.push_str(interner.resolve(sym)),
1706 None => {
1707 if let Some(p) = tok.punct() {
1708 out.push_str(p.as_str());
1709 }
1710 }
1711 }
1712 }
1713 out
1714}
1715
1716fn identifier_in(text: PpToken, interner: &mut Interner) -> Option<Symbol> {
1721 let literal = interner.resolve(text.value?).to_string();
1722 let (tokens, _) = tokenize(destringize(&literal).as_bytes(), 0, Options::new(), interner);
1723 let mut real = tokens.into_iter().filter(|t| !t.is_eof());
1724 let first = real.next()?;
1725 if first.kind != PpTokenKind::Ident || real.next().is_some() {
1726 return None;
1727 }
1728 first.value
1729}
1730
1731fn destringize(literal: &str) -> String {
1736 let body = literal
1737 .trim_start_matches(['L', 'u', 'U', '8'])
1738 .strip_prefix('"')
1739 .and_then(|s| s.strip_suffix('"'))
1740 .unwrap_or(literal);
1741 let mut out = String::with_capacity(body.len());
1742 let mut chars = body.chars();
1743 while let Some(c) = chars.next() {
1744 if c != '\\' {
1745 out.push(c);
1746 continue;
1747 }
1748 match chars.next() {
1749 Some('"') => out.push('"'),
1750 Some('\\') => out.push('\\'),
1751 Some(other) => {
1752 out.push('\\');
1753 out.push(other);
1754 }
1755 None => out.push('\\'),
1756 }
1757 }
1758 out
1759}
1760
1761fn arguments(line: &[Tok], at: usize) -> Option<(&[Tok], usize)> {
1767 if !line.get(at)?.is(Punct::LParen) {
1768 return None;
1769 }
1770 let mut depth = 1u32;
1771 let mut end = at + 1;
1772 while end < line.len() {
1773 if line[end].is(Punct::LParen) {
1774 depth += 1;
1775 } else if line[end].is(Punct::RParen) {
1776 depth -= 1;
1777 if depth == 0 {
1778 return Some((&line[at + 1..end], end + 1));
1779 }
1780 }
1781 end += 1;
1782 }
1783 None
1784}
1785
1786fn attribute_name<'i>(operand: &[Tok], interner: &'i Interner) -> Option<&'i str> {
1792 let name = match operand {
1793 [one] => one,
1794 [_, scope, name] if scope.is(Punct::ColonColon) => name,
1795 _ => return None,
1796 };
1797 name.ident().map(|sym| interner.resolve(sym))
1798}
1799
1800#[derive(Debug, Clone, Copy, PartialEq, Eq)]
1807enum Pass {
1808 Headers,
1810 Rest,
1813 Text,
1815}
1816
1817impl Pass {
1818 fn answers(self, op: Op) -> bool {
1820 match self {
1821 Pass::Headers => op.is_header(),
1822 Pass::Rest => true,
1823 Pass::Text => !op.is_header(),
1824 }
1825 }
1826}
1827
1828#[derive(Debug, Clone, Copy, PartialEq, Eq)]
1830enum Op {
1831 Include,
1833 IncludeNext,
1835 Embed,
1838 BuildingModule,
1840 Table(Kind),
1842}
1843
1844impl Op {
1845 fn is_header(self) -> bool {
1847 matches!(self, Op::Include | Op::IncludeNext | Op::Embed)
1848 }
1849}
1850
1851struct HasOps {
1856 ops: [(Symbol, Op); 9],
1857 range: (Symbol, Symbol),
1864}
1865
1866impl HasOps {
1867 fn new(interner: &mut Interner) -> HasOps {
1868 let ops = [
1869 (interner.intern("__has_include"), Op::Include),
1870 (interner.intern("__has_include_next"), Op::IncludeNext),
1871 (interner.intern("__has_embed"), Op::Embed),
1872 (interner.intern("__has_attribute"), Op::Table(Kind::Attribute)),
1873 (interner.intern("__has_c_attribute"), Op::Table(Kind::CAttribute)),
1874 (interner.intern("__has_builtin"), Op::Table(Kind::Builtin)),
1875 (interner.intern("__has_feature"), Op::Table(Kind::Feature)),
1876 (interner.intern("__has_extension"), Op::Table(Kind::Extension)),
1877 (interner.intern("__building_module"), Op::BuildingModule),
1878 ];
1879 let mut range = (ops[0].0, ops[0].0);
1880 for &(sym, _) in &ops {
1881 range = (range.0.min(sym), range.1.max(sym));
1882 }
1883 HasOps { ops, range }
1884 }
1885
1886 #[inline]
1888 fn op(&self, name: Symbol) -> Option<Op> {
1889 if name < self.range.0 || name > self.range.1 {
1890 return None;
1891 }
1892 self.ops.iter().find(|(sym, _)| *sym == name).map(|(_, op)| *op)
1893 }
1894}
1895
1896struct Names {
1902 define: Symbol,
1903 undef: Symbol,
1904 r#if: Symbol,
1905 ifdef: Symbol,
1906 ifndef: Symbol,
1907 elif: Symbol,
1908 elifdef: Symbol,
1909 elifndef: Symbol,
1910 r#else: Symbol,
1911 endif: Symbol,
1912 line: Symbol,
1913 error: Symbol,
1914 warning: Symbol,
1915 pragma: Symbol,
1916 include: Symbol,
1917 include_next: Symbol,
1918 embed: Symbol,
1919 defined: Symbol,
1920 once: Symbol,
1921 push_macro: Symbol,
1922 pop_macro: Symbol,
1923 pragma_op: Symbol,
1924 has: HasOps,
1925}
1926
1927impl Names {
1928 fn new(interner: &mut Interner) -> Names {
1929 Names {
1930 define: interner.intern("define"),
1931 undef: interner.intern("undef"),
1932 r#if: interner.intern("if"),
1933 ifdef: interner.intern("ifdef"),
1934 ifndef: interner.intern("ifndef"),
1935 elif: interner.intern("elif"),
1936 elifdef: interner.intern("elifdef"),
1937 elifndef: interner.intern("elifndef"),
1938 r#else: interner.intern("else"),
1939 endif: interner.intern("endif"),
1940 line: interner.intern("line"),
1941 error: interner.intern("error"),
1942 warning: interner.intern("warning"),
1943 pragma: interner.intern("pragma"),
1944 include: interner.intern("include"),
1945 include_next: interner.intern("include_next"),
1946 embed: interner.intern("embed"),
1947 defined: interner.intern("defined"),
1948 once: interner.intern("once"),
1949 push_macro: interner.intern("push_macro"),
1950 pop_macro: interner.intern("pop_macro"),
1951 pragma_op: interner.intern("_Pragma"),
1952 has: HasOps::new(interner),
1953 }
1954 }
1955}
1956
1957#[cfg(test)]
1958mod tests {
1959 use rucc_diag::{Severity, SourceMap};
1960 use rucc_session::{MemoryFileSystem, SearchPath};
1961
1962 use super::*;
1963 use rucc_session::Std;
1964
1965 use crate::predef::Timestamp;
1966
1967 fn slashes(text: &str) -> String {
1975 text.replace("\\\\", "/").replace('\\', "/")
1976 }
1977
1978 struct Run {
1979 interner: Interner,
1980 sources: SourceMap,
1981 fs: MemoryFileSystem,
1982 search: SearchPath,
1983 pp: Preprocessor,
1984 pedantic: bool,
1986 }
1987
1988 impl Run {
1989 fn new() -> Run {
1990 Run {
1991 interner: Interner::new(),
1992 sources: SourceMap::new(),
1993 fs: MemoryFileSystem::new(),
1994 search: SearchPath::new(),
1995 pp: Preprocessor::new(),
1996 pedantic: false,
1997 }
1998 }
1999
2000 fn pedantic() -> Run {
2002 Run { pedantic: true, ..Run::new() }
2003 }
2004
2005 fn mapping(map: &[(&str, &str)]) -> Run {
2007 let mut list = PrefixMap::new();
2008 for (old, new) in map {
2009 list.push(*old, *new);
2010 }
2011 Run { pp: Preprocessor::with_prefix_map(list), ..Run::new() }
2012 }
2013
2014 fn file(&mut self, path: &str, contents: &str) {
2016 self.fs.insert(path, contents.as_bytes().to_vec());
2017 }
2018
2019 fn bytes(&mut self, path: &str, contents: &[u8]) {
2022 self.fs.insert(path, contents.to_vec());
2023 }
2024
2025 fn dir(&mut self, path: &str) {
2027 self.search.push_bracket(path);
2028 }
2029
2030 fn predefine(&mut self, triple: &str, opts: &Predef) {
2032 let target = TargetInfo::new(triple.parse().expect("a supported triple"));
2033 let mut cx =
2034 Context::new(&mut self.interner, &mut self.sources, &self.fs, &self.search);
2035 self.pp.predefine(&target, opts, &mut cx).expect("the map has room");
2036 }
2037
2038 fn go(&mut self, src: &str) -> String {
2040 self.go_named("/main.c", src)
2041 }
2042
2043 fn raw(&mut self, src: &str) -> Vec<Tok> {
2045 let file = self.sources.add("/main.c", src.as_bytes().to_vec()).expect("room");
2046 let pedantic = self.pedantic;
2047 let mut cx =
2048 Context::new(&mut self.interner, &mut self.sources, &self.fs, &self.search);
2049 cx.pedantic = pedantic;
2050 self.pp.run(file, &mut cx)
2051 }
2052
2053 fn preinclude(&mut self, files: &[Preinclude]) -> String {
2055 let mut out = Vec::new();
2056 {
2057 let mut cx =
2058 Context::new(&mut self.interner, &mut self.sources, &self.fs, &self.search);
2059 self.pp.preinclude(files, &mut out, &mut cx).expect("the map has room");
2060 }
2061 self.spell(&out)
2062 }
2063
2064 fn go_named(&mut self, path: &str, src: &str) -> String {
2066 let file = self.sources.add(path, src.as_bytes().to_vec()).expect("the map has room");
2067 let pedantic = self.pedantic;
2068 let out = {
2069 let mut cx =
2070 Context::new(&mut self.interner, &mut self.sources, &self.fs, &self.search);
2071 cx.pedantic = pedantic;
2072 self.pp.run(file, &mut cx)
2073 };
2074 self.spell(&out)
2075 }
2076
2077 fn spell(&self, out: &[Tok]) -> String {
2079 let mut text = String::new();
2080 for (at, tok) in out.iter().enumerate() {
2081 let spaced = tok.flags.has(TokenFlags::LEADING_SPACE)
2082 || tok.flags.has(TokenFlags::START_OF_LINE);
2083 if at > 0 && spaced {
2084 text.push(' ');
2085 }
2086 match tok.kind {
2087 PpTokenKind::Punct(p) => text.push_str(p.as_str()),
2088 _ => text.push_str(
2089 self.interner.resolve(tok.value.expect("every non-punctuator interns")),
2090 ),
2091 }
2092 }
2093 text
2094 }
2095
2096 fn files(&self) -> usize {
2100 self.sources.files().len()
2101 }
2102
2103 fn messages(&mut self) -> Vec<String> {
2104 self.pp.take_diagnostics().into_iter().map(|d| d.message).collect()
2105 }
2106
2107 fn severities(&mut self) -> Vec<Severity> {
2108 self.pp.diagnostics().iter().map(|d| d.severity).collect()
2109 }
2110 }
2111
2112 fn clean(src: &str) -> String {
2113 let mut run = Run::new();
2114 let text = run.go(src);
2115 assert!(run.messages().is_empty(), "expected no diagnostics from {src:?}");
2116 text
2117 }
2118
2119 #[test]
2120 fn a_taken_branch_is_kept_and_the_other_is_not() {
2121 assert_eq!(clean("#if 1\nyes\n#else\nno\n#endif\n"), "yes");
2122 assert_eq!(clean("#if 0\nyes\n#else\nno\n#endif\n"), "no");
2123 }
2124
2125 #[test]
2126 fn ifdef_and_ifndef_ask_the_macro_table() {
2127 assert_eq!(clean("#define F 1\n#ifdef F\nyes\n#endif\n"), "yes");
2128 assert_eq!(clean("#ifdef F\nyes\n#endif\n"), "");
2129 assert_eq!(clean("#ifndef F\nyes\n#endif\n"), "yes");
2130 assert_eq!(clean("#define F 1\n#if 0\na\n#elifdef F\nb\n#endif\n"), "b");
2132 assert_eq!(clean("#if 0\na\n#elifndef F\nb\n#endif\n"), "b");
2133 }
2134
2135 #[test]
2136 fn only_the_first_true_branch_of_a_chain_is_taken() {
2137 assert_eq!(clean("#if 0\na\n#elif 1\nb\n#elif 1\nc\n#else\nd\n#endif\n"), "b");
2138 assert_eq!(clean("#if 0\na\n#elif 0\nb\n#else\nc\n#endif\n"), "c");
2139 }
2140
2141 #[test]
2142 fn a_branch_after_one_that_was_taken_is_not_evaluated() {
2143 assert_eq!(clean("#if 1\na\n#elif 1/0\nb\n#endif\n"), "a");
2146 }
2147
2148 #[test]
2149 fn a_skipped_region_is_not_read_for_anything_but_nesting() {
2150 let src = "#if 0\nthis is not C at all\n#frobnicate\n#define\n#if 1\ninner\n#endif\n#endif\nafter\n";
2152 assert_eq!(clean(src), "after");
2153 }
2154
2155 #[test]
2156 fn nesting_inside_a_dead_branch_stays_balanced() {
2157 let src = "#if 0\n#ifdef X\na\n#else\nb\n#endif\n#else\nc\n#endif\n";
2158 assert_eq!(clean(src), "c");
2159 }
2160
2161 #[test]
2162 fn defined_works_in_both_spellings_and_before_expansion() {
2163 assert_eq!(clean("#define F 0\n#if defined F\nyes\n#endif\n"), "yes");
2164 assert_eq!(clean("#define F 0\n#if defined(F)\nyes\n#endif\n"), "yes");
2165 assert_eq!(clean("#if defined(F)\nyes\n#endif\n"), "");
2166 assert_eq!(clean("#define F 0\n#if defined F && !F\nyes\n#endif\n"), "yes");
2169 }
2170
2171 #[test]
2172 fn a_macro_may_write_the_defined_operator_itself() {
2173 assert_eq!(clean("#define F 0\n#define D defined F\n#if D\nyes\n#endif\n"), "yes");
2177 assert_eq!(clean("#define F 0\n#define D defined(F)\n#if D\nyes\n#endif\n"), "yes");
2178 assert_eq!(clean("#define D defined(F)\n#if D\nyes\n#else\nno\n#endif\n"), "no");
2179 }
2180
2181 #[test]
2182 fn the_name_a_macro_wrote_the_defined_operator_about_is_not_expanded() {
2183 assert_eq!(clean("#define F 1\n#define D defined(F)\n#if D\nyes\n#endif\n"), "yes");
2188 assert_eq!(clean("#define F\n#define D defined(F)\n#if D\nyes\n#endif\n"), "yes");
2192 let src = "#define MARK_lrotl\n#define HAVE(n) defined(MARK_ ## n)\n\
2194 #if HAVE(lrotl)\nyes\n#endif\n";
2195 assert_eq!(clean(src), "yes");
2196 }
2197
2198 #[test]
2199 fn a_defined_a_macro_wrote_is_reported_under_pedantic() {
2200 let mut run = Run::pedantic();
2201 assert_eq!(run.go("#define F 1\n#define D defined(F)\n#if D\nyes\n#endif\n"), "yes");
2202 assert_eq!(run.messages(), vec!["this use of `defined` may not be portable".to_owned()]);
2203 let mut run = Run::pedantic();
2206 assert_eq!(run.go("#define F 1\n#if defined(F)\nyes\n#endif\n"), "yes");
2207 assert!(run.messages().is_empty());
2208 assert_eq!(clean("#define F 1\n#define D defined(F)\n#if D\nyes\n#endif\n"), "yes");
2211 }
2212
2213 #[test]
2214 fn a_defined_a_macro_wrote_badly_is_still_an_error() {
2215 let mut run = Run::new();
2219 run.go("#define D defined\n#if D\nyes\n#endif\n");
2220 assert_eq!(run.messages(), vec!["`defined` without a macro name".to_owned()]);
2221 let mut run = Run::new();
2224 run.go("#define D defined(1)\n#if D\nyes\n#endif\n");
2225 assert_eq!(run.messages()[0], "`defined` without a macro name");
2226 let mut run = Run::new();
2227 run.go("#define D defined(F\n#if D\nyes\n#endif\n");
2228 assert_eq!(run.messages(), vec!["expected `)` after `defined`".to_owned()]);
2229 let mut run = Run::new();
2234 run.go("#define F 0\n#define D(x) defined(x)\n#if D(F)\nyes\n#endif\n");
2235 assert_eq!(run.messages()[0], "`defined` without a macro name");
2236 }
2237
2238 #[test]
2239 fn an_identifier_that_survived_expansion_is_zero() {
2240 assert_eq!(clean("#if NOT_DEFINED_ANYWHERE\nyes\n#else\nno\n#endif\n"), "no");
2241 assert_eq!(clean("#if !NOT_DEFINED_ANYWHERE\nyes\n#endif\n"), "yes");
2242 }
2243
2244 #[test]
2245 fn short_circuiting_keeps_a_guarded_expression_safe() {
2246 assert_eq!(clean("#if defined(F) && 1/F\nyes\n#else\nno\n#endif\n"), "no");
2249 assert_eq!(clean("#if 1 ? 2 : 1/0\nyes\n#endif\n"), "yes");
2250 }
2251
2252 #[test]
2253 fn the_operators_have_the_precedence_they_do_in_c() {
2254 assert_eq!(clean("#if 1 + 2 * 3 == 7\nyes\n#endif\n"), "yes");
2255 assert_eq!(clean("#if (1 + 2) * 3 == 9\nyes\n#endif\n"), "yes");
2256 assert_eq!(clean("#if 1 << 4 == 16\nyes\n#endif\n"), "yes");
2257 assert_eq!(clean("#if -8 / 3 == -2\nyes\n#endif\n"), "yes");
2258 assert_eq!(clean("#if (0xff & 0x0f) == 15\nyes\n#endif\n"), "yes");
2259 }
2260
2261 #[test]
2262 fn an_unsigned_operand_makes_the_whole_comparison_unsigned() {
2263 assert_eq!(clean("#if -1 < 0u\nyes\n#else\nno\n#endif\n"), "no");
2267 assert_eq!(clean("#if -1 < 0\nyes\n#else\nno\n#endif\n"), "yes");
2268 }
2269
2270 #[test]
2271 fn character_constants_evaluate() {
2272 assert_eq!(clean("#if 'A' == 65\nyes\n#endif\n"), "yes");
2273 assert_eq!(clean("#if '\\n' == 10\nyes\n#endif\n"), "yes");
2274 }
2275
2276 #[test]
2277 fn a_macro_is_expanded_before_the_expression_is_evaluated() {
2278 assert_eq!(clean("#define V 3\n#if V > 2\nyes\n#endif\n"), "yes");
2279 assert_eq!(clean("#define M(a) ((a) * 2)\n#if M(3) == 6\nyes\n#endif\n"), "yes");
2280 }
2281
2282 #[test]
2283 fn an_invocation_may_span_lines_within_a_run_of_text() {
2284 assert_eq!(clean("#define M(a, b) a + b\nM(1,\n2)\n"), "1 + 2");
2285 }
2286
2287 #[test]
2288 fn a_comment_across_lines_inside_a_definition_does_not_end_it() {
2289 let src = "#define F(x) \\\n ((x) + \\\n/* runs\nonto two lines */ \\\n 1)\nF(2)\n";
2290 assert_eq!(clean(src), "((2) + 1)");
2291 assert_eq!(clean("#define G 1 /* a\nb */ + 2\nG\n"), "1 + 2");
2292 assert_eq!(clean("#/* a\n*/define H 4\nH\n"), "4");
2294 }
2295
2296 #[test]
2297 fn a_hash_after_a_comment_across_lines_is_a_directive_only_if_the_comment_began_the_line() {
2298 assert_eq!(clean("/* a\nb */ #define X 3\nX\n"), "3");
2299 assert!(clean("int x; /* a\nb */ #define Y 3\nY\n").ends_with(" 3 Y"));
2300 }
2301
2302 #[test]
2303 fn undef_removes_a_definition() {
2304 assert_eq!(clean("#define F 1\n#undef F\n#ifdef F\nyes\n#else\nno\n#endif\n"), "no");
2305 assert_eq!(clean("#undef NEVER_DEFINED\nok\n"), "ok");
2308 }
2309
2310 #[test]
2311 fn some_names_cannot_be_undefined() {
2312 let mut run = Run::new();
2313 run.go("#undef defined\n");
2314 assert_eq!(run.messages(), vec!["`defined` cannot be undefined".to_owned()]);
2315 }
2316
2317 #[test]
2318 fn error_reports_the_rest_of_the_line() {
2319 let mut run = Run::new();
2320 run.go("#if 0\n#error not this one\n#else\n#error unsupported target\n#endif\n");
2321 assert_eq!(run.messages(), vec!["unsupported target".to_owned()]);
2322 }
2323
2324 #[test]
2325 fn warning_is_a_warning() {
2326 let mut run = Run::new();
2327 run.go("#warning this is fine\n");
2328 assert_eq!(run.severities(), vec![Severity::Warning]);
2329 assert_eq!(run.messages(), vec!["this is fine".to_owned()]);
2330 }
2331
2332 #[test]
2333 fn an_unterminated_conditional_is_reported() {
2334 let mut run = Run::new();
2335 assert_eq!(run.go("#if 1\nyes\n"), "yes");
2336 assert_eq!(run.messages(), vec!["unterminated `#if`".to_owned()]);
2337 }
2338
2339 #[test]
2340 fn a_conditional_without_an_if_is_reported() {
2341 let mut run = Run::new();
2342 run.go("#endif\n");
2343 assert_eq!(run.messages(), vec!["`#endif` without `#if`".to_owned()]);
2344
2345 let mut run = Run::new();
2346 run.go("#if 1\n#else\n#else\n#endif\n");
2347 assert_eq!(run.messages(), vec!["a second `#else`".to_owned()]);
2348
2349 let mut run = Run::new();
2350 run.go("#if 1\n#else\n#elif 1\n#endif\n");
2351 assert_eq!(run.messages(), vec!["`#elif` after `#else`".to_owned()]);
2352 }
2353
2354 #[test]
2355 fn tokens_after_endif_are_a_warning_rather_than_an_error() {
2356 let mut run = Run::new();
2359 assert_eq!(run.go("#if 1\nyes\n#endif FOO\n"), "yes");
2360 assert_eq!(run.severities(), vec![Severity::Warning]);
2361 assert_eq!(run.messages(), vec!["extra tokens after `#endif`".to_owned()]);
2362 }
2363
2364 #[test]
2365 fn the_null_directive_does_nothing() {
2366 assert_eq!(clean("#\na\n#\nb\n"), "a b");
2367 }
2368
2369 #[test]
2370 fn an_unknown_directive_is_an_error_when_the_region_is_live() {
2371 let mut run = Run::new();
2372 run.go("#frobnicate\n");
2373 assert_eq!(run.messages(), vec!["invalid preprocessing directive".to_owned()]);
2374 }
2375
2376 #[test]
2377 fn line_is_recorded_for_the_source_map() {
2378 let mut run = Run::new();
2379 run.go("#line 42 \"other.c\"\n");
2380 assert!(run.messages().is_empty());
2381 let recorded = run.pp.line_directives();
2382 assert_eq!(recorded.len(), 1);
2383 assert_eq!(recorded[0].line, 42);
2384 let file = recorded[0].file.expect("a file name was given");
2385 assert_eq!(run.interner.resolve(file), "\"other.c\"");
2386 }
2387
2388 #[test]
2389 fn line_moves_what_line_and_file_the_lines_after_it_are_on() {
2390 let mut run = Run::new();
2391 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
2392 assert_eq!(run.go("#line 1000\n__LINE__ __FILE__\n__LINE__\n"), "1000 \"/main.c\" 1001");
2393 }
2394
2395 #[test]
2396 fn a_line_marker_moves_the_lines_after_it_the_way_line_does() {
2397 let mut run = Run::new();
2398 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
2399 assert_eq!(run.go("# 200 \"xyz\"\n__FILE__ __LINE__\n"), "\"xyz\" 200");
2400 }
2401
2402 #[test]
2403 fn a_line_marker_with_no_name_leaves_the_name_alone() {
2404 let mut run = Run::new();
2405 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
2406 assert_eq!(run.go("# 20\n__FILE__ __LINE__\n"), "\"/main.c\" 20");
2407 }
2408
2409 #[test]
2410 fn a_line_marker_may_say_line_zero() {
2411 let mut run = Run::new();
2414 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
2415 assert_eq!(run.go("# 0 \"xyz\"\n__LINE__\n"), "0");
2416 }
2417
2418 #[test]
2419 fn entering_and_returning_are_a_nesting_the_marker_flags_keep() {
2420 let mut run = Run::new();
2421 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
2422 let text =
2423 run.go("# 200 \"xyz\" 1\n__FILE__\n# 5 \"/main.c\" 2\n__FILE__ __LINE__\n# 9 3 4\n");
2424 assert_eq!(text, "\"xyz\" \"/main.c\" 5");
2425 assert!(run.messages().is_empty());
2426 }
2427
2428 #[test]
2429 fn returning_to_a_file_nothing_was_ever_in_is_ignored() {
2430 let mut run = Run::new();
2431 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
2432 assert_eq!(run.go("# 200 \"xyz\" 2 3\n__FILE__ __LINE__\n"), "\"/main.c\" 2");
2433 assert_eq!(
2434 run.messages(),
2435 vec!["file `xyz` linemarker ignored due to incorrect nesting".to_owned()]
2436 );
2437 }
2438
2439 #[test]
2440 fn a_flag_that_is_not_one_of_the_four_is_an_error() {
2441 let mut run = Run::new();
2442 run.go("# 20 \"a\" 7\n");
2443 assert_eq!(run.messages(), vec!["invalid flag `7` in line directive".to_owned()]);
2444 }
2445
2446 #[test]
2447 fn a_hash_and_something_that_is_not_a_line_number_is_still_an_unknown_directive() {
2448 let mut run = Run::new();
2450 run.go("# 1.5 \"a\"\n");
2451 assert_eq!(run.messages(), vec!["invalid preprocessing directive".to_owned()]);
2452 }
2453
2454 #[test]
2455 fn a_name_on_the_directive_is_the_name_from_there_on() {
2456 let mut run = Run::new();
2457 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
2458 assert_eq!(run.go("#line 7 \"gen.y\"\n__FILE__ __LINE__\n"), "\"gen.y\" 7");
2459 }
2460
2461 #[test]
2462 fn a_directive_with_no_name_keeps_the_one_already_in_force() {
2463 let mut run = Run::new();
2464 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
2465 assert_eq!(run.go("#line 7 \"gen.y\"\n#line 20\n__FILE__ __LINE__\n"), "\"gen.y\" 20");
2466 }
2467
2468 #[test]
2469 fn the_number_is_expanded_first_because_line_plus_one_is_real_code() {
2470 let mut run = Run::new();
2471 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
2472 assert_eq!(run.go("#define WHERE 300\n#line WHERE\n__LINE__\n"), "300");
2473 }
2474
2475 #[test]
2476 fn a_directive_in_a_header_does_not_move_the_file_that_included_it() {
2477 let mut run = Run::new();
2478 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
2479 run.file("/h.h", "#line 500\n__LINE__\n");
2480 run.dir("/");
2481 assert_eq!(run.go("#include <h.h>\n__LINE__\n"), "500 2");
2482 }
2483
2484 #[test]
2485 fn extra_tokens_after_the_file_name_are_a_warning_and_not_an_error() {
2486 let mut run = Run::new();
2487 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
2488 assert_eq!(run.go("#line 7 \"gen.y\" and more\n__LINE__\n"), "7");
2489 assert_eq!(run.messages(), vec!["extra tokens after `#line`".to_owned()]);
2490 }
2491
2492 #[test]
2493 fn a_line_number_out_of_range_is_refused() {
2494 let mut run = Run::new();
2495 run.go("#line 0\n");
2496 assert_eq!(run.messages(), vec!["`#line` number is out of range".to_owned()]);
2497
2498 let mut run = Run::new();
2499 run.go("#line notanumber\n");
2500 assert_eq!(run.messages(), vec!["`#line` needs a decimal line number".to_owned()]);
2501 }
2502
2503 #[test]
2504 fn a_pragma_passes_through_unchanged() {
2505 assert_eq!(clean("#pragma pack(1)\nint x;\n"), "#pragma pack(1) int x;");
2506 }
2507
2508 #[test]
2513 fn the_space_between_the_hash_and_the_word_comes_off_a_pragma_that_is_indented() {
2514 assert_eq!(clean("#if 1\n# pragma pack(1)\n#endif\n"), "#pragma pack(1)");
2515 assert_eq!(clean("# pragma pack( 1 )\n"), "#pragma pack( 1 )", "the rest is kept");
2516 }
2517
2518 #[test]
2519 fn the_pragma_operator_becomes_a_pragma() {
2520 assert_eq!(
2521 clean("_Pragma(\"GCC visibility push(default)\")\nint x;\n"),
2522 "#pragma GCC visibility push(default) int x;"
2523 );
2524 }
2525
2526 #[test]
2527 fn the_pragma_operator_works_from_inside_a_macro() {
2528 let src = "#define PUSH _Pragma(\"pack(push)\")\nPUSH\nint x;\n";
2531 assert_eq!(clean(src), "#pragma pack(push) int x;");
2532 }
2533
2534 #[test]
2538 fn what_follows_a_pragma_operator_starts_a_line() {
2539 let mut run = Run::new();
2540 let out = run.raw("int x; _Pragma(\"pack(1)\") int y;\n");
2541 let starts: Vec<_> =
2542 out.iter().map(|tok| tok.flags.has(TokenFlags::START_OF_LINE)).collect();
2543 assert_eq!(
2546 starts,
2547 vec![true, false, false, true, false, false, false, false, false, true, false, false]
2548 );
2549 }
2550
2551 #[test]
2556 fn a_macro_that_came_to_nothing_hands_on_the_line_it_started() {
2557 let mut run = Run::new();
2558 let out = run.raw("#define E\nint x;\nE int y;\n");
2559 let starts: Vec<_> =
2560 out.iter().map(|tok| tok.flags.has(TokenFlags::START_OF_LINE)).collect();
2561 assert_eq!(starts, vec![true, false, false, true, false, false]);
2563 }
2564
2565 #[test]
2567 fn a_run_of_macros_that_came_to_nothing_hands_the_line_along() {
2568 let mut run = Run::new();
2569 let out = run.raw("#define E\n#define F(x)\nE F(1) E int y;\n");
2570 let starts: Vec<_> =
2571 out.iter().map(|tok| tok.flags.has(TokenFlags::START_OF_LINE)).collect();
2572 assert_eq!(starts, vec![true, false, false]);
2573 }
2574
2575 #[test]
2576 fn a_pragma_operator_that_is_not_given_a_string_is_reported() {
2577 let mut run = Run::new();
2578 run.go("_Pragma(x)\n");
2579 assert_eq!(run.messages(), vec!["`_Pragma` takes a single string literal".to_owned()]);
2580 }
2581
2582 #[test]
2583 fn an_include_reads_the_file_it_names() {
2584 let mut run = Run::new();
2585 run.file("/dir/one.h", "int from_the_header;\n");
2586 run.dir("/dir");
2587 assert_eq!(run.go("#include <one.h>\nint after;\n"), "int from_the_header; int after;");
2588 assert!(run.messages().is_empty());
2589 }
2590
2591 #[test]
2592 fn a_quoted_include_looks_next_to_the_including_file_first() {
2593 let mut run = Run::new();
2594 run.file("/local.h", "beside\n");
2595 run.file("/dir/local.h", "on the path\n");
2596 run.dir("/dir");
2597 assert_eq!(run.go("#include \"local.h\"\n"), "beside");
2598 assert!(run.messages().is_empty());
2599 }
2600
2601 #[test]
2602 fn an_angled_include_does_not_look_next_to_the_including_file() {
2603 let mut run = Run::new();
2604 run.file("/local.h", "beside\n");
2605 run.file("/dir/local.h", "on the path\n");
2606 run.dir("/dir");
2607 assert_eq!(run.go("#include <local.h>\n"), "on the path");
2608 }
2609
2610 #[test]
2611 fn a_macro_defined_in_a_header_is_visible_after_the_include() {
2612 let mut run = Run::new();
2613 run.file("/dir/defs.h", "#define N 42\n");
2614 run.dir("/dir");
2615 assert_eq!(run.go("#include <defs.h>\nint a = N;\n"), "int a = 42;");
2616 assert!(run.messages().is_empty());
2617 }
2618
2619 #[test]
2620 fn an_include_guard_keeps_the_second_read_empty() {
2621 let mut run = Run::new();
2622 run.file("/dir/g.h", "#ifndef G\n#define G\nonce\n#endif\n");
2623 run.dir("/dir");
2624 assert_eq!(run.go("#include <g.h>\n#include <g.h>\n"), "once");
2625 assert!(run.messages().is_empty());
2626 assert_eq!(run.files(), 2, "the second include is not opened at all");
2627 }
2628
2629 fn named(name: &str, macros_only: bool) -> Preinclude {
2630 Preinclude { name: name.to_owned(), macros_only }
2631 }
2632
2633 #[test]
2634 fn a_command_line_include_contributes_its_text_and_an_imacros_contributes_none() {
2635 let mut run = Run::new();
2636 run.file("i.h", "from_include\n#define I 1\n");
2637 run.file("m.h", "from_macros\n#define M 1\n");
2638 assert_eq!(run.preinclude(&[named("i.h", false), named("m.h", true)]), "from_include");
2639 assert_eq!(run.go("I M\n"), "1 1");
2641 }
2642
2643 #[test]
2644 fn every_imacros_runs_before_every_include_whatever_order_the_command_line_was_in() {
2645 for files in
2648 [[named("i.h", false), named("m.h", true)], [named("m.h", true), named("i.h", false)]]
2649 {
2650 let mut run = Run::new();
2651 run.file("i.h", "#ifdef M\nsaw_it\n#else\nmissed_it\n#endif\n");
2652 run.file("m.h", "#define M 1\n");
2653 assert_eq!(run.preinclude(&files), "saw_it");
2654 }
2655 }
2656
2657 #[test]
2658 fn a_header_read_for_its_macros_is_not_read_again_by_an_include_that_its_guard_covers() {
2659 let mut run = Run::new();
2662 run.file("/dir/g.h", "#ifndef G\n#define G\ndeclarations\n#endif\n");
2663 run.dir("/dir");
2664 assert_eq!(run.preinclude(&[named("/dir/g.h", true)]), "");
2665 assert_eq!(run.go("#include <g.h>\n"), "");
2666 assert!(run.messages().is_empty());
2667 }
2668
2669 #[test]
2670 fn a_command_line_include_is_a_dependency_and_is_named_before_the_headers_it_reads() {
2671 let mut run = Run::new();
2672 run.file("i.h", "#include \"deep.h\"\n");
2673 run.file("deep.h", "\n");
2674 run.file("m.h", "\n");
2675 run.preinclude(&[named("i.h", false), named("m.h", true)]);
2676 let names: Vec<String> =
2677 run.pp.dependencies().iter().map(|d| d.path.to_string_lossy().into_owned()).collect();
2678 let names: Vec<String> = names.iter().map(|n| n.replace('\\', "/")).collect();
2679 assert_eq!(names, ["m.h", "i.h", "deep.h"]);
2680 }
2681
2682 #[test]
2683 fn a_prerequisite_is_spelled_without_the_dot_the_search_path_was_written_with() {
2684 let mut run = Run::new();
2688 run.file("d/f.h", "\n");
2689 run.dir("./d");
2690 run.go("#include <f.h>\n");
2691 let names: Vec<String> =
2692 run.pp.dependencies().iter().map(|d| d.path.to_string_lossy().into_owned()).collect();
2693 assert_eq!(names.iter().map(|n| n.replace('\\', "/")).collect::<Vec<_>>(), ["d/f.h"]);
2694 }
2695
2696 #[test]
2697 fn a_command_line_include_that_is_nowhere_is_reported_against_the_flag_that_named_it() {
2698 let mut run = Run::new();
2699 assert_eq!(run.preinclude(&[named("nope.h", false)]), "");
2700 assert_eq!(run.messages(), ["`nope.h` file not found"]);
2701 }
2702
2703 #[test]
2704 fn the_other_spelling_of_a_guard_is_recognised_too() {
2705 for guard in ["#if !defined(G)", "#if !defined G"] {
2706 let mut run = Run::new();
2707 run.file("/dir/g.h", &format!("{guard}\n#define G\nonce\n#endif\n"));
2708 run.dir("/dir");
2709 assert_eq!(run.go("#include <g.h>\n#include <g.h>\n"), "once");
2710 assert_eq!(run.files(), 2, "{guard} should be a guard");
2711 }
2712 }
2713
2714 #[test]
2715 fn a_conditional_that_is_not_a_guard_does_not_skip_anything() {
2716 let mut run = Run::new();
2719 run.file("/dir/g.h", "#ifndef G\ntwice\n#endif\n");
2720 run.dir("/dir");
2721 assert_eq!(run.go("#include <g.h>\n#include <g.h>\n"), "twice twice");
2722 assert_eq!(run.files(), 3);
2723 }
2724
2725 #[test]
2726 fn a_file_whose_opening_conditional_has_another_branch_is_read_again() {
2727 let mut run = Run::new();
2734 let file = "#ifndef G\n#define G\nfirst\n#elif !defined H\n#define H\nsecond\n#else\nthird\n#endif\n";
2735 run.file("/dir/g.h", file);
2736 run.dir("/dir");
2737 let out = run.go("#include <g.h>\n#include <g.h>\n#include <g.h>\n");
2738 assert_eq!(out, "first second third");
2739 assert_eq!(run.files(), 4, "the file is opened once for each include");
2740 }
2741
2742 #[test]
2743 fn a_branch_inside_the_guard_is_not_the_guard_having_a_branch() {
2744 let mut run = Run::new();
2747 let file = "#ifndef G\n#define G\n#if 0\nno\n#else\nonce\n#endif\n#endif\n";
2748 run.file("/dir/g.h", file);
2749 run.dir("/dir");
2750 assert_eq!(run.go("#include <g.h>\n#include <g.h>\n"), "once");
2751 assert_eq!(run.files(), 2, "the second include is skipped");
2752 }
2753
2754 #[test]
2755 fn a_token_outside_the_guard_stops_it_being_a_guard() {
2756 let mut run = Run::new();
2757 run.file("/dir/g.h", "#ifndef G\n#define G\n#endif\nalways\n");
2758 run.dir("/dir");
2759 assert_eq!(run.go("#include <g.h>\n#include <g.h>\n"), "always always");
2760 assert_eq!(run.files(), 3);
2761 }
2762
2763 #[test]
2764 fn pragma_once_skips_the_second_read_and_does_not_reach_the_output() {
2765 let mut run = Run::new();
2766 run.file("/dir/o.h", "#pragma once\nonce\n");
2767 run.dir("/dir");
2768 assert_eq!(run.go("#include <o.h>\n#include <o.h>\n"), "once");
2769 assert!(run.messages().is_empty());
2770 assert_eq!(run.files(), 2);
2771 }
2772
2773 #[test]
2774 fn pragma_once_in_the_main_file_is_a_warning_and_is_still_applied() {
2775 let mut run = Run::new();
2779 let src = "#pragma once\n#include <s.c>\nbody\n";
2780 run.file("/dir/s.c", src);
2781 run.dir("/dir");
2782 assert_eq!(run.go_named("/dir/s.c", src), "body");
2783 assert_eq!(run.severities(), vec![Severity::Warning]);
2784 assert_eq!(run.messages(), vec!["`#pragma once` in the main file".to_owned()]);
2785 assert_eq!(run.files(), 1);
2786 }
2787
2788 #[test]
2789 fn pragma_once_holds_across_two_spellings_of_the_one_path() {
2790 let mut run = Run::new();
2793 run.file("dir/s.c", "#pragma once\nbody\n");
2794 run.dir(".");
2795 assert_eq!(run.go("#include <dir/s.c>\n#include <dir/s.c>\n"), "body");
2796 assert!(run.messages().is_empty());
2797 assert_eq!(run.files(), 2);
2798 }
2799
2800 #[test]
2801 fn any_other_pragma_still_passes_through() {
2802 assert_eq!(clean("#pragma once_upon_a_time\n"), "#pragma once_upon_a_time");
2803 }
2804
2805 #[test]
2808 fn push_macro_and_pop_macro_put_a_definition_aside_and_bring_it_back() {
2809 let src = "#define X 1\n#pragma push_macro(\"X\")\n#undef X\n#define X 2\n a X\n#pragma pop_macro(\"X\")\nb X\n";
2810 assert_eq!(clean(src), "a 2 b 1");
2811 }
2812
2813 #[test]
2814 fn a_name_with_no_definition_pushes_and_pops_the_absence() {
2815 let src = "#pragma push_macro(\"X\")\n#define X 1\na X\n#pragma pop_macro(\"X\")\nb X\n";
2818 assert_eq!(clean(src), "a 1 b X");
2819 }
2820
2821 #[test]
2822 fn the_pushes_nest() {
2823 let src = "#define X 1\n#pragma push_macro(\"X\")\n#undef X\n#define X 2\n #pragma push_macro(\"X\")\n#undef X\n#define X 3\n a X\n#pragma pop_macro(\"X\")\nb X\n#pragma pop_macro(\"X\")\nc X\n";
2824 assert_eq!(clean(src), "a 3 b 2 c 1");
2825 }
2826
2827 #[test]
2828 fn a_pop_with_nothing_pushed_says_nothing() {
2829 assert_eq!(clean("#define X 1\n#pragma pop_macro(\"X\")\nX\n"), "1");
2832 assert_eq!(clean("#pragma pop_macro(\"Never\")\nx\n"), "x");
2833 }
2834
2835 #[test]
2836 fn the_pragma_operator_spelling_works_and_takes_effect_where_it_is_written() {
2837 let src = "#define X 1\n_Pragma(\"push_macro(\\\"X\\\")\")\n#undef X\n#define X 2\n a X\n_Pragma(\"pop_macro(\\\"X\\\")\")\nb X\n";
2842 assert_eq!(clean(src), "a 2 b 1");
2843 }
2844
2845 #[test]
2846 fn the_gcc_spelling_is_not_one_of_these_and_passes_through() {
2847 let src = "#define X 1\n#pragma GCC push_macro(\"X\")\n#undef X\n#define X 2\nX\n";
2851 assert_eq!(clean(src), "#pragma GCC push_macro(\"X\") 2");
2852 }
2853
2854 #[test]
2855 fn a_push_macro_that_is_not_the_shape_is_an_error() {
2856 for src in ["#pragma push_macro\n", "#pragma push_macro(X)\n", "#pragma pop_macro()\n"] {
2857 let mut run = Run::new();
2858 run.go(src);
2859 let word = if src.contains("push") { "push" } else { "pop" };
2860 assert_eq!(
2861 run.messages(),
2862 vec![format!("invalid `#pragma {word}_macro` directive")],
2863 "from {src:?}"
2864 );
2865 }
2866 }
2867
2868 #[test]
2869 fn a_string_that_does_not_spell_one_identifier_names_no_macro() {
2870 assert_eq!(clean("#pragma push_macro(\"a b\")\nx\n"), "x");
2873 assert_eq!(clean("#pragma push_macro(\"2\")\nx\n"), "x");
2874 }
2875
2876 #[test]
2877 fn what_follows_the_closing_parenthesis_is_the_usual_warning() {
2878 let mut run = Run::new();
2879 assert_eq!(run.go("#define X 1\n#pragma push_macro(\"X\") junk\nX\n"), "1");
2880 assert_eq!(run.severities(), vec![Severity::Warning]);
2881 assert_eq!(run.messages(), vec!["extra tokens after `#pragma`".to_owned()]);
2882 }
2883
2884 #[test]
2885 fn has_include_answers_from_the_search_path() {
2886 let mut run = Run::new();
2887 run.file("/dir/there.h", "");
2888 run.dir("/dir");
2889 let src = "#if __has_include(<there.h>)\nyes\n#endif\n\
2890 #if __has_include(<gone.h>)\nno\n#endif\n";
2891 assert_eq!(run.go(src), "yes");
2892 assert!(run.messages().is_empty(), "a header that is not there is an answer, not an error");
2893 }
2894
2895 #[test]
2896 fn has_include_asks_the_question_the_include_on_the_same_line_would() {
2897 let mut run = Run::new();
2901 run.file("/beside.h", "");
2902 let src = "#if __has_include(\"beside.h\")\nquoted\n#endif\n\
2903 #if __has_include(<beside.h>)\nangled\n#endif\n";
2904 assert_eq!(run.go(src), "quoted");
2905 }
2906
2907 #[test]
2908 fn has_include_next_starts_where_include_next_would() {
2909 let mut run = Run::new();
2910 run.file("/a/both.h", "#if __has_include_next(<both.h>)\nmore\n#endif\n");
2911 run.file("/b/both.h", "last\n");
2912 run.file("/a/only.h", "#if __has_include_next(<only.h>)\nmore\n#endif\n");
2913 run.dir("/a");
2914 run.dir("/b");
2915 assert_eq!(run.go("#include <both.h>\n"), "more");
2916 assert_eq!(run.go("#include <only.h>\n"), "", "there is nothing after /a to find it in");
2917 }
2918
2919 #[test]
2920 fn the_operand_of_has_include_is_not_macro_expanded() {
2921 let mut run = Run::new();
2924 run.file("/dir/linux/version.h", "");
2925 run.dir("/dir");
2926 let src = "#define linux 1\n#if __has_include(<linux/version.h>)\nyes\n#endif\n";
2927 assert_eq!(run.go(src), "yes");
2928 }
2929
2930 #[test]
2931 fn a_macro_may_expand_to_a_has_include() {
2932 let mut run = Run::new();
2934 run.file("/dir/there.h", "");
2935 run.dir("/dir");
2936 let src = "#define HAVE __has_include(<there.h>)\n#if HAVE\nyes\n#endif\n";
2937 assert_eq!(run.go(src), "yes");
2938 }
2939
2940 #[test]
2941 fn defined_says_the_has_operators_are_there() {
2942 let src = "#if defined(__has_include) && defined __has_builtin\nyes\n#endif\n";
2945 assert_eq!(clean(src), "yes");
2946 assert_eq!(clean("#ifdef __has_attribute\nyes\n#endif\n"), "yes");
2947 }
2948
2949 #[test]
2950 fn has_attribute_answers_out_of_the_matrix() {
2951 assert_eq!(clean("#if __has_attribute(packed)\nyes\n#endif\n"), "yes");
2955 assert_eq!(clean("#if __has_attribute(cold)\nyes\n#endif\n"), "");
2956 assert_eq!(clean("#if __has_attribute(no_such_attribute)\nyes\n#endif\n"), "");
2957 assert_eq!(clean("#if !__has_attribute(cold)\nno\n#endif\n"), "no");
2958 }
2959
2960 #[test]
2961 fn the_scoped_spelling_of_an_attribute_is_the_same_question() {
2962 assert_eq!(clean("#if __has_c_attribute(gnu::packed)\nyes\n#endif\n"), "");
2968 assert_eq!(clean("#if __has_c_attribute(deprecated)\nyes\n#endif\n"), "");
2969 }
2970
2971 #[test]
2972 fn has_builtin_answers_no_until_the_builtin_is_real() {
2973 assert_eq!(clean("#if __has_builtin(__builtin_expect)\nyes\n#endif\n"), "yes");
2974 assert_eq!(clean("#if __has_builtin(__builtin_clz)\nyes\n#endif\n"), "yes");
2975 assert_eq!(clean("#if __has_builtin(__builtin_alloca)\nyes\n#endif\n"), "yes");
2976 assert_eq!(clean("#if __has_builtin(__builtin_object_size)\nyes\n#endif\n"), "yes");
2977 assert_eq!(clean("#if __has_builtin(__atomic_signal_fence)\nyes\n#endif\n"), "");
2978 assert_eq!(clean("#if __has_builtin(__builtin_nonesuch)\nyes\n#endif\n"), "");
2979 }
2980
2981 #[test]
2982 fn has_feature_and_has_extension_read_the_same_table() {
2983 assert_eq!(clean("#if __has_feature(pragma_once)\nyes\n#endif\n"), "yes");
2986 assert_eq!(clean("#if __has_extension(pragma_once)\nyes\n#endif\n"), "yes");
2987 assert_eq!(clean("#if __has_extension(include_next)\nyes\n#endif\n"), "yes");
2988 assert_eq!(clean("#if __has_feature(include_next)\nyes\n#endif\n"), "");
2989 assert_eq!(clean("#if __has_feature(statement_expressions)\nyes\n#endif\n"), "");
2990 }
2991
2992 #[test]
2993 fn building_module_is_always_no_and_is_recognised_so_that_the_line_parses() {
2994 assert_eq!(clean("#if __building_module(m)\nyes\n#endif\n"), "");
2998 assert_eq!(clean("#if !__building_module(m)\nyes\n#endif\n"), "yes");
2999 assert_eq!(
3000 clean(
3001 "#if !defined(offsetof) || (__has_feature(modules) && !__building_module(x))\nyes\n#endif\n"
3002 ),
3003 "yes"
3004 );
3005 assert_eq!(clean("#ifdef __building_module\nyes\n#endif\n"), "yes");
3007 assert_eq!(clean("#if defined(__building_module)\nyes\n#endif\n"), "yes");
3008 }
3009
3010 #[test]
3011 fn a_has_operator_without_an_operand_is_reported() {
3012 let mut run = Run::new();
3013 run.go("#if __has_include\nyes\n#endif\n");
3014 assert_eq!(run.messages(), ["expected `(` after `__has_include`"]);
3015 let mut run = Run::new();
3016 run.go("#if __has_include(1)\nyes\n#endif\n");
3017 assert_eq!(run.messages(), ["expected a file name in `<>` or `\"\"`"]);
3018 let mut run = Run::new();
3019 run.go("#if __has_attribute(\"packed\")\nyes\n#endif\n");
3020 assert_eq!(run.messages(), ["expected an identifier as the operand of `__has_attribute`"]);
3021 }
3022
3023 #[test]
3024 fn the_has_operators_answer_in_ordinary_text_too() {
3025 assert_eq!(clean("f __has_feature(pragma_once)\n"), "f 1");
3029 assert_eq!(clean("b __has_builtin(__builtin_expect)\n"), "b 1");
3030 assert_eq!(clean("a __has_attribute(packed)\n"), "a 1");
3031 assert_eq!(clean("c __has_c_attribute(deprecated)\n"), "c 0");
3032 assert_eq!(clean("m __building_module(foo)\n"), "m 0");
3033 }
3034
3035 #[test]
3036 fn a_macro_that_expands_to_a_has_operator_is_answered_where_it_is_used() {
3037 assert_eq!(clean("#define HAVE __has_feature(pragma_once)\nx HAVE\n"), "x 1");
3040 assert_eq!(clean("#define HAVE(x) __has_attribute(x)\ny HAVE(packed)\n"), "y 1");
3041 }
3042
3043 #[test]
3044 fn a_has_operator_in_text_still_needs_its_operand() {
3045 let mut run = Run::new();
3046 run.go("tail __has_attribute;\n");
3047 assert_eq!(run.messages(), ["expected `(` after `__has_attribute`"]);
3048 }
3049
3050 #[test]
3051 fn the_header_operators_are_refused_in_ordinary_text() {
3052 let mut run = Run::new();
3055 run.file("/dir/there.h", "");
3056 run.dir("/dir");
3057 run.go("a __has_include(<there.h>)\n");
3058 assert_eq!(run.messages(), ["`__has_include` used outside of a preprocessing directive"]);
3059 let mut run = Run::new();
3060 run.go("b __has_include_next(\"x.h\")\n");
3061 assert_eq!(
3062 run.messages(),
3063 ["`__has_include_next` used outside of a preprocessing directive"]
3064 );
3065 }
3066
3067 #[test]
3068 fn the_predefined_set_is_visible_to_the_source_file() {
3069 let mut run = Run::new();
3070 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3071 let src = "#if defined(__x86_64__) && defined(__linux__) && __SIZEOF_LONG__ == 8\n\
3072 yes\n#endif\n";
3073 assert_eq!(run.go(src), "yes");
3074 assert!(run.messages().is_empty());
3075 }
3076
3077 #[test]
3078 fn the_predefined_set_follows_the_target_and_not_the_host() {
3079 let mut run = Run::new();
3080 run.predefine("aarch64-unknown-linux-gnu", &Predef::new());
3081 assert_eq!(
3082 run.go("#ifdef __x86_64__\nno\n#endif\n#ifdef __aarch64__\nyes\n#endif\n"),
3083 "yes"
3084 );
3085 }
3086
3087 #[test]
3088 fn a_predefined_macro_expands_where_it_is_used() {
3089 let mut run = Run::new();
3090 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3091 assert_eq!(run.go("__SIZE_TYPE__ n;\n"), "long unsigned int n;");
3092 }
3093
3094 #[test]
3095 fn a_command_line_define_is_a_definition_like_any_other() {
3096 let mut opts = Predef::new();
3097 opts.defines = vec!["FOO".to_owned(), "BAR=3".to_owned()];
3098 opts.undefines = vec!["__linux__".to_owned()];
3099 let mut run = Run::new();
3100 run.predefine("x86_64-unknown-linux-gnu", &opts);
3101 let src = "#if FOO && BAR == 3 && !defined(__linux__)\nyes\n#endif\n";
3102 assert_eq!(run.go(src), "yes");
3103 assert!(run.messages().is_empty());
3104 }
3105
3106 #[test]
3107 fn the_predefined_set_produces_no_tokens_of_its_own() {
3108 let mut run = Run::new();
3111 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3112 assert_eq!(run.go("alone\n"), "alone");
3113 }
3114
3115 #[test]
3116 fn the_predefined_files_are_named_the_way_gcc_names_them() {
3117 let mut run = Run::new();
3118 let mut opts = Predef::new();
3119 opts.defines = vec!["FOO=1".to_owned()];
3120 run.predefine("x86_64-unknown-linux-gnu", &opts);
3121 let names: Vec<&str> = run.sources.files().iter().map(|f| f.name.as_str()).collect();
3122 assert_eq!(names, ["<built-in>", "<command-line>"]);
3123 }
3124
3125 #[test]
3126 fn a_dialect_without_the_gnu_extensions_says_so() {
3127 let mut opts = Predef::new();
3128 opts.gnu_extensions = false;
3129 opts.std = Std::C99;
3130 let mut run = Run::new();
3131 run.predefine("x86_64-unknown-linux-gnu", &opts);
3132 let src = "#if defined(__STRICT_ANSI__) && __STDC_VERSION__ == 199901L && !defined(linux)\n\
3133 yes\n#endif\n";
3134 assert_eq!(run.go(src), "yes");
3135 }
3136
3137 #[test]
3138 fn the_date_and_time_are_the_same_for_the_whole_translation_unit() {
3139 let mut opts = Predef::new();
3140 opts.timestamp = Timestamp::from_unix(0);
3141 let mut run = Run::new();
3142 run.predefine("x86_64-unknown-linux-gnu", &opts);
3143 assert_eq!(run.go("__DATE__ __TIME__\n"), "\"Jan 1 1970\" \"00:00:00\"");
3144 }
3145
3146 #[test]
3147 fn a_has_operator_in_a_dead_branch_is_not_asked_about() {
3148 assert_eq!(clean("#if 0\n#if __has_include\n#endif\n#endif\nafter\n"), "after");
3150 }
3151
3152 #[test]
3153 fn a_conditional_may_not_span_an_include() {
3154 let mut run = Run::new();
3158 run.file("/dir/open.h", "#if 1\n");
3159 run.dir("/dir");
3160 run.go("#include <open.h>\nkept\n#endif\n");
3161 let messages = run.messages();
3162 assert_eq!(messages.len(), 2);
3163 assert!(messages[0].contains("unterminated"));
3164 assert!(messages[1].contains("without"));
3165 }
3166
3167 #[test]
3168 fn include_next_continues_after_the_directory_the_file_came_from() {
3169 let mut run = Run::new();
3172 run.file("/a/limits.h", "wrapper\n#include_next <limits.h>\n");
3173 run.file("/b/limits.h", "real\n");
3174 run.dir("/a");
3175 run.dir("/b");
3176 assert_eq!(run.go("#include <limits.h>\n"), "wrapper real");
3177 assert!(run.messages().is_empty());
3178 }
3179
3180 #[test]
3181 fn a_computed_include_is_expanded_first() {
3182 let mut run = Run::new();
3183 run.file("/dir/sub/thing.h", "computed\n");
3184 run.dir("/dir");
3185 let src = "#define HEADER <sub/thing.h>\n#include HEADER\n";
3186 assert_eq!(run.go(src), "computed");
3187 assert!(run.messages().is_empty());
3188 let mut run = Run::new();
3190 run.file("/dir/sub/thing.h", "computed\n");
3191 run.dir("/dir");
3192 assert_eq!(run.go("#define H \"sub/thing.h\"\n#include H\n"), "computed");
3193 }
3194
3195 #[test]
3196 fn a_header_that_is_not_there_says_where_it_looked() {
3197 let mut run = Run::new();
3198 run.dir("/dir");
3199 run.go("#include <nope.h>\n");
3200 let diagnostics = run.pp.take_diagnostics();
3201 assert_eq!(diagnostics.len(), 1);
3202 assert_eq!(diagnostics[0].code, Some("E0341"));
3203 assert_eq!(diagnostics[0].message, "`nope.h` file not found");
3204 assert!(diagnostics[0].children[0].message.contains("/dir"));
3205 }
3206
3207 #[test]
3214 fn a_header_that_is_not_there_says_why_the_system_directories_are_missing() {
3215 let mut run = Run::new();
3216 run.search.explain_missing_system("aarch64-macos needs a macOS SDK and there is none here");
3217 run.go("#include <stdio.h>\n");
3218 let diagnostics = run.pp.take_diagnostics();
3219 assert_eq!(diagnostics.len(), 1);
3220 assert_eq!(diagnostics[0].message, "`stdio.h` file not found");
3221 assert!(diagnostics[0].children[0].message.contains("search path is empty"));
3222 assert!(diagnostics[0].children[1].message.contains("needs a macOS SDK"));
3223 let mut run = Run::new();
3225 run.dir("/dir");
3226 run.go("#include <nope.h>\n");
3227 assert_eq!(run.pp.take_diagnostics()[0].children.len(), 1);
3228 }
3229
3230 #[test]
3231 fn an_include_that_is_not_a_header_name_is_reported() {
3232 let mut run = Run::new();
3233 run.go("#include 3\n");
3234 let diagnostics = run.pp.take_diagnostics();
3235 assert_eq!(diagnostics[0].code, Some("E0343"));
3236 }
3237
3238 #[test]
3239 fn a_header_that_includes_itself_stops() {
3240 let mut run = Run::new();
3241 run.file("/dir/loop.h", "#include <loop.h>\n");
3242 run.dir("/dir");
3243 run.go("#include <loop.h>\n");
3244 let diagnostics = run.pp.take_diagnostics();
3245 assert_eq!(diagnostics.len(), 1, "one complaint, not one per level");
3246 assert_eq!(diagnostics[0].code, Some("E0342"));
3247 }
3248
3249 #[test]
3250 fn an_include_in_a_dead_branch_is_not_read() {
3251 let mut run = Run::new();
3252 assert_eq!(run.go("#if 0\n#include <nothing.h>\n#endif\nafter\n"), "after");
3253 assert!(run.messages().is_empty(), "a skipped include is not resolved");
3254 }
3255
3256 #[test]
3257 fn embed_writes_the_bytes_of_the_resource() {
3258 let mut run = Run::new();
3259 run.bytes("/logo.bin", &[0, 1, 127, 128, 255]);
3260 assert_eq!(run.go("#embed \"logo.bin\"\n"), "0, 1, 127, 128, 255");
3261 assert!(run.messages().is_empty());
3262 }
3263
3264 #[test]
3265 fn an_embed_is_a_valid_initializer_on_both_sides_of_empty() {
3266 let mut run = Run::new();
3271 run.bytes("/some.bin", &[7, 8]);
3272 run.bytes("/none.bin", &[]);
3273 let line = |name: &str| {
3274 format!("{{\n#embed \"{name}\" prefix(0xEF,) suffix(,0xFE) if_empty(0)\n}}\n")
3275 };
3276 assert_eq!(run.go(&line("some.bin")), "{ 0xEF,7, 8 ,0xFE }");
3277 assert_eq!(run.go_named("/other.c", &line("none.bin")), "{ 0 }");
3278 assert!(run.messages().is_empty());
3279 }
3280
3281 #[test]
3282 fn the_limit_and_the_offset_choose_a_window_of_the_resource() {
3283 let mut run = Run::new();
3284 run.bytes("/eight.bin", &[1, 2, 3, 4, 5, 6, 7, 8]);
3285 assert_eq!(run.go("#embed \"eight.bin\" limit(3)\n"), "1, 2, 3");
3286 assert_eq!(
3287 run.go_named("/b.c", "#embed \"eight.bin\" gnu::offset(4) limit(3)\n"),
3288 "5, 6, 7"
3289 );
3290 assert_eq!(run.go_named("/c.c", "#embed \"eight.bin\" limit(0) if_empty(9)\n"), "9");
3293 assert_eq!(run.go_named("/d.c", "#embed \"eight.bin\" gnu::offset(99)\n"), "");
3294 assert!(run.messages().is_empty());
3295 }
3296
3297 #[test]
3298 fn the_limit_is_a_constant_expression_and_not_just_a_number() {
3299 let mut run = Run::new();
3302 run.bytes("/eight.bin", &[1, 2, 3, 4, 5, 6, 7, 8]);
3303 assert_eq!(
3304 run.go("#define CHUNK 2\n#embed \"eight.bin\" limit(CHUNK * 2)\n"),
3305 "1, 2, 3, 4"
3306 );
3307 assert!(run.messages().is_empty());
3308 }
3309
3310 #[test]
3311 fn a_misspelled_embed_parameter_is_refused_rather_than_ignored() {
3312 let mut run = Run::new();
3315 run.bytes("/eight.bin", &[1, 2]);
3316 assert_eq!(run.go("#embed \"eight.bin\" limits(1)\n"), "");
3317 assert_eq!(run.messages(), vec!["unknown `#embed` parameter `limits`".to_owned()]);
3318 let mut vendor = Run::new();
3319 vendor.bytes("/eight.bin", &[1, 2]);
3320 assert_eq!(vendor.go("#embed \"eight.bin\" clang::offset(1)\n"), "");
3321 assert_eq!(
3322 vendor.messages(),
3323 vec!["unknown `#embed` parameter `clang::offset`".to_owned()]
3324 );
3325 }
3326
3327 #[test]
3328 fn a_missing_embed_resource_is_reported_as_a_resource() {
3329 let mut run = Run::new();
3330 run.go("#embed <nothing.bin>\n");
3331 assert_eq!(run.messages(), vec!["`nothing.bin` resource not found".to_owned()]);
3332 }
3333
3334 #[test]
3335 fn has_embed_tells_missing_from_present_from_empty() {
3336 let mut run = Run::new();
3340 run.bytes("/some.bin", &[1]);
3341 run.bytes("/none.bin", &[]);
3342 let src = "#if __has_embed(\"none.bin\") == __STDC_EMBED_EMPTY__\nempty\n#endif\n\
3343 #if __has_embed(\"some.bin\") == __STDC_EMBED_FOUND__\nfound\n#endif\n\
3344 #if __has_embed(\"gone.bin\") == __STDC_EMBED_NOT_FOUND__\ngone\n#endif\n";
3345 run.predefine("x86_64-unknown-linux-gnu", &Predef::default());
3346 assert_eq!(run.go(src), "empty found gone");
3347 assert!(run.messages().is_empty());
3348 }
3349
3350 #[test]
3351 fn has_embed_takes_the_limit_into_account() {
3352 let mut run = Run::new();
3355 run.bytes("/some.bin", &[1, 2, 3]);
3356 run.predefine("x86_64-unknown-linux-gnu", &Predef::default());
3357 let src = "#if __has_embed(\"some.bin\" limit(0)) == __STDC_EMBED_EMPTY__\nempty\n#endif\n";
3358 assert_eq!(run.go(src), "empty");
3359 assert!(run.messages().is_empty());
3360 }
3361
3362 #[test]
3363 fn a_directive_may_have_space_before_the_hash_and_after_it() {
3364 assert_eq!(clean(" # define F 1\n#ifdef F\nyes\n#endif\n"), "yes");
3365 }
3366
3367 #[test]
3368 fn a_definition_survives_across_a_conditional() {
3369 assert_eq!(clean("#if 1\n#define F 7\n#endif\nF\n"), "7");
3370 }
3371
3372 #[test]
3373 fn an_empty_if_expression_is_reported() {
3374 let mut run = Run::new();
3375 run.go("#if\n#endif\n");
3376 assert_eq!(run.messages(), vec!["`#if` with no expression".to_owned()]);
3377 }
3378
3379 #[test]
3380 fn the_file_and_the_line_say_where_the_use_is() {
3381 let mut run = Run::new();
3382 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3383 assert_eq!(run.go("__FILE__ __LINE__\n__LINE__\n"), "\"/main.c\" 1 2");
3384 assert!(run.messages().is_empty());
3385 }
3386
3387 #[test]
3388 fn a_macro_that_mentions_the_line_answers_with_the_call() {
3389 let mut run = Run::new();
3390 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3391 run.file("/where.h", "#define WHERE __FILE__ __LINE__\n");
3392 assert_eq!(run.go("#include \"where.h\"\n\n\nWHERE\n"), "\"/main.c\" 4");
3396 assert!(run.messages().is_empty());
3397 }
3398
3399 #[test]
3400 fn the_file_name_is_the_file_without_the_directories() {
3401 let mut run = Run::new();
3402 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3403 assert_eq!(run.go_named("/deep/down/main.c", "__FILE_NAME__\n"), "\"main.c\"");
3404 }
3405
3406 #[test]
3407 fn a_backslash_in_the_name_is_escaped() {
3408 let mut run = Run::new();
3409 run.predefine("x86_64-pc-windows-msvc", &Predef::new());
3410 let text = run.go_named("C:\\src\\main.c", "__FILE__ __FILE_NAME__\n");
3413 assert_eq!(text, "\"C:\\\\src\\\\main.c\" \"main.c\"");
3414 }
3415
3416 #[test]
3417 fn the_base_file_is_the_one_named_on_the_command_line() {
3418 let mut run = Run::new();
3419 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3420 run.file("/deep.h", "__FILE__ __BASE_FILE__\n");
3421 assert_eq!(run.go("#include \"deep.h\"\n"), "\"/deep.h\" \"/main.c\"");
3422 assert!(run.messages().is_empty());
3423 }
3424
3425 #[test]
3426 fn a_prefix_map_rewrites_the_file_and_the_base_file_and_not_the_file_name() {
3427 let mut run = Run::mapping(&[("/build", ".")]);
3428 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3429 run.file("/build/deep.h", "__FILE__ __BASE_FILE__ __FILE_NAME__\n");
3430 let text = run.go_named("/build/main.c", "#include \"deep.h\"\n");
3436 assert_eq!(slashes(&text), "\"./deep.h\" \"./main.c\" \"deep.h\"");
3439 assert!(run.messages().is_empty());
3440 }
3441
3442 #[test]
3443 fn the_last_rewrite_that_matches_is_the_one_that_acts() {
3444 let mut run = Run::mapping(&[("/build", "src"), ("/build/gen", "generated")]);
3447 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3448 assert_eq!(run.go_named("/build/gen/made.c", "__FILE__\n"), "\"generated/made.c\"");
3449
3450 let mut run = Run::mapping(&[("/build", "src"), ("/build/gen", "generated")]);
3451 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3452 assert_eq!(run.go_named("/build/hand.c", "__FILE__\n"), "\"src/hand.c\"");
3453
3454 let mut run = Run::mapping(&[("/build", "src")]);
3457 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3458 assert_eq!(run.go_named("/elsewhere/main.c", "__FILE__\n"), "\"/elsewhere/main.c\"");
3459 }
3460
3461 #[test]
3462 fn a_rewrite_matches_the_characters_and_not_the_directories() {
3463 let mut run = Run::mapping(&[("/bui", "X")]);
3469 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3470 assert_eq!(run.go_named("/build/main.c", "__FILE__\n"), "\"Xld/main.c\"");
3471 }
3472
3473 #[test]
3474 fn the_include_level_counts_the_headers_above_it() {
3475 let mut run = Run::new();
3476 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3477 run.file("/one.h", "__INCLUDE_LEVEL__\n#include \"two.h\"\n");
3478 run.file("/two.h", "__INCLUDE_LEVEL__\n");
3479 assert_eq!(run.go("__INCLUDE_LEVEL__\n#include \"one.h\"\n"), "0 1 2");
3480 assert!(run.messages().is_empty());
3481 }
3482
3483 #[test]
3484 fn the_counter_is_a_different_number_every_time() {
3485 let mut run = Run::new();
3486 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3487 assert_eq!(run.go("__COUNTER__ __COUNTER__ __COUNTER__\n"), "0 1 2");
3488 }
3489
3490 #[test]
3491 fn the_counter_advances_once_per_argument_rather_than_once_per_use() {
3492 let mut run = Run::new();
3493 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3494 assert_eq!(run.go("#define TWICE(x) x x\nTWICE(__COUNTER__) __COUNTER__\n"), "0 0 1");
3498 }
3499
3500 #[test]
3501 fn the_line_is_a_number_an_if_can_use() {
3502 let mut run = Run::new();
3503 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3504 assert_eq!(run.go("#if __LINE__ == 1 && __INCLUDE_LEVEL__ == 0\nyes\n#endif\n"), "yes");
3505 assert!(run.messages().is_empty());
3506 }
3507
3508 #[test]
3509 fn the_dynamic_macros_are_defined_like_any_others() {
3510 let mut run = Run::new();
3511 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3512 let src = "#ifdef __FILE__\nyes\n#endif\n#undef __LINE__\n#ifndef __LINE__\ngone\n#endif\n";
3513 assert_eq!(run.go(src), "yes gone");
3514 assert!(run.messages().is_empty(), "`#undef` of a builtin is allowed, as it is in GCC");
3515 }
3516
3517 #[test]
3518 fn redefining_a_dynamic_macro_warns_and_points_at_the_built_in_file() {
3519 let mut run = Run::new();
3520 run.predefine("x86_64-unknown-linux-gnu", &Predef::new());
3521 assert_eq!(run.go("#define __FILE__ \"mine.c\"\n__FILE__\n"), "\"mine.c\"");
3522 let complaints = run.pp.take_diagnostics();
3523 assert_eq!(complaints.len(), 1);
3524 assert_eq!(complaints[0].code, Some("W0301"));
3525 let previous = complaints[0].children.first().expect("a note saying where it was");
3526 assert_eq!(run.sources.lookup(previous.span.lo).map(|loc| loc.file), {
3527 let built_in = run.sources.files().iter().find(|f| f.name == BUILT_IN);
3528 built_in.map(|f| f.id)
3529 });
3530 }
3531
3532 #[test]
3533 fn destringizing_undoes_what_stringizing_did() {
3534 assert_eq!(destringize(r#""a \"b\" c""#), r#"a "b" c"#);
3535 assert_eq!(destringize(r#""a \\ b""#), r"a \ b");
3536 assert_eq!(destringize(r#"L"wide""#), "wide");
3537 }
3538}