OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MCModule
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/MC/
MCModule.h
1
//===-- llvm/MC/
MCModule
.h -
MCModule
class ---------------------*- C++ -*-===//
10
// This file contains the declaration of the
MCModule
class, which is used to
34
/// An
MCModule
is created using MCObjectDisassembler::buildModule.
35
class
MCModule
{
49
/// enables the owning
MCModule
to keep track of its atoms.
62
MCModule
(const
MCModule
&) LLVM_DELETED_FUNCTION;
63
MCModule
& operator=(const
MCModule
&) LLVM_DELETED_FUNCTION
[
all
...]
/external/llvm/lib/MC/
MCModule.cpp
1
//===- lib/MC/
MCModule
.cpp -
MCModule
implementation ----------------------===//
10
#include "llvm/MC/
MCModule
.h"
21
void
MCModule
::map(MCAtom *NewAtom) {
36
MCTextAtom *
MCModule
::createTextAtom(uint64_t Begin, uint64_t End) {
42
MCDataAtom *
MCModule
::createDataAtom(uint64_t Begin, uint64_t End) {
49
void
MCModule
::remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd) {
67
const MCAtom *
MCModule
::findAtomContaining(uint64_t Addr) const {
75
MCAtom *
MCModule
::findAtomContaining(uint64_t Addr) {
83
MCFunction *
MCModule
::createFunction(const StringRef &Name)
[
all
...]
Completed in 913 milliseconds