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

  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
MCFunction.h 1 //===-- MCFunction.h ------------------------------------------------------===//
69 /// MCFunction - Represents a named function in machine code, containing
71 class MCFunction {
77 MCFunction(StringRef Name) : Name(Name) {}
79 // Create an MCFunction from a region of binary machine code.
80 static MCFunction
MCFunction.cpp 1 //===-- MCFunction.cpp ----------------------------------------------------===//
15 #include "MCFunction.h"
29 MCFunction
30 MCFunction::createFunctionFromMC(StringRef Name, const MCDisassembler *DisAsm,
40 MCFunction f(Name);
113 for (MCFunction::iterator i = f.begin(), e = f.end(); i != e; ++i) {
123 for (MCFunction::iterator i = f.begin(), e = f.end(); i != e; ++i)
MachODump.cpp 15 #include "MCFunction.h"
144 typedef std::map<uint64_t, MCFunction*> FunctionMapTy;
145 typedef SmallVector<MCFunction, 16> FunctionListTy;
156 MCFunction f =
157 MCFunction::createFunctionFromMC(Name, DisAsm, Object, Start, End,
164 FunctionMap.insert(std::make_pair(Calls[i], (MCFunction*)0));
167 // Write a graphviz file for the CFG inside an MCFunction.
168 static void emitDOTFile(const char *FileName, const MCFunction &f,
180 for (MCFunction::iterator i = f.begin(), e = f.end(); i != e; ++i) {
184 for (MCFunction::iterator pi = f.begin(), pe = f.end(); pi != pe
    [all...]

Completed in 150 milliseconds