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

  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
MCFunction.h 30 /// MCDecodedInst - Small container to hold an MCInst and associated info like
32 struct MCDecodedInst {
37 MCDecodedInst() {}
38 MCDecodedInst(uint64_t Address, uint64_t Size, MCInst Inst)
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); }
MCFunction.cpp 35 std::vector<MCDecodedInst> Instructions;
57 Instructions.push_back(MCDecodedInst(Index, Size, Inst));
116 const MCDecodedInst &Inst = BB.getInsts().back();
MachODump.cpp 558 const MCDecodedInst &Inst = fi->second.getInsts()[ii];

Completed in 284 milliseconds