Home
last modified time | relevance | path

Searched refs:fp_value (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_x86_64.cc3963 float fp_value = constant->AsFloatConstant()->GetValue(); in EmitMove() local
3964 int32_t value = bit_cast<int32_t, float>(fp_value); in EmitMove()
3971 __ movss(dest, codegen_->LiteralFloatAddress(fp_value)); in EmitMove()
3980 double fp_value = constant->AsDoubleConstant()->GetValue(); in EmitMove() local
3981 int64_t value = bit_cast<int64_t, double>(fp_value); in EmitMove()
3987 __ movsd(dest, codegen_->LiteralDoubleAddress(fp_value)); in EmitMove()
Dcode_generator_x86.cc4104 float fp_value = constant->AsFloatConstant()->GetValue(); in EmitMove() local
4105 int32_t value = bit_cast<int32_t, float>(fp_value); in EmitMove()