Home
last modified time | relevance | path

Searched refs:cst (Results 1 – 4 of 4) sorted by relevance

/art/compiler/dex/
Dgvn_dead_code_elimination_test.cc2042 MIR* cst = &mirs_[0]; in TEST_F() local
2043 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()
/art/compiler/optimizing/
Dcode_generator_arm64.cc718 HConstant* cst = constant.GetConstant(); in CoherentConstantAndType() local
719 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()
Dcode_generator_arm.cc2503 int32_t cst = second.GetConstant()->AsIntConstant()->GetValue(); in HandleShift() local
2504 uint32_t shift_value = static_cast<uint32_t>(cst & kMaxIntShiftValue); in HandleShift()
Dcode_generator_mips64.cc1905 void InstructionCodeGeneratorMIPS64::VisitDoubleConstant(HDoubleConstant* cst ATTRIBUTE_UNUSED) { in VisitDoubleConstant()