Searched refs:cst (Results 1 – 4 of 4) sorted by relevance
2042 MIR* cst = &mirs_[0]; in TEST_F() local2043 ASSERT_EQ(Instruction::CONST, cst->dalvikInsn.opcode); in TEST_F()2044 ASSERT_EQ(0, cst->ssa_rep->num_uses); in TEST_F()2045 ASSERT_EQ(1, cst->ssa_rep->num_defs); in TEST_F()2046 EXPECT_EQ(1, cst->ssa_rep->defs[0]); in TEST_F()2047 EXPECT_EQ(2u, cst->dalvikInsn.vA); in TEST_F()
718 HConstant* cst = constant.GetConstant(); in CoherentConstantAndType() local719 return (cst->IsIntConstant() && type == Primitive::kPrimInt) || in CoherentConstantAndType()721 (cst->IsNullConstant() && type == Primitive::kPrimInt) || in CoherentConstantAndType()722 (cst->IsLongConstant() && type == Primitive::kPrimLong) || in CoherentConstantAndType()723 (cst->IsFloatConstant() && type == Primitive::kPrimFloat) || in CoherentConstantAndType()724 (cst->IsDoubleConstant() && type == Primitive::kPrimDouble); in CoherentConstantAndType()
2503 int32_t cst = second.GetConstant()->AsIntConstant()->GetValue(); in HandleShift() local2504 uint32_t shift_value = static_cast<uint32_t>(cst & kMaxIntShiftValue); in HandleShift()
1905 void InstructionCodeGeneratorMIPS64::VisitDoubleConstant(HDoubleConstant* cst ATTRIBUTE_UNUSED) { in VisitDoubleConstant()