llvm/llvm/tools/llvm-reduce/deltas/ReduceMemoryOperations.cpp

//===- ReduceOpcodes.cpp - Specialized Delta Pass -------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "ReduceMemoryOperations.h"
#include "Delta.h"
#include "llvm/IR/InstIterator.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/IntrinsicInst.h"

usingnamespacellvm;

static void removeVolatileInFunction(Oracle &O, Function &F) {}

static void removeVolatileInModule(Oracle &O, ReducerWorkItem &WorkItem) {}

void llvm::reduceVolatileInstructionsDeltaPass(TestRunner &Test) {}

static void reduceAtomicSyncScopesInFunction(Oracle &O, Function &F) {}

static void reduceAtomicSyncScopesInModule(Oracle &O,
                                           ReducerWorkItem &WorkItem) {}

void llvm::reduceAtomicSyncScopesDeltaPass(TestRunner &Test) {}

// TODO: Might be helpful to incrementally relax orders
static void reduceAtomicOrderingInFunction(Oracle &O, Function &F) {}

static void reduceAtomicOrderingInModule(Oracle &O, ReducerWorkItem &WorkItem) {}

void llvm::reduceAtomicOrderingDeltaPass(TestRunner &Test) {}