Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcommon_arm.h170 DCHECK(instr->IsLongConstant()) << instr->DebugName(); in Int32ConstantFrom()
189 DCHECK(instr->IsLongConstant()) << instr->DebugName(); in Int64ConstantFrom()
Dcommon_arm64.h161 DCHECK(instr->IsLongConstant()) << instr->DebugName(); in Int64ConstantFrom()
242 if (constant->IsLongConstant()) { in Arm64CanEncodeConstantAsImmediate()
Ddead_code_elimination.cc139 } else if (left->IsLongConstant()) { in Evaluate()
Dssa_builder.cc677 } else if (value->IsLongConstant()) { in GetFloatOrDoubleEquivalent()
Dcode_generator.cc96 } else if (location.GetConstant()->IsLongConstant()) { in CheckType()
1197 if (current->IsLongConstant()) { in EmitEnvironment()
Dgraph_visualizer.cc295 } else if (constant->IsLongConstant()) { in DumpLocation()
Dcode_generator.h515 } else if (constant->IsLongConstant()) { in GetInt64ValueOf()
Dcode_generator_x86_64.cc1372 if (constant->IsLongConstant()) { in Move()
1427 DCHECK(constant->IsLongConstant() || constant->IsDoubleConstant()); in Move()
2796 DCHECK(in.GetConstant()->IsLongConstant()); in VisitTypeConversion()
3254 if (mul->InputAt(1)->IsLongConstant() && in VisitMul()
3301 if (mul->InputAt(1)->IsLongConstant()) { in VisitMul()
5280 } else if (constant->IsLongConstant()) { in EmitMove()
Dinduction_var_analysis.cc1384 } else if (fetch->IsLongConstant()) { in FetchToString()
Dinliner.cc1811 } else if (argument->IsLongConstant()) { in TryBuildAndInlineHelper()
Dcode_generator_arm_vixl.cc3989 DCHECK(in.GetConstant()->IsLongConstant()); in VisitTypeConversion()
6870 } 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()