Home
last modified time | relevance | path

Searched refs:IsLongConstant (Results 1 – 21 of 21) sorted by relevance

/art/compiler/optimizing/
Dcommon_arm.h161 DCHECK(instr->IsLongConstant()) << instr->DebugName(); in Int32ConstantFrom()
180 DCHECK(instr->IsLongConstant()) << instr->DebugName(); in Int64ConstantFrom()
Dconstant_folding_test.cc187 ASSERT_TRUE(inst->IsLongConstant()); in TEST_F()
461 ASSERT_TRUE(inst->IsLongConstant()); in TEST_F()
525 ASSERT_TRUE(inst->IsLongConstant()); in TEST_F()
Ddead_code_elimination.cc139 } else if (left->IsLongConstant()) { in Evaluate()
Dcommon_arm64.h259 if (constant->IsLongConstant()) { in Arm64CanEncodeConstantAsImmediate()
Dssa_builder.cc715 } else if (value->IsLongConstant()) { in GetFloatOrDoubleEquivalent()
Dnodes.cc1790 } else if (GetInput()->IsLongConstant()) { in TryStaticEvaluation()
1865 } else if (GetInput()->IsLongConstant()) { in TryStaticEvaluation()
1880 } else if (GetLeft()->IsLongConstant()) { in TryStaticEvaluation()
1885 } else if (GetRight()->IsLongConstant()) { in TryStaticEvaluation()
2894 } else if (current->IsLongConstant()) { in InlineInto()
Dcode_generator.h553 } else if (constant->IsLongConstant()) { in GetInt64ValueOf()
Dcode_generator.cc90 } else if (location.GetConstant()->IsLongConstant()) { in CheckType()
1402 if (current->IsLongConstant()) { in EmitVRegInfo()
Dgraph_visualizer.cc327 } else if (constant->IsLongConstant()) { in DumpLocation()
Dcode_generator_x86.cc1450 DCHECK(constant->IsLongConstant() || constant->IsDoubleConstant()); in Move64()
3003 DCHECK(in.GetConstant()->IsLongConstant()); in VisitTypeConversion()
3033 DCHECK(in.GetConstant()->IsLongConstant()); in VisitTypeConversion()
3066 DCHECK(in.GetConstant()->IsLongConstant()); in VisitTypeConversion()
3098 DCHECK(in.GetConstant()->IsLongConstant()); in VisitTypeConversion()
3119 DCHECK(in.GetConstant()->IsLongConstant()); in VisitTypeConversion()
3628 DCHECK(second.GetConstant()->IsLongConstant()); in VisitMul()
5071 DCHECK(right.GetConstant()->IsLongConstant()); in VisitCompare()
6903 } else if (constant->IsLongConstant()) { in EmitMove()
Dcode_generator_x86_64.cc1627 if (constant->IsLongConstant()) { in Move()
1682 DCHECK(constant->IsLongConstant() || constant->IsDoubleConstant()); in Move()
3180 DCHECK(in.GetConstant()->IsLongConstant()); in VisitTypeConversion()
3639 if (mul->InputAt(1)->IsLongConstant() && in VisitMul()
3686 if (mul->InputAt(1)->IsLongConstant()) { in VisitMul()
6004 } else if (constant->IsLongConstant()) { in EmitMove()
Dinduction_var_analysis.cc1385 } else if (fetch->IsLongConstant()) { in FetchToString()
Dcode_generator_vector_arm64_sve.cc48 if (constant->IsLongConstant()) { in SVECanEncodeConstantAsImmediate()
Dinliner.cc1721 } else if (argument->IsLongConstant()) { in SubstituteArguments()
Dcode_generator_arm64.cc1412 } else if (constant->IsLongConstant()) { in MoveConstant()
1431 (cst->IsLongConstant() && type == DataType::Type::kInt64) || in CoherentConstantAndType()
1539 temp = (src_cst->IsLongConstant() || src_cst->IsDoubleConstant()) in MoveLocation()
1545 } else if (src_cst->IsLongConstant()) { in MoveLocation()
Dcode_generator_vector_arm64_neon.cc47 if (constant->IsLongConstant()) { in NEONCanEncodeConstantAsImmediate()
Dnodes.h3269 DCHECK(other->IsLongConstant()) << other->DebugName();
8478 } else if (constant->IsLongConstant()) {
8491 } else if (instruction->IsLongConstant()) {
Dinstruction_simplifier.cc1834 DCHECK(input_cst->IsIntConstant() || input_cst->IsLongConstant()); in TryToReuseDiv()
Dcode_generator_arm_vixl.cc3907 DCHECK(in.GetConstant()->IsLongConstant()); in VisitTypeConversion()
7219 } else if (constant->IsLongConstant()) { in EmitMove()
/art/runtime/verifier/
Dreg_type_test.cc98 EXPECT_FALSE(bool_reg_type.IsLongConstant()); in TEST_F()
131 EXPECT_FALSE(byte_reg_type.IsLongConstant()); in TEST_F()
164 EXPECT_FALSE(char_reg_type.IsLongConstant()); in TEST_F()
197 EXPECT_FALSE(short_reg_type.IsLongConstant()); in TEST_F()
230 EXPECT_FALSE(int_reg_type.IsLongConstant()); in TEST_F()
263 EXPECT_FALSE(long_reg_type.IsLongConstant()); in TEST_F()
296 EXPECT_FALSE(float_reg_type.IsLongConstant()); in TEST_F()
329 EXPECT_FALSE(double_reg_type.IsLongConstant()); in TEST_F()
Dreg_type.h95 bool IsLongConstant() const { return IsConstantLo(); } in IsLongConstant() function
166 bool IsLongTypes() const { return IsLongLo() || IsLongConstant(); } in IsLongTypes()
170 bool IsDoubleTypes() const { return IsDoubleLo() || IsLongConstant(); } in IsDoubleTypes()