Home | History | Annotate | Download | only in dex

Lines Matching defs:Instructions

43   ALWAYS_INLINE const uint16_t* Instructions() const {
48 explicit DexInstructionPcPair(const uint16_t* instructions, uint32_t dex_pc)
49 : instructions_(instructions), dex_pc_(dex_pc) {}
79 // Instructions from the start of the code item.
80 ALWAYS_INLINE const uint16_t* Instructions() const {
81 return data_.Instructions();
90 DCHECK_EQ(lhs.Instructions(), rhs.Instructions()) << "Comparing different code items.";
101 DCHECK_EQ(lhs.Instructions(), rhs.Instructions()) << "Comparing different code items.";
120 // A helper class for a code_item's instructions using range based for loop syntax.
129 : DexInstructionIterator(pair.Instructions(), pair.DexPc()) {}
166 DCHECK_EQ(start.Instructions(), end.Instructions())
211 const uint16_t* Instructions() const {
212 return data_.Instructions();