Home
last modified time | relevance | path

Searched refs:IsLong (Results 1 – 3 of 3) sorted by relevance

/art/runtime/verifier/
Dreg_type_test.cc125 EXPECT_FALSE(bool_reg_type.IsLong()); in TEST_F()
158 EXPECT_FALSE(byte_reg_type.IsLong()); in TEST_F()
191 EXPECT_FALSE(char_reg_type.IsLong()); in TEST_F()
224 EXPECT_FALSE(short_reg_type.IsLong()); in TEST_F()
257 EXPECT_FALSE(int_reg_type.IsLong()); in TEST_F()
290 EXPECT_TRUE(long_reg_type.IsLong()); in TEST_F()
323 EXPECT_FALSE(float_reg_type.IsLong()); in TEST_F()
356 EXPECT_FALSE(double_reg_type.IsLong()); in TEST_F()
Dreg_type.h175 virtual bool IsLong() const { return false; } in IsLong() function
517 bool IsLong() const override { return true; } in IsLong() function
Dmethod_verifier.cc4375 (insn_type.IsLong() && component_type.IsDouble()))) { in VerifyAGet()
4407 } else if (target_type.IsLong()) { in VerifyPrimitivePut()
4408 instruction_compatible = insn_type.IsLong(); in VerifyPrimitivePut()
4418 instruction_compatible = insn_type.IsLong(); // no put-double, so expect put-long in VerifyPrimitivePut()
4770 (field_type->IsDouble() && insn_type.IsLong())) { in VerifyISFieldAccess()