Searched refs:MCDecodedInst (Results 1 - 3 of 3) sorted by relevance

/external/llvm/tools/llvm-objdump/
H A DMCFunction.h30 /// MCDecodedInst - Small container to hold an MCInst and associated info like
32 struct MCDecodedInst { struct in namespace:llvm
37 MCDecodedInst() {} function in struct:llvm::MCDecodedInst
38 MCDecodedInst(uint64_t Address, uint64_t Size, MCInst Inst) function in struct:llvm::MCDecodedInst
41 bool operator<(const MCDecodedInst &RHS) const {
49 std::vector<MCDecodedInst> Insts;
53 ArrayRef<MCDecodedInst> getInsts() const { return Insts; }
61 void addInst(const MCDecodedInst &Inst) { Insts.push_back(Inst); }
H A DMCFunction.cpp35 std::vector<MCDecodedInst> Instructions;
57 Instructions.push_back(MCDecodedInst(Index, Size, Inst));
116 const MCDecodedInst &Inst = BB.getInsts().back();
H A DMachODump.cpp607 const MCDecodedInst &Inst = fi->second.getInsts()[ii];

Completed in 34 milliseconds