mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-25 14:32:53 +00:00
6688c4a742
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116390 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
//===- ValueMapper.h - Remapping for constants and metadata -----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines the MapValue interface which is used by various parts of
|
|
// the Transforms/Utils library to implement cloning and linking facilities.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_TRANSFORMS_UTILS_VALUEMAPPER_H
|
|
#define LLVM_TRANSFORMS_UTILS_VALUEMAPPER_H
|
|
|
|
#include "llvm/ADT/ValueMap.h"
|
|
|
|
namespace llvm {
|
|
class Value;
|
|
class Instruction;
|
|
typedef ValueMap<const Value *, TrackingVH<Value> > ValueToValueMapTy;
|
|
|
|
Value *MapValue(const Value *V, ValueToValueMapTy &VM,
|
|
bool ModuleLevelChanges);
|
|
void RemapInstruction(Instruction *I, ValueToValueMapTy &VM,
|
|
bool ModuleLevelChanges);
|
|
} // End llvm namespace
|
|
|
|
#endif
|