Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
DMCFunction.h32 struct MCDecodedInst { struct
37 MCDecodedInst() {} in MCDecodedInst() argument
38 MCDecodedInst(uint64_t Address, uint64_t Size, MCInst Inst) in MCDecodedInst() argument
41 bool operator<(const MCDecodedInst &RHS) const {
49 std::vector<MCDecodedInst> Insts;
53 ArrayRef<MCDecodedInst> getInsts() const { return Insts; } in getInsts()
61 void addInst(const MCDecodedInst &Inst) { Insts.push_back(Inst); } in addInst()
DMCFunction.cpp35 std::vector<MCDecodedInst> Instructions; in createFunctionFromMC()
57 Instructions.push_back(MCDecodedInst(Index, Size, Inst)); in createFunctionFromMC()
116 const MCDecodedInst &Inst = BB.getInsts().back(); in createFunctionFromMC()
DMachODump.cpp558 const MCDecodedInst &Inst = fi->second.getInsts()[ii]; in DisassembleInputMachO()