Home
last modified time | relevance | path

Searched refs:InputFormat (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/Remarks/
H A DRemarksLinkingTest.cpp43 static void check(remarks::Format InputFormat, StringRef Input, in check() argument
46 EXPECT_FALSE(RL.link(Input, InputFormat)); in check()
50 static void check(remarks::Format InputFormat, StringRef Input, in check() argument
54 EXPECT_FALSE(RL.link(Input, InputFormat)); in check()
/llvm-project-15.0.7/llvm/tools/llvm-ifs/
H A Dllvm-ifs.cpp86 Optional<FileFormat> InputFormat; member
132 readInputFile(Optional<FileFormat> &InputFormat, StringRef FilePath) { in readInputFile() argument
144 if (!InputFormat || *InputFormat == FileFormat::ELF) { in readInputFile()
148 InputFormat = FileFormat::ELF; in readInputFile()
156 if (!InputFormat || *InputFormat == FileFormat::IFS) { in readInputFile()
160 InputFormat = FileFormat::IFS; in readInputFile()
312 if (!Config.InputFormat) in parseArgs()
387 Config.InputFormat = FileFormat::IFS; in main()
395 readInputFile(Config.InputFormat, InputFilePath); in main()
541 if (Config.InputFormat.value() == FileFormat::ELF && in main()
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp151 if (Config.InputFormat == FileFormat::Binary || in executeObjcopy()
152 Config.InputFormat == FileFormat::IHex) { in executeObjcopy()
159 if (Config.InputFormat == FileFormat::Binary) in executeObjcopy()
H A DObjcopyOptions.cpp630 StringRef InputFormat, OutputFormat; in parseObjcopyOptions() local
632 InputFormat = InputArgs.getLastArgValue(OBJCOPY_target); in parseObjcopyOptions()
635 InputFormat = InputArgs.getLastArgValue(OBJCOPY_input_target); in parseObjcopyOptions()
642 Config.InputFormat = StringSwitch<FileFormat>(InputFormat) in parseObjcopyOptions()
711 Config.OutputFormat = Config.InputFormat; in parseObjcopyOptions()
1325 Config.InputFormat = FileFormat::Unspecified; in parseStripOptions()
/llvm-project-15.0.7/llvm/tools/llvm-rc/
H A Dllvm-rc.cpp204 Format InputFormat = Rc; member
392 Opts.InputFormat = in parseWindresOptions()
395 deduceFormat(Opts.InputFormat, Opts.InputFile); in parseWindresOptions()
397 if (Opts.InputFormat == Coff) in parseWindresOptions()
410 if (Opts.InputFormat == Opts.OutputFormat) { in parseWindresOptions()
741 if (Opts.InputFormat == Rc) { in main()
/llvm-project-15.0.7/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h204 FileFormat InputFormat = FileFormat::Unspecified; member