Searched refs:SC (Results 1 - 25 of 85) sorted by path

1234

/freebsd-10.3-release/contrib/binutils/opcodes/
H A Dppc-opc.c246 /* The FL1 field in a POWER SC form instruction. */
252 /* The FL2 field in a POWER SC form instruction. */
297 /* The LEV field in an SC form instruction. */
460 /* The SV field in a POWER SC form instruction. */
1371 /* An SC form instruction. */
1372 #define SC(op, sa, lk) (OP (op) | ((((unsigned long)(sa)) & 1) << 1) | ((lk) & 1))
2555 { "sc", SC(17,1,0), SC_MASK, PPC, { LEV } },
2556 { "svc", SC(17,0,0), SC_MASK, POWER, { SVC_LEV, FL1, FL2 } },
2557 { "svcl", SC(17,0,1), SC_MASK, POWER, { SVC_LEV, FL1, FL2 } },
2558 { "svca", SC(1
1369 #define SC macro
[all...]
/freebsd-10.3-release/contrib/ee/
H A Dnew_curse.c1498 Ntemp->SC = start_c;
2093 fprintf(stderr, "columns=%d, lines=%d, SC=%d, SR=%d\n",window->Num_cols, window->Num_lines, window->SC, window->SR);
2153 virtual_scr->LX = window->LX + window->SC;
2169 for (user_col = 0, virt_col = window->SC;
2178 virt_col = window->SC + user_line->last_char;
2189 if (virtual_line->last_char < (user_line->last_char + window->SC))
2195 (user_line->last_char + window->SC));
3679 pos_column = col + window->SC;
H A Dnew_curse.h168 int SC; /* starting column */ member in struct:WIND
/freebsd-10.3-release/contrib/flex/
H A Dscan.l101 %x SECT2 SECT2PROLOG SECT3 CODEBLOCK PICKUPDEF SC CARETISBOL NUM QUOTE
501 BEGIN(SC);
748 <SC>{
/freebsd-10.3-release/contrib/gcc/config/sparc/
H A Dlb1spc.asm169 ! The number of bits in the result here is N*ITER+SC, where SC <= N.
516 ! The number of bits in the result here is N*ITER+SC, where SC <= N.
/freebsd-10.3-release/contrib/gcc/
H A Dlibgcc2.h159 typedef _Complex float SCtype __attribute__ ((mode (SC)));
/freebsd-10.3-release/contrib/groff/font/devdvi/
H A DMakefile.sub6 MI S EX SA SB SC \
/freebsd-10.3-release/contrib/groff/font/devdvi/generate/
H A DMakefile35 MI S SC EX SA SB
81 SC: $(srcdir)/textex.map
/freebsd-10.3-release/contrib/libpcap/
H A Dgrammar.y294 %token LANE LLC METAC BCC SC ILMIC OAMF4EC OAMF4SC
643 | SC { $$ = A_SC; }
H A Dscanner.l297 sc return SC;
/freebsd-10.3-release/contrib/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h452 template<typename SC, typename RetVal=void>
457 return ((SC*)this)->visitConstant((const SCEVConstant*)S);
459 return ((SC*)this)->visitTruncateExpr((const SCEVTruncateExpr*)S);
461 return ((SC*)this)->visitZeroExtendExpr((const SCEVZeroExtendExpr*)S);
463 return ((SC*)this)->visitSignExtendExpr((const SCEVSignExtendExpr*)S);
465 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S);
467 return ((SC*)this)->visitMulExpr((const SCEVMulExpr*)S);
469 return ((SC*)this)->visitUDivExpr((const SCEVUDivExpr*)S);
471 return ((SC*)this)->visitAddRecExpr((const SCEVAddRecExpr*)S);
473 return ((SC*)thi
[all...]
/freebsd-10.3-release/contrib/llvm/include/llvm/CodeGen/
H A DTargetSchedule.h89 const MCSchedClassDesc *SC = 0) const;
105 ProcResIter getWriteProcResBegin(const MCSchedClassDesc *SC) const {
107 return STI->getWriteProcResBegin(SC);
109 ProcResIter getWriteProcResEnd(const MCSchedClassDesc *SC) const {
110 return STI->getWriteProcResEnd(SC);
/freebsd-10.3-release/contrib/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h97 const MCSchedClassDesc *SC) const {
98 return &WriteProcResTable[SC->WriteProcResIdx];
101 const MCSchedClassDesc *SC) const {
102 return getWriteProcResBegin(SC) + SC->NumWriteProcResEntries;
105 const MCWriteLatencyEntry *getWriteLatencyEntry(const MCSchedClassDesc *SC, argument
107 assert(DefIdx < SC->NumWriteLatencyEntries &&
110 return &WriteLatencyTable[SC->WriteLatencyIdx + DefIdx];
113 int getReadAdvanceCycles(const MCSchedClassDesc *SC, unsigned UseIdx, argument
118 for (const MCReadAdvanceEntry *I = &ReadAdvanceTable[SC
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Analysis/
H A DScalarEvolution.cpp276 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
277 return SC->getValue()->isZero();
282 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
283 return SC->getValue()->isOne();
288 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
289 return SC->getValue()->isAllOnesValue();
300 const SCEVConstant *SC = dyn_cast<SCEVConstant>(Mul->getOperand(0)); local
301 if (!SC) return false;
304 return SC->getValue()->getValue().isNegative();
838 if (const SCEVConstant *SC
[all...]
H A DScalarEvolutionExpander.cpp820 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(S->getRHS())) {
821 const APInt &RHS = SC->getValue()->getValue();
1723 const SCEVConstant *SC = dyn_cast<SCEVConstant>(D->getRHS()); local
1724 if (!SC || SC->getValue()->isZero()) {
/freebsd-10.3-release/contrib/llvm/lib/CodeGen/
H A DMachineScheduler.cpp1688 const MCSchedClassDesc *SC = DAG->getSchedClass(&*I); local
1689 RemIssueCount += SchedModel->getNumMicroOps(I->getInstr(), SC)
1692 PI = SchedModel->getWriteProcResBegin(SC),
1693 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2113 const MCSchedClassDesc *SC = DAG->getSchedClass(SU); local
2169 PI = SchedModel->getWriteProcResBegin(SC),
2170 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2307 const MCSchedClassDesc *SC = DAG->getSchedClass(SU); local
2309 PI = SchedModel->getWriteProcResBegin(SC),
2310 PE = SchedModel->getWriteProcResEnd(SC); P
[all...]
H A DMachineTraceMetrics.cpp110 const MCSchedClassDesc *SC = SchedModel.resolveSchedClass(MI); local
111 if (!SC->isValid())
115 PI = SchedModel.getWriteProcResBegin(SC),
116 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
1214 const MCSchedClassDesc* SC = ExtraInstrs[I];
1215 if (!SC->isValid())
1218 PI = TE.MTM.SchedModel.getWriteProcResBegin(SC),
1219 PE = TE.MTM.SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
H A DTargetSchedule.cpp78 const MCSchedClassDesc *SC) const {
84 if (!SC)
85 SC = resolveSchedClass(MI);
86 if (SC->isValid())
87 return SC->NumMicroOps;
/freebsd-10.3-release/contrib/llvm/lib/IR/
H A DConstants.cpp1834 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1835 return SC; // Fold common cases
/freebsd-10.3-release/contrib/llvm/lib/TableGen/
H A DRecord.cpp366 const std::vector<Record*> &SC = Rec->getSuperClasses(); local
367 for (unsigned i = 0, e = SC.size(); i != e; ++i)
368 if (RTy->getRecord()->isSubClassOf(SC[i]))
1763 const std::vector<Record*> &SC = R.getSuperClasses(); local
1764 if (!SC.empty()) {
1766 for (unsigned i = 0, e = SC.size(); i != e; ++i)
1767 OS << " " << SC[i]->getNameInitAsString();
H A DTGParser.cpp149 Record *SC = SubClass.Rec; local
151 const std::vector<RecordVal> &Vals = SC->getValues();
156 const std::vector<Init *> &TArgs = SC->getTemplateArgs();
182 + ") of subclass '" + SC->getNameInitAsString() + "'!");
188 const std::vector<Record*> &SCs = SC->getSuperClasses();
189 ArrayRef<SMRange> SCRanges = SC->getSuperClassRanges();
197 if (CurRec->isSubClassOf(SC))
199 "Already subclass of '" + SC->getName() + "'!\n");
200 CurRec->addSuperClass(SC, SubClass.RefRange);
/freebsd-10.3-release/contrib/llvm/lib/Target/Mips/Disassembler/
H A DMipsDisassembler.cpp546 if(Inst.getOpcode() == Mips::SC){
/freebsd-10.3-release/contrib/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp885 unsigned LL, SC, AND, NOR, ZERO, BEQ; local
889 SC = Mips::SC;
897 SC = Mips::SCD;
951 BuildMI(BB, DL, TII->get(SC), Success).addReg(StoreVal).addReg(Ptr).addImm(0);
1091 BuildMI(BB, DL, TII->get(Mips::SC), Success)
1128 unsigned LL, SC, ZERO, BNE, BEQ; local
1132 SC = Mips::SC;
1138 SC
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp685 case PPCISD::SC: return "PPCISD::SC";
H A DPPCISelLowering.h245 /// CHAIN = SC CHAIN, Imm128 - System call. The 7-bit unsigned
247 SC, enumerator in enum:llvm::PPCISD::NodeType

Completed in 382 milliseconds

1234