mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
13f5c5896d
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216022 91177308-0d34-0410-b5e6-96231b3b80d8
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
//===- llvm/IR/UseListOrder.h - LLVM Use List Order -------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file has structures and command-line options for preserving use-list
|
|
// order.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_IR_USELISTORDER_H
|
|
#define LLVM_IR_USELISTORDER_H
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include <vector>
|
|
|
|
namespace llvm {
|
|
|
|
class Module;
|
|
class Function;
|
|
class Value;
|
|
|
|
/// \brief Structure to hold a use-list order.
|
|
struct UseListOrder {
|
|
const Value *V;
|
|
const Function *F;
|
|
std::vector<unsigned> Shuffle;
|
|
|
|
UseListOrder(const Value *V, const Function *F, size_t ShuffleSize)
|
|
: V(V), F(F), Shuffle(ShuffleSize) {}
|
|
|
|
UseListOrder() : V(0), F(0) {}
|
|
UseListOrder(UseListOrder &&X)
|
|
: V(X.V), F(X.F), Shuffle(std::move(X.Shuffle)) {}
|
|
UseListOrder &operator=(UseListOrder &&X) {
|
|
V = X.V;
|
|
F = X.F;
|
|
Shuffle = std::move(X.Shuffle);
|
|
return *this;
|
|
}
|
|
|
|
private:
|
|
UseListOrder(const UseListOrder &X) LLVM_DELETED_FUNCTION;
|
|
UseListOrder &operator=(const UseListOrder &X) LLVM_DELETED_FUNCTION;
|
|
};
|
|
|
|
typedef std::vector<UseListOrder> UseListOrderStack;
|
|
|
|
/// \brief Whether to preserve use-list ordering.
|
|
bool shouldPreserveBitcodeUseListOrder();
|
|
bool shouldPreserveAssemblyUseListOrder();
|
|
void setPreserveBitcodeUseListOrder(bool ShouldPreserve);
|
|
void setPreserveAssemblyUseListOrder(bool ShouldPreserve);
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif
|