HomeSort by relevance Sort by last modified time
    Searched refs:MCFunction (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/MC/
MCFunction.h 1 //===-- llvm/MC/MCFunction.h ------------------------------------*- C++ -*-===//
25 class MCFunction;
32 /// Create a basic block using MCFunction::createBlock.
36 // MCFunction owns the basic block.
37 MCFunction *Parent;
38 friend class MCFunction;
39 MCBasicBlock(const MCTextAtom &Insts, MCFunction *Parent);
52 /// \name Get the owning MCFunction.
54 const MCFunction *getParent() const { return Parent; }
55 MCFunction *getParent() { return Parent;
    [all...]
MCObjectDisassembler.h 26 class MCFunction;
61 /// NOTE: Each MCBasicBlock in a MCFunction is backed by a single MCTextAtom.
MCModule.h 27 class MCFunction;
58 typedef std::vector<MCFunction*> FunctionListTy;
91 /// \name Create a new MCFunction.
92 MCFunction *createFunction(const StringRef &Name);
  /external/llvm/lib/MC/
MCFunction.cpp 1 //===-- lib/MC/MCFunction.cpp -----------------------------------*- C++ -*-===//
10 #include "llvm/MC/MCFunction.h"
17 // MCFunction
19 MCFunction::MCFunction(StringRef Name)
23 MCFunction::~MCFunction() {
28 MCBasicBlock &MCFunction::createBlock(const MCTextAtom &TA) {
35 MCBasicBlock::MCBasicBlock(const MCTextAtom &Insts, MCFunction *Parent)
MCModule.cpp 12 #include "llvm/MC/MCFunction.h"
83 MCFunction *MCModule::createFunction(const StringRef &Name) {
84 Functions.push_back(new MCFunction(Name));
MCObjectDisassembler.cpp 18 #include "llvm/MC/MCFunction.h"
183 MCFunction &MCFN = *Module->createFunction(BBI.Atom->getName());
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 28 #include "llvm/MC/MCFunction.h"
180 // Write a graphviz file for the CFG inside an MCFunction.
181 static void emitDOTFile(const char *FileName, const MCFunction &f,
193 for (MCFunction::const_iterator i = f.begin(), e = f.end(); i != e; ++i) {

Completed in 196 milliseconds