Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 993 Bytes

flrd.adoc

File metadata and controls

47 lines (37 loc) · 993 Bytes

th.flrd

Synopsis

Load indexed double-precision floating point value.

Mnemonic

th.flrd rd, rs1, rs2, imm2

Encoding
{reg:[
    { bits:  7, name: 0xb, attr: ['custom-0, 32 bit'] },
    { bits:  5, name: 'rd' },
    { bits:  3, name: 0x6, attr: ['FMem-Load'] },
    { bits:  5, name: 'rs1' },
    { bits:  5, name: 'rs2' },
    { bits:  2, name: 'imm2' },
    { bits:  5, name: 0x0c },
]}
Description

This instruction loads a double-precision floating point value into FP register rd from the address rs1 + (rs2 << imm2).

Operation
addr := rs1 + (rs2 << imm2)
rd := fmem[addr+7:addr]
Permission

This instruction can be executed in all privilege levels.

Exceptions

This instruction triggers the same exceptions that two corresponding FLD instructions would trigger.

Included in
Extension

XTheadFMemIdx ([xtheadfmemidx])