Home
last modified time | relevance | path

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

/external/llvm/lib/Target/PowerPC/
DPPCInstrInfo.td3603 (ins i32imm:$FLM, f8rc:$FRB, i32imm:$L, i32imm:$W),
3604 "mtfsf $FLM, $FRB, $L, $W", IIC_IntMFFS, []>;
3606 (ins i32imm:$FLM, f8rc:$FRB, i32imm:$L, i32imm:$W),
3607 "mtfsf. $FLM, $FRB, $L, $W", IIC_IntMFFS, []>, isDOT;
3609 def : InstAlias<"mtfsf $FLM, $FRB", (MTFSF i32imm:$FLM, f8rc:$FRB, 0, 0)>;
3610 def : InstAlias<"mtfsf. $FLM, $FRB", (MTFSFo i32imm:$FLM, f8rc:$FRB, 0, 0)>;
DPPCInstrFormats.td1454 bits<8> FLM;
1462 let Inst{7-14} = FLM;
/external/v8/src/ppc/
Dassembler-ppc.cc2325 void Assembler::mtfsf(const DoubleRegister frb, bool L, int FLM, bool W, in mtfsf() argument
2327 emit(EXT4 | MTFSF | frb.code() * B11 | W * B16 | FLM * B17 | L * B25 | rc); in mtfsf()
Dassembler-ppc.h1092 void mtfsf(const DoubleRegister frb, bool L = 1, int FLM = 0, bool W = 0,