Lines Matching full:instruction
63 /// An entry may contain CFI instructions. An instruction consists of an
66 struct Instruction {
67 Instruction(uint8_t Opcode)
75 std::vector<Instruction> Instructions;
77 /// Convenience methods to add a new instruction with the given opcode and
80 Instructions.push_back(Instruction(Opcode));
84 Instructions.push_back(Instruction(Opcode));
89 Instructions.push_back(Instruction(Opcode));
186 // TODO: at the moment only instruction names are dumped. Expand this to
188 for (std::vector<Instruction>::const_iterator I = Instructions.begin(),