Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type.h57 virtual bool IsByte() const { return false; } in IsByte() function
141 return IsChar() || IsInteger() || IsFloat() || IsConstant() || IsByte() || in IsCategory1Types()
149 return IsConstantByte() || IsByte() || IsBoolean(); in IsByteTypes()
152 return IsShort() || IsByte() || IsBoolean() || IsConstantShort(); in IsShortTypes()
158 return IsInteger() || IsConstant() || IsByte() || IsShort() || IsChar() || in IsIntegralTypes()
294 } else if (IsByte()) { in GetAssignmentType()
497 bool IsByte() const override { return true; } in IsByte() function
Dreg_type_test.cc100 EXPECT_FALSE(bool_reg_type.IsByte()); in TEST_F()
133 EXPECT_TRUE(byte_reg_type.IsByte()); in TEST_F()
166 EXPECT_FALSE(char_reg_type.IsByte()); in TEST_F()
199 EXPECT_FALSE(short_reg_type.IsByte()); in TEST_F()
232 EXPECT_FALSE(int_reg_type.IsByte()); in TEST_F()
265 EXPECT_FALSE(long_reg_type.IsByte()); in TEST_F()
298 EXPECT_FALSE(float_reg_type.IsByte()); in TEST_F()
331 EXPECT_FALSE(double_reg_type.IsByte()); in TEST_F()
Dmethod_verifier.cc2177 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) || in CodeFlowVerifyInstruction()
2178 ((return_type.IsBoolean() || return_type.IsByte() || in CodeFlowVerifyInstruction()