Home
last modified time | relevance | path

Searched refs:FLM (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Target/PowerPC/
DPPCInstrInfo.td3514 (ins i32imm:$FLM, f8rc:$FRB, i32imm:$L, i32imm:$W),
3515 "mtfsf $FLM, $FRB, $L, $W", IIC_IntMFFS, []>;
3517 (ins i32imm:$FLM, f8rc:$FRB, i32imm:$L, i32imm:$W),
3518 "mtfsf. $FLM, $FRB, $L, $W", IIC_IntMFFS, []>, isDOT;
3520 def : InstAlias<"mtfsf $FLM, $FRB", (MTFSF i32imm:$FLM, f8rc:$FRB, 0, 0)>;
3521 def : InstAlias<"mtfsf. $FLM, $FRB", (MTFSFo i32imm:$FLM, f8rc:$FRB, 0, 0)>;
DPPCInstrFormats.td1249 bits<8> FLM;
1257 let Inst{7-14} = FLM;
/external/v8/src/ppc/
Dassembler-ppc.cc2280 void Assembler::mtfsf(const DoubleRegister frb, bool L, int FLM, bool W, in mtfsf() argument
2282 emit(EXT4 | MTFSF | frb.code() * B11 | W * B16 | FLM * B17 | L * B25 | rc); in mtfsf()
Dassembler-ppc.h1090 void mtfsf(const DoubleRegister frb, bool L = 1, int FLM = 0, bool W = 0,