Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type_test.cc96 EXPECT_FALSE(bool_reg_type.IsLong()); in TEST_F()
129 EXPECT_FALSE(byte_reg_type.IsLong()); in TEST_F()
162 EXPECT_FALSE(char_reg_type.IsLong()); in TEST_F()
195 EXPECT_FALSE(short_reg_type.IsLong()); in TEST_F()
228 EXPECT_FALSE(int_reg_type.IsLong()); in TEST_F()
261 EXPECT_TRUE(long_reg_type.IsLong()); in TEST_F()
294 EXPECT_FALSE(float_reg_type.IsLong()); in TEST_F()
327 EXPECT_FALSE(double_reg_type.IsLong()); in TEST_F()
Dmethod_verifier.cc3752 (insn_type.IsLong() && component_type.IsDouble()))) { in VerifyAGet()
3782 } else if (target_type.IsLong()) { in VerifyPrimitivePut()
3783 instruction_compatible = insn_type.IsLong(); in VerifyPrimitivePut()
3793 instruction_compatible = insn_type.IsLong(); // no put-double, so expect put-long in VerifyPrimitivePut()
4040 (field_type->IsDouble() && insn_type.IsLong())) { in VerifyISFieldAccess()
4154 } else if (field_type->IsLong()) { in VerifyQuickFieldAccess()
4155 instruction_compatible = insn_type.IsLong(); in VerifyQuickFieldAccess()
4158 instruction_compatible = insn_type.IsLong(); // no [is]put-double, so expect [is]put-long in VerifyQuickFieldAccess()
4380 } else if (type.IsLong()) { in DescribeVRegs()
Dreg_type.h162 virtual bool IsLong() const { return false; } in IsLong() function
491 bool IsLong() const OVERRIDE { return true; } in IsLong() function