reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/FuzzMutate/Operations.h
   37 OpDescriptor binOpDescriptor(unsigned Weight, Instruction::BinaryOps Op);

References

lib/FuzzMutate/Operations.cpp
   19   Ops.push_back(binOpDescriptor(1, Instruction::Add));
   20   Ops.push_back(binOpDescriptor(1, Instruction::Sub));
   21   Ops.push_back(binOpDescriptor(1, Instruction::Mul));
   22   Ops.push_back(binOpDescriptor(1, Instruction::SDiv));
   23   Ops.push_back(binOpDescriptor(1, Instruction::UDiv));
   24   Ops.push_back(binOpDescriptor(1, Instruction::SRem));
   25   Ops.push_back(binOpDescriptor(1, Instruction::URem));
   26   Ops.push_back(binOpDescriptor(1, Instruction::Shl));
   27   Ops.push_back(binOpDescriptor(1, Instruction::LShr));
   28   Ops.push_back(binOpDescriptor(1, Instruction::AShr));
   29   Ops.push_back(binOpDescriptor(1, Instruction::And));
   30   Ops.push_back(binOpDescriptor(1, Instruction::Or));
   31   Ops.push_back(binOpDescriptor(1, Instruction::Xor));
   46   Ops.push_back(binOpDescriptor(1, Instruction::FAdd));
   47   Ops.push_back(binOpDescriptor(1, Instruction::FSub));
   48   Ops.push_back(binOpDescriptor(1, Instruction::FMul));
   49   Ops.push_back(binOpDescriptor(1, Instruction::FDiv));
   50   Ops.push_back(binOpDescriptor(1, Instruction::FRem));