brintos

brintos / llvm-project-archived public Read only

0
0
Text · 792 B · 46ada36 Raw
21 lines · c
1//===- ReduceMemoryOperations.h - Specialized Delta Pass --------*- C++ -*-===//2//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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCEMEMORYOPERATIONS_H10#define LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCEMEMORYOPERATIONS_H11 12#include "Delta.h"13 14namespace llvm {15void reduceVolatileInstructionsDeltaPass(Oracle &O, ReducerWorkItem &WorkItem);16void reduceAtomicSyncScopesDeltaPass(Oracle &O, ReducerWorkItem &WorkItem);17void reduceAtomicOrderingDeltaPass(Oracle &O, ReducerWorkItem &WorkItem);18} // namespace llvm19 20#endif21