Home
last modified time | relevance | path

Searched refs:FILLED_NEW_ARRAY (Results 1 – 12 of 12) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
DFormat35c.java70 if (info.opcode == Opcode.FILLED_NEW_ARRAY) { in getPoolIndexKind()
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DOpcode.java56 FILLED_NEW_ARRAY, enumConstant
DCodeItem.java163 || opcode == Opcode.FILLED_NEW_ARRAY in incrementIndex()
DInstruction.java356 addOpcodeInfo(Opcode.FILLED_NEW_ARRAY, "filled-new-array", 0x24, new Format35c()); in addOpcodeInfo() argument
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DRandomInstructionGenerator.java133 if (Opcode.isBetween(newOpcode, Opcode.FILLED_NEW_ARRAY, Opcode.FILL_ARRAY_DATA) in generateMutation()
/art/runtime/
Ddex_instruction.cc364 case FILLED_NEW_ARRAY: in DumpString()
Ddex_instruction_list.h58 …V(0x24, FILLED_NEW_ARRAY, "filled-new-array", k35c, kIndexTypeRef, kContinue | kThrow | kClobber, …
/art/runtime/interpreter/
Dinterpreter_common.cc1117 DCHECK(inst->Opcode() == Instruction::FILLED_NEW_ARRAY || in DoFilledNewArray()
Dinterpreter_switch_impl.cc562 case Instruction::FILLED_NEW_ARRAY: { in ExecuteSwitchImpl()
/art/test/510-checker-try-catch/smali/
DBuilder.smali1276 # FILLED_NEW_ARRAY it follows, even if there is a try boundary between them.
/art/runtime/verifier/
Dmethod_verifier.cc2490 case Instruction::FILLED_NEW_ARRAY: in CodeFlowVerifyInstruction()
4586 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY); in VerifyNewArray()
/art/compiler/optimizing/
Dinstruction_builder.cc2532 case Instruction::FILLED_NEW_ARRAY: { in ProcessDexInstruction()