mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Start stubbing out MCModule and MCAtom, which provide an API for accessing the rich disassembly of a complete object or executable.
These are very much a work in progress, and not really useful yet. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140345 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
75
include/llvm/MC/MCAtom.h
Normal file
75
include/llvm/MC/MCAtom.h
Normal file
@@ -0,0 +1,75 @@
|
||||
//===-- llvm/MC/MCAtom.h - MCAtom class ---------------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file contains the declaration of the MCAtom class, which is used to
|
||||
// represent a contiguous region in a decoded object that is uniformly data or
|
||||
// instructions;
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_MC_MCATOM_H
|
||||
#define LLVM_MC_MCATOM_H
|
||||
|
||||
#include "llvm/MC/MCInst.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class MCModule;
|
||||
|
||||
/// MCData - An entry in a data MCAtom.
|
||||
// NOTE: This may change to a more complex type in the future.
|
||||
typedef uint8_t MCData;
|
||||
|
||||
/// MCAtom - Represents a contiguous range of either instructions (a TextAtom)
|
||||
/// or data (a DataAtom). Address ranges are expressed as _closed_ intervals.
|
||||
class MCAtom {
|
||||
friend class MCModule;
|
||||
typedef enum { TextAtom, DataAtom } AtomType;
|
||||
|
||||
AtomType Type;
|
||||
MCModule *Parent;
|
||||
uint64_t Begin, End;
|
||||
|
||||
std::vector<std::pair<uint64_t, MCInst> > Text;
|
||||
std::vector<MCData> Data;
|
||||
|
||||
// Private constructor - only callable by MCModule
|
||||
MCAtom(AtomType T, MCModule *P, uint64_t B, uint64_t E)
|
||||
: Type(T), Parent(P), Begin(B), End(E) { }
|
||||
|
||||
public:
|
||||
bool isTextAtom() { return Type == TextAtom; }
|
||||
bool isDataAtom() { return Type == DataAtom; }
|
||||
|
||||
void addInst(const MCInst &I, uint64_t Address) {
|
||||
assert(Type == TextAtom && "Trying to add MCInst to a non-text atom!");
|
||||
Text.push_back(std::make_pair(Address, I));
|
||||
}
|
||||
|
||||
void addData(const MCData &D) {
|
||||
assert(Type == DataAtom && "Trying to add MCData to a non-data atom!");
|
||||
Data.push_back(D);
|
||||
}
|
||||
|
||||
/// split - Splits the atom in two at a given address, which must align with
|
||||
/// and instruction boundary if this is a TextAtom. Returns the newly created
|
||||
/// atom representing the high part of the split.
|
||||
MCAtom *split(uint64_t SplitPt);
|
||||
|
||||
/// truncate - Truncates an atom so that TruncPt is the last byte address
|
||||
/// contained in the atom.
|
||||
void truncate(uint64_t TruncPt);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
58
include/llvm/MC/MCModule.h
Normal file
58
include/llvm/MC/MCModule.h
Normal file
@@ -0,0 +1,58 @@
|
||||
//===-- llvm/MC/MCModule.h - MCModule class ---------------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file contains the declaration of the MCModule class, which is used to
|
||||
// represent a complete, disassembled object file or executable.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_MC_MCMODULE_H
|
||||
#define LLVM_MC_MCMODULE_H
|
||||
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/IntervalMap.h"
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class MCAtom;
|
||||
|
||||
/// MCModule - This class represent a completely disassembled object file or
|
||||
/// executable. It comprises a list of MCAtom's, and a branch target table.
|
||||
/// Each atom represents a contiguous range of either instructions or data.
|
||||
class MCModule {
|
||||
/// AtomAllocationTracker - An MCModule owns its component MCAtom's, so it
|
||||
/// must track them in order to ensure they are properly freed as atoms are
|
||||
/// merged or otherwise manipulated.
|
||||
SmallPtrSet<MCAtom*, 8> AtomAllocationTracker;
|
||||
|
||||
/// OffsetMap - Efficiently maps offset ranges to MCAtom's.
|
||||
IntervalMap<uint64_t, MCAtom*> OffsetMap;
|
||||
|
||||
/// BranchTargetMap - Maps offsets that are determined to be branches and
|
||||
/// can be statically resolved to their target offsets.
|
||||
DenseMap<uint64_t, MCAtom*> BranchTargetMap;
|
||||
|
||||
friend class MCAtom;
|
||||
|
||||
/// remap - Update the interval mapping for an MCAtom.
|
||||
void remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd);
|
||||
|
||||
public:
|
||||
MCModule(IntervalMap<uint64_t, MCAtom*>::Allocator &A) : OffsetMap(A) { }
|
||||
|
||||
/// createAtom - Creates a new MCAtom covering the specified offset range.
|
||||
MCAtom *createAtom(MCAtom::AtomType Type, uint64_t Begin, uint64_t End);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user