Lines Matching refs:dex_pc

240     uint32_t dex_pc = op->GetDexPc();  in TryDeMorganNegationFactoring()  local
251 hbin = new (GetGraph()->GetAllocator()) HOr(type, src_left, src_right, dex_pc); in TryDeMorganNegationFactoring()
253 hbin = new (GetGraph()->GetAllocator()) HAnd(type, src_left, src_right, dex_pc); in TryDeMorganNegationFactoring()
257 hnot = new (GetGraph()->GetAllocator()) HBooleanNot(hbin, dex_pc); in TryDeMorganNegationFactoring()
259 hnot = new (GetGraph()->GetAllocator()) HNot(type, hbin, dex_pc); in TryDeMorganNegationFactoring()
2320 uint32_t dex_pc = invoke->GetDexPc(); in SimplifyFP2Int() local
2340 HCondition* condition = new (GetGraph()->GetAllocator()) HNotEqual(x, x, dex_pc); in SimplifyFP2Int()
2344 HInstruction* select = new (GetGraph()->GetAllocator()) HSelect(condition, nan, invoke, dex_pc); in SimplifyFP2Int()
2352 uint32_t dex_pc = invoke->GetDexPc(); in SimplifyStringCharAt() local
2356 HArrayLength* length = new (allocator) HArrayLength(str, dex_pc, /* is_string_length= */ true); in SimplifyStringCharAt()
2359 index, length, dex_pc, /* is_string_char_at= */ true); in SimplifyStringCharAt()
2365 dex_pc, in SimplifyStringCharAt()
2374 uint32_t dex_pc = invoke->GetDexPc(); in SimplifyStringLength() local
2378 new (GetGraph()->GetAllocator()) HArrayLength(str, dex_pc, /* is_string_length= */ true); in SimplifyStringLength()
2403 uint32_t dex_pc = invoke->GetDexPc(); in SimplifyStringIndexOf() local
2406 new (allocator) HEqual(invoke->InputAt(1), GetGraph()->GetIntConstant(c), dex_pc); in SimplifyStringIndexOf()
2411 dex_pc); in SimplifyStringIndexOf()