HomeSort by relevance Sort by last modified time
    Searched refs:Fmov (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/v8/src/arm64/
delayed-masm-arm64-inl.h 32 void DelayedMasm::Fmov(FPRegister fd, FPRegister fn) {
34 __ Fmov(fd, fn);
38 void DelayedMasm::Fmov(FPRegister fd, double imm) {
40 __ Fmov(fd, imm);
delayed-masm-arm64.h 73 inline void Fmov(FPRegister fd, FPRegister fn);
74 inline void Fmov(FPRegister fd, double imm);
lithium-gap-resolver-arm64.cc 165 __ Fmov(SavedFPValueRegister(), cgen_->ToDoubleRegister(source));
190 __ Fmov(cgen_->ToDoubleRegister(saved_destination_),
241 __ Fmov(result, cgen_->ToDouble(constant_source));
272 __ Fmov(cgen_->ToDoubleRegister(destination), src);
macro-assembler-arm64-inl.h 577 Fmov(tmp, value);
704 void MacroAssembler::Fmov(FPRegister fd, FPRegister fn) {
707 // registers. fmov(s0, s0) is not a no-op because it clears the top word of
708 // d0. Technically, fmov(d0, d0) is not a no-op either because it clears the
711 fmov(fd, fn);
716 void MacroAssembler::Fmov(FPRegister fd, Register rn) {
718 fmov(fd, rn);
722 void MacroAssembler::Fmov(FPRegister fd, double imm) {
725 Fmov(fd, static_cast<float>(imm));
731 fmov(fd, imm)
    [all...]
codegen-arm64.cc 60 masm.Fmov(d0, result);
203 __ Fmov(nan_d, rawbits_to_double(kHoleNanInt64));
577 __ Fmov(temp2.W(), double_temp1.S());
602 __ Fmov(double_temp2, 1.0);
615 __ Fmov(double_temp1, temp2);
macro-assembler-arm64.h 391 inline void Fmov(FPRegister fd, FPRegister fn);
392 inline void Fmov(FPRegister fd, Register rn);
397 inline void Fmov(FPRegister fd, double imm);
398 inline void Fmov(FPRegister fd, float imm);
401 void Fmov(FPRegister fd, T imm) {
403 Fmov(fd, static_cast<double>(imm));
405 inline void Fmov(Register rd, FPRegister fn);
    [all...]
code-stubs-arm64.cc 152 __ Fmov(result, double_scratch);
790 __ Fmov(minus_half_double, -0.5);
791 __ Fmov(half_double, 0.5);
830 __ Fmov(temp, fp_zero);
832 __ Fmov(temp, scratch0_double);
837 __ Fmov(temp, scratch0_double);
855 __ Fmov(scratch0_double, 1.0);
    [all...]
lithium-codegen-arm64.cc     [all...]
macro-assembler-arm64.cc     [all...]
  /external/vixl/test/
test-assembler-a64.cc     [all...]
test-utils-a64.cc 297 __ Fmov(dn, value);
302 __ Fmov(dn, first);
  /external/chromium_org/v8/test/cctest/
test-assembler-arm64.cc     [all...]
test-utils-arm64.cc 297 __ Fmov(dn, value);
302 __ Fmov(dn, first);
  /external/chromium_org/v8/src/compiler/arm64/
code-generator-arm64.cc 761 __ Fmov(result, g.ToDouble(constant_source));
766 __ Fmov(temp, g.ToDouble(constant_source));
773 __ Fmov(dst, src);
833 __ Fmov(temp, src);
834 __ Fmov(src, dst);
835 __ Fmov(dst, temp);
839 __ Fmov(temp, src);
  /external/vixl/src/a64/
macro-assembler-a64.cc 537 Fmov(tmp, value);
545 void MacroAssembler::Fmov(FPRegister fd, double imm) {
548 Fmov(fd, static_cast<float>(imm));
554 fmov(fd, imm);
556 fmov(fd, xzr);
563 void MacroAssembler::Fmov(FPRegister fd, float imm) {
566 Fmov(fd, static_cast<double>(imm));
572 fmov(fd, imm);
574 fmov(fd, wzr);
    [all...]
macro-assembler-a64.h 627 void Fmov(FPRegister fd, FPRegister fn) {
630 // registers. fmov(s0, s0) is not a no-op because it clears the top word of
631 // d0. Technically, fmov(d0, d0) is not a no-op either because it clears
634 fmov(fd, fn);
637 void Fmov(FPRegister fd, Register rn) {
640 fmov(fd, rn);
646 void Fmov(FPRegister fd, double imm);
647 void Fmov(FPRegister fd, float imm);
650 void Fmov(FPRegister fd, T imm) {
652 Fmov(fd, static_cast<double>(imm))
    [all...]
  /art/compiler/utils/arm64/
assembler_arm64.cc 339 ___ Fmov(reg_s(dst.AsSRegister()), reg_s(src.AsSRegister()));
343 ___ Fmov(reg_d(dst.AsDRegister()), reg_d(src.AsDRegister()));

Completed in 221 milliseconds