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

  /external/v8/src/crankshaft/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);
  /external/v8/src/arm64/
macro-assembler-arm64-inl.h 593 Fmov(tmp, value);
720 void MacroAssembler::Fmov(FPRegister fd, FPRegister fn) {
723 // registers. fmov(s0, s0) is not a no-op because it clears the top word of
724 // d0. Technically, fmov(d0, d0) is not a no-op either because it clears the
727 fmov(fd, fn);
732 void MacroAssembler::Fmov(FPRegister fd, Register rn) {
734 fmov(fd, rn);
738 void MacroAssembler::Fmov(FPRegister fd, double imm) {
741 Fmov(fd, static_cast<float>(imm));
747 fmov(fd, imm)
    [all...]