Searched refs:SLL (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/
H A DMipsAnalyzeImmediate.cpp45 AddInstr(SeqLs, Inst(SLL, Shamt));
79 // Replace a ADDiu & SLL pair with a LUi.
82 // SLL 18
86 // Check if the first two instructions are ADDiu and SLL and the shift amount
89 (Seq[1].Opc != SLL) || (Seq[1].ImmOpnd < 16))
132 SLL = Mips::SLL;
137 SLL = Mips::DSLL;
H A DMipsAnalyzeImmediate.h43 /// GetInstSeqLsSLL - Get instrucion sequences which end with a SLL to
50 /// ReplaceADDiuSLLWithLUi - Replace an ADDiu & SLL pair with a LUi.
58 unsigned ADDiu, ORi, SLL, LUi; member in class:llvm::MipsAnalyzeImmediate
H A DMipsCodeEmitter.cpp317 BuildMI(MBB, &*MI, MI->getDebugLoc(), II->get(Mips::SLL), Mips::ZERO)
H A DMipsISelLowering.cpp1042 BuildMI(BB, DL, TII->get(Mips::SLL), ShiftAmt).addReg(PtrLSB2).addImm(3);
1110 BuildMI(BB, DL, TII->get(Mips::SLL), SllRes)
1285 BuildMI(BB, DL, TII->get(Mips::SLL), ShiftAmt).addReg(PtrLSB2).addImm(3);
1335 BuildMI(BB, DL, TII->get(Mips::SLL), SllRes)
1980 SDValue SLL = DAG.getNode(ISD::SHL, DL, MVT::i64, LWR, Const32); local
1981 SDValue SRL = DAG.getNode(ISD::SRL, DL, MVT::i64, SLL, Const32);
/freebsd-10.0-release/crypto/openssl/crypto/sha/asm/
H A Dsha512-mips.pl83 $SLL="dsll"; # shift left logical
97 $SLL="sll"; # shift left logical
161 $SLL $tmp1,$e,`$SZ*8-@Sigma1[2]`
165 $SLL $tmp1,$e,`$SZ*8-@Sigma1[1]`
169 $SLL $tmp1,$e,`$SZ*8-@Sigma1[0]`
177 $SLL $tmp1,$a,`$SZ*8-@Sigma0[2]`
181 $SLL $tmp1,$a,`$SZ*8-@Sigma0[1]`
185 $SLL $tmp1,$a,`$SZ*8-@Sigma0[0]`
212 $SLL $tmp1,@X[1],`$SZ*8-@sigma0[2]`
215 $SLL
[all...]
H A Dsha512-sparcv9.pl58 $SLL="sllx"; # shift left logical
84 $SLL="sll"; # shift left logical
224 $SLL $e,`$SZ*8-@Sigma1[2]`,$tmp1
228 $SLL $e,`$SZ*8-@Sigma1[1]`,$tmp1
232 $SLL $e,`$SZ*8-@Sigma1[0]`,$tmp1
240 $SLL $a,`$SZ*8-@Sigma0[2]`,$tmp1
244 $SLL $a,`$SZ*8-@Sigma0[1]`,$tmp1
248 $SLL $a,`$SZ*8-@Sigma0[0]`,$tmp1
/freebsd-10.0-release/crypto/openssl/crypto/bn/asm/
H A Dmips.pl63 $SLL="dsll";
78 $SLL="sll";
890 $SLL $a2,1
897 $SLL $t2,$t1
905 $SLL $a0,$t9
906 $SLL $a1,$t9
930 $SLL $t3,$a0,4*$BNSZ # bits
951 $SLL $a1,4*$BNSZ # bits
953 $SLL $v0,$QT,4*$BNSZ # bits
963 $SLL
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCCodeEmitter.cpp145 // Unfortunately in MIPS both NOP and SLL will come in with Binary == 0
148 if ((Opcode != Mips::NOP) && (Opcode != Mips::SLL) && !Binary)
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOverload.cpp6566 // (we could precompute SLL x UI for all known platforms, but it's
6571 Flt, Dbl, LDbl, SI, SL, SLL, S128, UI, UL, ULL, U128
6578 /* SI*/ { Flt, Dbl, LDbl, SI, SL, SLL, S128, UI, UL, ULL, U128 },
6579 /* SL*/ { Flt, Dbl, LDbl, SL, SL, SLL, S128, Dep, UL, ULL, U128 },
6580 /* SLL*/ { Flt, Dbl, LDbl, SLL, SLL, SLL, S128, Dep, Dep, ULL, U128 },
6608 assert(L == SLL || R == SLL);
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp426 NopInst.setOpcode(Mips::SLL);

Completed in 97 milliseconds