Home | History | Annotate | Download | only in quick

Lines Matching defs:dex_pc

634   for (uint32_t dex_pc : mir_graph_->catches_) {
635 while (it != end && *it < dex_pc) {
640 if (it == end || *it > dex_pc) {
641 LOG(INFO) << "Missing native PC for catch entry @ 0x" << std::hex << dex_pc;
770 uint32_t dex_pc = it.DexPc();
771 const uint8_t* references = dex_gc_map.FindBitMap(dex_pc, false);
772 CHECK(references != NULL) << "Missing ref for dex pc 0x" << std::hex << dex_pc <<