Home | History | Annotate | Download | only in quick

Lines Matching defs:it

42 template <typename It>
44 const Signature& signature, uint32_t size, It first) {
187 * Store the Dalvik register id in alias_info. Mark the MSB if it is a 64-bit
642 for (auto it = table.DexToPcBegin(), end = table.DexToPcEnd(); it != end; ++it) {
643 dex_pcs.push_back(it.DexPc());
645 // Sort dex_pcs, so that we can quickly check it against the ordered mir_graph_->catches_.
649 auto it = dex_pcs.begin(), end = dex_pcs.end();
651 while (it != end && *it < dex_pc) {
652 LOG(INFO) << "Unexpected catch entry @ dex pc 0x" << std::hex << *it;
653 ++it;
656 if (it == end || *it > dex_pc) {
660 ++it;
766 auto it = table.PcToDexBegin();
770 CHECK_EQ(tgt_lir->offset, it.NativePcOffset());
771 CHECK_EQ(tgt_lir->dalvik_offset, it.DexPc());
772 ++it;
780 CHECK(it == table.PcToDexEnd());
787 // If we're not promoting to physical registers, it's safe to use the verifier's notion of
854 for (auto it = mapping_table.PcToDexBegin(), end = mapping_table.PcToDexEnd(); it != end; ++it) {
855 uint32_t native_offset = it.NativePcOffset();
870 for (auto it = mapping_table.PcToDexBegin(), end = mapping_table.PcToDexEnd(); it != end; ++it) {
871 uint32_t native_offset = it.NativePcOffset();
872 uint32_t dex_pc = it.DexPc();
880 // after it has been deleted.
1182 // temps that do not need spilled, it can actually provide a small region.
1315 // Loads a Class pointer, which is a reference as it lives in the heap.