Lines Matching refs:kInt32
670 HInstruction* value = LoadLocal(instruction.VRegA(), DataType::Type::kInt32); in If_21_22t()
675 HInstruction* second = LoadLocal(instruction.VRegB(), DataType::Type::kInt32); in If_21_22t()
729 HInstruction* second = LoadLocal(instruction.VRegC(), DataType::Type::kInt32); in Binop_23x_shift()
749 HInstruction* second = LoadLocal(instruction.VRegB(), DataType::Type::kInt32); in Binop_12x_shift()
766 HInstruction* first = LoadLocal(instruction.VRegB(), DataType::Type::kInt32); in Binop_22s()
771 AppendInstruction(new (allocator_) T(DataType::Type::kInt32, first, second, dex_pc)); in Binop_22s()
777 HInstruction* first = LoadLocal(instruction.VRegB(), DataType::Type::kInt32); in Binop_22b()
782 AppendInstruction(new (allocator_) T(DataType::Type::kInt32, first, second, dex_pc)); in Binop_22b()
812 HInstruction* value = LoadLocal(instruction.VRegA(), DataType::Type::kInt32); in BuildSwitch()
1265 DataType::Kind(index_type) != DataType::Type::kInt32) { in DecideVarHandleIntrinsic()
1887 constexpr DataType::Type kInt32 = DataType::Type::kInt32; in BuildSimpleIntrinsic() local
1897 instruction = new (allocator_) HRor(kInt32, /*value=*/ nullptr, /*distance=*/ nullptr); in BuildSimpleIntrinsic()
1906 kInt32, /*first=*/ nullptr, /*second=*/ nullptr, ComparisonBias::kNoBias, dex_pc); in BuildSimpleIntrinsic()
1914 kInt32, /*first=*/ nullptr, graph_->GetIntConstant(0), ComparisonBias::kNoBias, dex_pc); in BuildSimpleIntrinsic()
1974 instruction = new (allocator_) HMin(kInt32, /*left=*/ nullptr, /*right=*/ nullptr, dex_pc); in BuildSimpleIntrinsic()
1986 instruction = new (allocator_) HMax(kInt32, /*left=*/ nullptr, /*right=*/ nullptr, dex_pc); in BuildSimpleIntrinsic()
1998 instruction = new (allocator_) HAbs(kInt32, /*input=*/ nullptr, dex_pc); in BuildSimpleIntrinsic()
2024 HNeg* neg = new (allocator_) HNeg(kInt32, instruction->InputAt(1u)); in BuildSimpleIntrinsic()
2362 DCHECK(type == DataType::Type::kInt32 || type == DataType::Type::kInt64); in BuildCheckedDivRem()
2367 if (type == DataType::Type::kInt32) { in BuildCheckedDivRem()
2377 (type == DataType::Type::kInt32 && second->AsIntConstant()->GetValue() == 0) || in BuildCheckedDivRem()
2402 HInstruction* index = LoadLocal(index_reg, DataType::Type::kInt32); in BuildArrayAccess()
2448 DataType::Type type = is_reference_array ? DataType::Type::kReference : DataType::Type::kInt32; in BuildFilledNewArray()
2519 DataType::Type::kInt32, in BuildFillArrayData()
2849 HInstruction* value = LoadLocal(instruction.VRegB(), DataType::Type::kInt32); in ProcessDexInstruction()
2876 DCHECK(value->GetType() == DataType::Type::kInt32 || in ProcessDexInstruction()
2987 Unop_12x<HNeg>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3007 Unop_12x<HNot>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3017 Conversion_12x(instruction, DataType::Type::kInt32, DataType::Type::kInt64, dex_pc); in ProcessDexInstruction()
3022 Conversion_12x(instruction, DataType::Type::kInt32, DataType::Type::kFloat32, dex_pc); in ProcessDexInstruction()
3027 Conversion_12x(instruction, DataType::Type::kInt32, DataType::Type::kFloat64, dex_pc); in ProcessDexInstruction()
3032 Conversion_12x(instruction, DataType::Type::kInt64, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3047 Conversion_12x(instruction, DataType::Type::kFloat32, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3062 Conversion_12x(instruction, DataType::Type::kFloat64, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3077 Conversion_12x(instruction, DataType::Type::kInt32, DataType::Type::kInt8, dex_pc); in ProcessDexInstruction()
3082 Conversion_12x(instruction, DataType::Type::kInt32, DataType::Type::kInt16, dex_pc); in ProcessDexInstruction()
3087 Conversion_12x(instruction, DataType::Type::kInt32, DataType::Type::kUint16, dex_pc); in ProcessDexInstruction()
3092 Binop_23x<HAdd>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3112 Binop_23x<HSub>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3132 Binop_12x<HAdd>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3137 Binop_23x<HMul>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3158 dex_pc, DataType::Type::kInt32, false, true); in ProcessDexInstruction()
3180 dex_pc, DataType::Type::kInt32, false, false); in ProcessDexInstruction()
3201 Binop_23x<HAnd>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3211 Binop_23x_shift<HShl>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3221 Binop_23x_shift<HShr>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3231 Binop_23x_shift<HUShr>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3241 Binop_23x<HOr>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3251 Binop_23x<HXor>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3276 Binop_12x<HSub>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3296 Binop_12x<HMul>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3317 dex_pc, DataType::Type::kInt32, false, true); in ProcessDexInstruction()
3329 dex_pc, DataType::Type::kInt32, false, false); in ProcessDexInstruction()
3350 Binop_12x_shift<HShl>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3360 Binop_12x_shift<HShr>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3370 Binop_12x_shift<HUShr>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3390 Binop_12x<HAnd>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3400 Binop_12x<HOr>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3410 Binop_12x<HXor>(instruction, DataType::Type::kInt32, dex_pc); in ProcessDexInstruction()
3482 dex_pc, DataType::Type::kInt32, true, true); in ProcessDexInstruction()
3489 dex_pc, DataType::Type::kInt32, true, false); in ProcessDexInstruction()
3520 HInstruction* length = LoadLocal(instruction.VRegB_22c(), DataType::Type::kInt32); in ProcessDexInstruction()
3646 ARRAY_XX(, DataType::Type::kInt32); in ProcessDexInstruction()