1 //===--- llvm-isel-fuzzer.cpp - Fuzzer for instruction selection ----------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // Tool to fuzz instruction selection using libFuzzer.
11 //===----------------------------------------------------------------------===//
13 #include "llvm/ADT/StringRef.h"
14 #include "llvm/Analysis/TargetLibraryInfo.h"
15 #include "llvm/Bitcode/BitcodeReader.h"
16 #include "llvm/Bitcode/BitcodeWriter.h"
17 #include "llvm/CodeGen/CommandFlags.inc"
18 #include "llvm/FuzzMutate/FuzzerCLI.h"
19 #include "llvm/FuzzMutate/IRMutator.h"
20 #include "llvm/FuzzMutate/Operations.h"
21 #include "llvm/IR/Constants.h"
22 #include "llvm/IR/LLVMContext.h"
23 #include "llvm/IR/LegacyPassManager.h"
24 #include "llvm/IR/Module.h"
25 #include "llvm/IR/Verifier.h"
26 #include "llvm/IRReader/IRReader.h"
27 #include "llvm/Support/DataTypes.h"
28 #include "llvm/Support/Debug.h"
29 #include "llvm/Support/SourceMgr.h"
30 #include "llvm/Support/TargetRegistry.h"
31 #include "llvm/Support/TargetSelect.h"
32 #include "llvm/Target/TargetMachine.h"
34 #define DEBUG_TYPE "isel-fuzzer"
40 cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
46 static cl::opt
<std::string
>
47 TargetTriple("mtriple", cl::desc("Override target triple for module"));
49 static std::unique_ptr
<TargetMachine
> TM
;
50 static std::unique_ptr
<IRMutator
> Mutator
;
52 std::unique_ptr
<IRMutator
> createISelMutator() {
53 std::vector
<TypeGetter
> Types
{
54 Type::getInt1Ty
, Type::getInt8Ty
, Type::getInt16Ty
, Type::getInt32Ty
,
55 Type::getInt64Ty
, Type::getFloatTy
, Type::getDoubleTy
};
57 std::vector
<std::unique_ptr
<IRMutationStrategy
>> Strategies
;
58 Strategies
.emplace_back(
59 new InjectorIRStrategy(InjectorIRStrategy::getDefaultOps()));
60 Strategies
.emplace_back(new InstDeleterIRStrategy());
62 return llvm::make_unique
<IRMutator
>(std::move(Types
), std::move(Strategies
));
65 extern "C" LLVM_ATTRIBUTE_USED
size_t LLVMFuzzerCustomMutator(
66 uint8_t *Data
, size_t Size
, size_t MaxSize
, unsigned int Seed
) {
68 std::unique_ptr
<Module
> M
;
70 // We get bogus data given an empty corpus - just create a new module.
71 M
.reset(new Module("M", Context
));
73 M
= parseModule(Data
, Size
, Context
);
75 Mutator
->mutateModule(*M
, Seed
, Size
, MaxSize
);
77 return writeModule(*M
, Data
, MaxSize
);
80 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data
, size_t Size
) {
82 // We get bogus data given an empty corpus - ignore it.
86 auto M
= parseAndVerify(Data
, Size
, Context
);
88 errs() << "error: input module is broken!\n";
92 // Set up the module to build for our target.
93 M
->setTargetTriple(TM
->getTargetTriple().normalize());
94 M
->setDataLayout(TM
->createDataLayout());
96 // Build up a PM to do instruction selection.
97 legacy::PassManager PM
;
98 TargetLibraryInfoImpl
TLII(TM
->getTargetTriple());
99 PM
.add(new TargetLibraryInfoWrapperPass(TLII
));
101 TM
->addPassesToEmitFile(PM
, OS
, nullptr, TargetMachine::CGFT_Null
);
107 static void handleLLVMFatalError(void *, const std::string
&Message
, bool) {
108 // TODO: Would it be better to call into the fuzzer internals directly?
109 dbgs() << "LLVM ERROR: " << Message
<< "\n"
110 << "Aborting to trigger fuzzer exit handling.\n";
114 extern "C" LLVM_ATTRIBUTE_USED
int LLVMFuzzerInitialize(int *argc
,
116 EnableDebugBuffering
= true;
118 InitializeAllTargets();
119 InitializeAllTargetMCs();
120 InitializeAllAsmPrinters();
121 InitializeAllAsmParsers();
123 handleExecNameEncodedBEOpts(*argv
[0]);
124 parseFuzzerCLOpts(*argc
, *argv
);
126 if (TargetTriple
.empty()) {
127 errs() << *argv
[0] << ": -mtriple must be specified\n";
131 Triple TheTriple
= Triple(Triple::normalize(TargetTriple
));
133 // Get the target specific parser.
135 const Target
*TheTarget
=
136 TargetRegistry::lookupTarget(MArch
, TheTriple
, Error
);
138 errs() << argv
[0] << ": " << Error
;
142 // Set up the pipeline like llc does.
143 std::string CPUStr
= getCPUStr(), FeaturesStr
= getFeaturesStr();
145 CodeGenOpt::Level OLvl
= CodeGenOpt::Default
;
148 errs() << argv
[0] << ": invalid optimization level.\n";
151 case '0': OLvl
= CodeGenOpt::None
; break;
152 case '1': OLvl
= CodeGenOpt::Less
; break;
153 case '2': OLvl
= CodeGenOpt::Default
; break;
154 case '3': OLvl
= CodeGenOpt::Aggressive
; break;
157 TargetOptions Options
= InitTargetOptionsFromCodeGenFlags();
158 TM
.reset(TheTarget
->createTargetMachine(TheTriple
.getTriple(), CPUStr
,
159 FeaturesStr
, Options
, getRelocModel(),
160 getCodeModel(), OLvl
));
161 assert(TM
&& "Could not allocate target machine!");
163 // Make sure we print the summary and the current unit when LLVM errors out.
164 install_fatal_error_handler(handleLLVMFatalError
, nullptr);
166 // Finally, create our mutator.
167 Mutator
= createISelMutator();