Home
last modified time | relevance | path

Searched refs:LiteralDoubleAddress (Results 1 – 5 of 5) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_x86_64.h650 Address LiteralDoubleAddress(double v);
Dcode_generator_x86.h617 Address LiteralDoubleAddress(double v, HX86ComputeBaseMethodAddress* method_base, Register reg);
Dcode_generator_x86_64.cc2197 codegen_->LiteralDoubleAddress( in GenerateCompareTest()
2619 __ ucomisd(lhs_reg, codegen_->LiteralDoubleAddress(value)); in HandleCondition()
2794 __ ucomisd(left_reg, codegen_->LiteralDoubleAddress(value)); in VisitCompare()
3616 __ comisd(input, codegen_->LiteralDoubleAddress(kPrimIntMax)); in VisitTypeConversion()
3677 __ comisd(input, codegen_->LiteralDoubleAddress( in VisitTypeConversion()
3917 codegen_->LiteralDoubleAddress( in VisitAdd()
4008 codegen_->LiteralDoubleAddress( in VisitSub()
4132 codegen_->LiteralDoubleAddress( in VisitMul()
4593 codegen_->LiteralDoubleAddress( in VisitDiv()
8454 Address CodeGeneratorX86_64::LiteralDoubleAddress(double v) { in LiteralDoubleAddress() function in art::x86_64::CodeGeneratorX86_64
Dintrinsics_x86_64.cc244 __ comisd(input, codegen->LiteralDoubleAddress(kPositiveInfinity)); in GenIsInfinite()
250 __ comisd(input, codegen->LiteralDoubleAddress(kNegativeInfinity)); in GenIsInfinite()
432 __ comisd(t2, codegen_->LiteralDoubleAddress(0.5)); in VisitMathRoundDouble()
434 __ addsd(t1, codegen_->LiteralDoubleAddress(1.0f)); in VisitMathRoundDouble()
Dcode_generator_x86.cc2071 codegen_->LiteralDoubleAddress( in GenerateFPCompare()
3707 codegen_->LiteralDoubleAddress( in VisitAdd()
3813 codegen_->LiteralDoubleAddress( in VisitSub()
4003 codegen_->LiteralDoubleAddress( in VisitMul()
4415 codegen_->LiteralDoubleAddress( in VisitDiv()
9025 codegen_->LiteralDoubleAddress( in VisitX86LoadFromConstantTable()
9140 Address CodeGeneratorX86::LiteralDoubleAddress(double v, in LiteralDoubleAddress() function in art::x86::CodeGeneratorX86