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 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...]
macro-assembler-arm64.h 407 inline void Fmov(FPRegister fd, FPRegister fn);
408 inline void Fmov(FPRegister fd, Register rn);
413 inline void Fmov(FPRegister fd, double imm);
414 inline void Fmov(FPRegister fd, float imm);
417 void Fmov(FPRegister fd, T imm) {
419 Fmov(fd, static_cast<double>(imm));
421 inline void Fmov(Register rd, FPRegister fn);
    [all...]
  /external/vixl/src/vixl/a64/
macro-assembler-a64.cc     [all...]
macro-assembler-a64.h     [all...]

Completed in 2470 milliseconds