blob: 50bac476fa51b6a98b0d53ab2bc9a0821726aa24 [file] [log] [blame]
Jim Grosbach946227d2011-11-15 16:46:22 +00001//===- lib/MC/MCModule.cpp - MCModule implementation ----------------------===//
Owen Anderson124e1822011-09-22 22:32:22 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Owen Anderson124e1822011-09-22 22:32:22 +000010#include "llvm/MC/MCModule.h"
Ahmed Bougachaef993562013-05-24 01:07:04 +000011#include "llvm/MC/MCAtom.h"
12#include "llvm/MC/MCFunction.h"
13#include <algorithm>
Owen Anderson124e1822011-09-22 22:32:22 +000014
15using namespace llvm;
16
Ahmed Bougachaef993562013-05-24 01:07:04 +000017static bool AtomComp(const MCAtom *L, uint64_t Addr) {
18 return L->getEndAddr() < Addr;
19}
20
21void MCModule::map(MCAtom *NewAtom) {
22 uint64_t Begin = NewAtom->Begin,
23 End = NewAtom->End;
24
Owen Anderson124e1822011-09-22 22:32:22 +000025 assert(Begin < End && "Creating MCAtom with endpoints reversed?");
26
27 // Check for atoms already covering this range.
Ahmed Bougachaef993562013-05-24 01:07:04 +000028 AtomListTy::iterator I = std::lower_bound(atom_begin(), atom_end(),
29 Begin, AtomComp);
30 assert((I == atom_end() || (*I)->getBeginAddr() > End)
31 && "Offset range already occupied!");
Owen Anderson124e1822011-09-22 22:32:22 +000032
Ahmed Bougachaef993562013-05-24 01:07:04 +000033 // Insert the new atom to the list.
34 Atoms.insert(I, NewAtom);
35}
36
37MCTextAtom *MCModule::createTextAtom(uint64_t Begin, uint64_t End) {
38 MCTextAtom *NewAtom = new MCTextAtom(this, Begin, End);
39 map(NewAtom);
40 return NewAtom;
41}
42
43MCDataAtom *MCModule::createDataAtom(uint64_t Begin, uint64_t End) {
44 MCDataAtom *NewAtom = new MCDataAtom(this, Begin, End);
45 map(NewAtom);
Owen Anderson124e1822011-09-22 22:32:22 +000046 return NewAtom;
47}
48
49// remap - Update the interval mapping for an atom.
50void MCModule::remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd) {
51 // Find and erase the old mapping.
Ahmed Bougachaef993562013-05-24 01:07:04 +000052 AtomListTy::iterator I = std::lower_bound(atom_begin(), atom_end(),
53 Atom->Begin, AtomComp);
54 assert(I != atom_end() && "Atom offset not found in module!");
Owen Anderson124e1822011-09-22 22:32:22 +000055 assert(*I == Atom && "Previous atom mapping was invalid!");
Ahmed Bougachaef993562013-05-24 01:07:04 +000056 Atoms.erase(I);
Owen Anderson124e1822011-09-22 22:32:22 +000057
58 // Insert the new mapping.
Ahmed Bougachaef993562013-05-24 01:07:04 +000059 AtomListTy::iterator NewI = std::lower_bound(atom_begin(), atom_end(),
60 NewBegin, AtomComp);
61 Atoms.insert(NewI, Atom);
Owen Anderson124e1822011-09-22 22:32:22 +000062
63 // Update the atom internal bounds.
64 Atom->Begin = NewBegin;
65 Atom->End = NewEnd;
66}
67
Ahmed Bougachaef993562013-05-24 01:07:04 +000068const MCAtom *MCModule::findAtomContaining(uint64_t Addr) const {
69 AtomListTy::const_iterator I = std::lower_bound(atom_begin(), atom_end(),
70 Addr, AtomComp);
71 if (I != atom_end() && (*I)->getBeginAddr() <= Addr)
72 return *I;
73 return 0;
74}
75
76MCAtom *MCModule::findAtomContaining(uint64_t Addr) {
77 AtomListTy::iterator I = std::lower_bound(atom_begin(), atom_end(),
78 Addr, AtomComp);
79 if (I != atom_end() && (*I)->getBeginAddr() <= Addr)
80 return *I;
81 return 0;
82}
83
84MCFunction *MCModule::createFunction(const StringRef &Name) {
85 Functions.push_back(new MCFunction(Name));
86 return Functions.back();
87}
88
89MCModule::~MCModule() {
90 for (AtomListTy::iterator AI = atom_begin(),
91 AE = atom_end();
92 AI != AE; ++AI)
93 delete *AI;
94 for (FunctionListTy::iterator FI = func_begin(),
95 FE = func_end();
96 FI != FE; ++FI)
97 delete *FI;
98}