Displaying 1 result from an estimated 1 matches for "constf64".
Did you mean:
const64
2015 Dec 02
4
lower 64 bits constant
...9; and 'double'. So I define
them like this:
def CONSTI64 : InstFOO<(outs GRWideRegs:$dst),
(ins i64imm:$src),
"const-long $dst, $src",
[(set (i64 GRWideRegs:$dst), imm:$src)]>{
let isMoveImm = 1;
}
def CONSTF64 : InstFOO<(outs GRWideRegs:$dst),
(ins f64imm:$src),
"const-double $dst, $src",
[(set (f64 GRWideRegs:$dst), fpimm:$src)]>{
let isMoveImm = 1;
}
GRWideRegs can be f64 and i64. However, the 'const-long' w...