| /freebsd-10-stable/contrib/llvm/lib/Target/X86/ |
| D | X86InstrShiftRotate.td | 19 let Uses = [CL] in { 22 [(set GR8:$dst, (shl GR8:$src1, CL))], IIC_SR>; 25 [(set GR16:$dst, (shl GR16:$src1, CL))], IIC_SR>, OpSize; 28 [(set GR32:$dst, (shl GR32:$src1, CL))], IIC_SR>; 31 [(set GR64:$dst, (shl GR64:$src1, CL))], IIC_SR>; 32 } // Uses = [CL] 69 // FIXME: Why do we need an explicit "Uses = [CL]" when the instr has a pattern 70 // using CL? 71 let Uses = [CL] in { 74 [(store (shl (loadi8 addr:$dst), CL), addr:$dst)], IIC_SR>; [all …]
|
| D | X86RegisterInfo.cpp | 540 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX: in getX86SubSuperRegister() 552 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX: in getX86SubSuperRegister() 553 return X86::CL; in getX86SubSuperRegister() 589 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX: in getX86SubSuperRegister() 625 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX: in getX86SubSuperRegister() 661 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX: in getX86SubSuperRegister()
|
| D | X86InstrCompiler.td | 1535 def : Pat<(shl GR8:$src1, (and CL, immShift32)), 1537 def : Pat<(shl GR16:$src1, (and CL, immShift32)), 1539 def : Pat<(shl GR32:$src1, (and CL, immShift32)), 1541 def : Pat<(store (shl (loadi8 addr:$dst), (and CL, immShift32)), addr:$dst), 1543 def : Pat<(store (shl (loadi16 addr:$dst), (and CL, immShift32)), addr:$dst), 1545 def : Pat<(store (shl (loadi32 addr:$dst), (and CL, immShift32)), addr:$dst), 1548 def : Pat<(srl GR8:$src1, (and CL, immShift32)), 1550 def : Pat<(srl GR16:$src1, (and CL, immShift32)), 1552 def : Pat<(srl GR32:$src1, (and CL, immShift32)), 1554 def : Pat<(store (srl (loadi8 addr:$dst), (and CL, immShift32)), addr:$dst), [all …]
|
| D | X86RegisterInfo.td | 50 def CL : X86Reg<"cl", 1>; 80 def CX : X86Reg<"cx", 1, [CL,CH]>; 319 (add AL, CL, DL, AH, CH, DH, BL, BH, SIL, DIL, BPL, SPL, 359 def GR8_ABCD_L : RegisterClass<"X86", [i8], 8, (add AL, CL, DL, BL)>; 372 (add AL, CL, DL, AH, CH, DH, BL, BH)> {
|
| /freebsd-10-stable/contrib/netbsd-tests/lib/libc/sys/ |
| D | t_clock_gettime.c | 92 #define CL(x) \ in check_timecounter() macro 100 CL(clock_gettime(CLOCK_REALTIME, &tsa)); in check_timecounter() 103 CL(time(&endlimit)); in check_timecounter() 109 CL(clock_gettime(CLOCK_REALTIME, &tsb)); in check_timecounter() 148 #undef CL in check_timecounter()
|
| /freebsd-10-stable/sys/boot/efi/libefi/ |
| D | efi_console.c | 49 static void CL(int); 217 CL(0); /* clear current line from cursor to end */ in CD() 220 CL(0); in CD() 252 CL(int direction) in CL() function
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| D | StackAddrEscapeChecker.cpp | 55 const CompoundLiteralExpr *CL = CR->getLiteralExpr(); in genName() local 58 << SM.getExpansionLineNumber(CL->getLocStart()) in genName() 60 range = CL->getSourceRange(); in genName()
|
| /freebsd-10-stable/usr.bin/tip/tip/ |
| D | remote.c | 205 if (cgetnum(bp, "cl", &CL) == -1) in getremcap() 206 CL = 0; in getremcap()
|
| D | vars.c | 105 "cdelay", (char *)&CL },
|
| D | tip.h | 89 long CL; /* char delay for file transfers to remote */ variable
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| D | ExprEngineC.cpp | 402 void ExprEngine::VisitCompoundLiteralExpr(const CompoundLiteralExpr *CL, in VisitCompoundLiteralExpr() argument 410 const Expr *Init = CL->getInitializer(); in VisitCompoundLiteralExpr() 411 SVal V = State->getSVal(CL->getInitializer(), LCtx); in VisitCompoundLiteralExpr() 417 Loc CLLoc = State->getLValue(CL, LCtx); in VisitCompoundLiteralExpr() 428 if (CL->isGLValue() || CL->getType()->isArrayType()) in VisitCompoundLiteralExpr() 432 B.generateNode(CL, Pred, State->BindExpr(CL, LCtx, V)); in VisitCompoundLiteralExpr()
|
| D | MemRegion.cpp | 292 CompoundLiteralRegion::ProfileRegion(ID, CL, superRegion); in Profile() 296 const CompoundLiteralExpr *CL, in ProfileRegion() argument 299 ID.AddPointer(CL); in ProfileRegion() 481 os << "{ " << (const void*) CL << " }"; in dumpToStream() 884 MemRegionManager::getCompoundLiteralRegion(const CompoundLiteralExpr *CL, in getCompoundLiteralRegion() argument 889 if (CL->isFileScope()) in getCompoundLiteralRegion() 897 return getSubRegion<CompoundLiteralRegion>(CL, sReg); in getCompoundLiteralRegion()
|
| /freebsd-10-stable/contrib/apr-util/test/ |
| D | Makefile.win | 80 CL = cl.exe 124 $(CL) $(CFLAGS) -c $< -Fd$(INTDIR)\ $(INCLUDES)
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| D | MemRegion.h | 819 const CompoundLiteralExpr *CL; variable 822 : TypedValueRegion(sReg, CompoundLiteralRegionKind), CL(cl) {} in CompoundLiteralRegion() 825 const CompoundLiteralExpr *CL, 829 return CL->getType(); in getValueType() 832 bool isBoundable() const { return !CL->isFileScope(); } in isBoundable() 838 const CompoundLiteralExpr *getLiteralExpr() const { return CL; } in getLiteralExpr() 1189 getCompoundLiteralRegion(const CompoundLiteralExpr *CL,
|
| D | Store.h | 91 Loc getLValueCompoundLiteral(const CompoundLiteralExpr *CL, in getLValueCompoundLiteral() argument 93 return loc::MemRegionVal(MRMgr.getCompoundLiteralRegion(CL, LC)); in getLValueCompoundLiteral()
|
| /freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| D | LegalizeTypesGeneric.cpp | 508 SDValue LL, LH, RL, RH, CL, CH; in SplitRes_SELECT() local 514 CL = CH = Cond; in SplitRes_SELECT() 519 GetSplitVector(Cond, CL, CH); in SplitRes_SELECT() 521 llvm::tie(CL, CH) = DAG.SplitVector(Cond, dl); in SplitRes_SELECT() 524 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), CL, LL, RL); in SplitRes_SELECT()
|
| /freebsd-10-stable/libexec/getty/ |
| D | main.c | 307 if (CL && *CL) in main() 308 putpad(CL); in main()
|
| /freebsd-10-stable/contrib/groff/font/devdvi/generate/ |
| D | texsy.map | 124 124 CL
|
| /freebsd-10-stable/contrib/groff/font/devdvi/ |
| D | S | 146 CL 815562,728178,135926 3 0174
|
| /freebsd-10-stable/contrib/groff/font/devX100-12/ |
| D | S | 117 CL 12,9,1 0 0247
|
| /freebsd-10-stable/contrib/groff/font/devX75-12/ |
| D | S | 117 CL 9,6,1 0 0247
|
| /freebsd-10-stable/contrib/groff/font/devX75/ |
| D | S | 117 CL 7,5 0 0247
|
| /freebsd-10-stable/contrib/groff/font/devX100/ |
| D | S | 117 CL 11,7 0 0247
|
| /freebsd-10-stable/contrib/binutils/opcodes/ |
| D | i386-dis.c | 277 #define CL { OP_IMREG, cl_reg } macro 1094 { "shldS", { Ev, Gv, CL } }, 1103 { "shrdS", { Ev, Gv, CL } }, 1629 { "rolA", { Eb, CL } }, 1630 { "rorA", { Eb, CL } }, 1631 { "rclA", { Eb, CL } }, 1632 { "rcrA", { Eb, CL } }, 1633 { "shlA", { Eb, CL } }, 1634 { "shrA", { Eb, CL } }, 1636 { "sarA", { Eb, CL } }, [all …]
|
| /freebsd-10-stable/sys/i386/i386/ |
| D | db_disasm.c | 66 #define CL 12 /* cl, for shifts */ macro 324 /*a5*/ { "shld", TRUE, LONG, op3(CL,R,E), 0 }, 333 /*ad*/ { "shrd", TRUE, LONG, op3(CL,R,E), 0 }, 815 /*d2*/ { "", TRUE, BYTE, op2(CL, E), db_Grp2 }, 816 /*d3*/ { "", TRUE, LONG, op2(CL, E), db_Grp2 }, 1392 case CL:
|