Home
last modified time | relevance | path

Searched refs:LS (Results 1 – 25 of 206) sorted by relevance

123456789

/openbsd-src/gnu/usr.bin/binutils/opcodes/
H A Dmcore-opc.h24 OMa, SI, I7, LS, BR, BL, LR, LJ, enumerator
162 { "ld", LS, 0, 0x8000 },
163 { "ldw", LS, 0, 0x8000 },
164 { "ld.w", LS, 0, 0x8000 },
165 { "st", LS, 0, 0x9000 },
166 { "stw", LS, 0, 0x9000 },
167 { "st.w", LS, 0, 0x9000 },
168 { "ldb", LS, 0, 0xA000 },
169 { "ld.b", LS, 0, 0xA000 },
170 { "stb", LS, 0, 0xB000 },
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Dmcore-opc.h24 OMa, SI, I7, LS, BR, BL, LR, LJ, enumerator
162 { "ld", LS, 0, 0x8000 },
163 { "ldw", LS, 0, 0x8000 },
164 { "ld.w", LS, 0, 0x8000 },
165 { "st", LS, 0, 0x9000 },
166 { "stw", LS, 0, 0x9000 },
167 { "st.w", LS, 0, 0x9000 },
168 { "ldb", LS, 0, 0xA000 },
169 { "ld.b", LS, 0, 0xA000 },
170 { "stb", LS, 0, 0xB000 },
[all …]
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DLoopUnrolling.cpp79 auto LS = State->get<LoopStack>(); in processLoopEnd() local
80 if (!LS.isEmpty() && LS.getHead().getLoopStmt() == LoopStmt) in processLoopEnd()
81 State = State->set<LoopStack>(LS.getTail()); in processLoopEnd()
311 auto LS = State->get<LoopStack>(); in updateLoopStack() local
312 if (!LS.isEmpty() && LoopStmt == LS.getHead().getLoopStmt() && in updateLoopStack()
313 LCtx == LS.getHead().getLocationContext()) { in updateLoopStack()
314 if (LS.getHead().isUnrolled() && madeNewBranch(Pred, LoopStmt)) { in updateLoopStack()
315 State = State->set<LoopStack>(LS.getTail()); in updateLoopStack()
328 unsigned outerStep = (LS.isEmpty() ? 1 : LS.getHead().getMaxStep()); in updateLoopStack()
341 auto LS = State->get<LoopStack>(); in isUnrolledState() local
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/CSKY/MCTargetDesc/
H A DCSKYInstPrinter.cpp204 ListSeparator LS; in printPSRFlag() local
207 O << LS << "ee"; in printPSRFlag()
209 O << LS << "ie"; in printPSRFlag()
211 O << LS << "fe"; in printPSRFlag()
213 O << LS << "af"; in printPSRFlag()
228 ListSeparator LS; in printRegisterList() local
231 O << LS; in printRegisterList()
241 O << LS; in printRegisterList()
246 O << LS; in printRegisterList()
258 O << LS; in printRegisterList()
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DInstrDocsEmitter.cpp144 ListSeparator LS; in EmitInstrDocs() local
146 OS << LS << "``" << FlagString << "``"; in EmitInstrDocs()
191 ListSeparator LS; in EmitInstrDocs() local
193 OS << LS << "``" << Def->getName() << "``"; in EmitInstrDocs()
200 ListSeparator LS; in EmitInstrDocs() local
202 OS << LS << "``" << Use->getName() << "``"; in EmitInstrDocs()
211 ListSeparator LS; in EmitInstrDocs() local
213 OS << LS << "``" << P->getName() << "``"; in EmitInstrDocs()
H A DCallingConvEmitter.cpp167 ListSeparator LS; in EmitAction() local
174 O << LS << Name; in EmitAction()
225 ListSeparator LS; in EmitAction() local
227 O << LS << getQualifiedName(RegList->getElementAsRecord(i)); in EmitAction()
281 ListSeparator LS; in EmitAction() local
283 O << LS << getQualifiedName(ShadowRegList->getElementAsRecord(i)); in EmitAction()
403 ListSeparator LS; in EmitArgRegisterLists() local
405 O << LS << Reg; in EmitArgRegisterLists()
421 ListSeparator LS; in EmitArgRegisterLists() local
423 O << LS << Reg; in EmitArgRegisterLists()
H A DInfoByHwMode.cpp93 ListSeparator LS(","); in writeToStream() local
95 OS << LS << '(' << getModeName(P->first) << ':' in writeToStream()
182 ListSeparator LS(","); in writeToStream() local
184 OS << LS << '(' << getModeName(P->first) << ':' << P->second << ')'; in writeToStream()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/Utils/
H A DARMBaseInfo.h40 LS, // Unsigned lower or same Less than or equal enumerator
59 case HI: return LS; in getOppositeCondition()
60 case LS: return HI; in getOppositeCondition()
76 case ARMCC::HS: return ARMCC::LS; in getSwappedCondition()
79 case ARMCC::LS: return ARMCC::HS; in getSwappedCondition()
157 case ARMCC::LS: return "ls"; in ARMCondCodeToString()
180 .Case("ls", ARMCC::LS) in ARMCondCodeFromString()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp242 bool isProfitableToTransform(const Loop &L, LoopStructure &LS);
591 changeIterationSpaceEnd(const LoopStructure &LS, BasicBlock *Preheader,
597 BasicBlock *createPreheader(const LoopStructure &LS, BasicBlock *OldPreheader,
605 LoopStructure &LS, BasicBlock *ContinuationBlockAndPreheader,
642 const LoopStructure &LS, ScalarEvolution &SE, in LoopConstrainer() argument
646 Range(R), MainLoopStructure(LS) {} in LoopConstrainer()
1197 const LoopStructure &LS, BasicBlock *Preheader, Value *ExitSubloopAt, in changeIterationSpaceEnd() argument
1272 BasicBlock *BBInsertLocation = LS.Latch->getNextNode(); in changeIterationSpaceEnd()
1273 RRI.ExitSelector = BasicBlock::Create(Ctx, Twine(LS.Tag) + ".exit.selector", in changeIterationSpaceEnd()
1275 RRI.PseudoExit = BasicBlock::Create(Ctx, Twine(LS.Tag) + ".pseudo.exit", &F, in changeIterationSpaceEnd()
[all …]
H A DADCE.cpp172 void collectLiveScopes(const DILocalScope &LS);
421 void AggressiveDeadCodeElimination::collectLiveScopes(const DILocalScope &LS) { in collectLiveScopes() argument
422 if (!AliveScopes.insert(&LS).second) in collectLiveScopes()
425 if (isa<DISubprogram>(LS)) in collectLiveScopes()
429 collectLiveScopes(cast<DILocalScope>(*LS.getScope())); in collectLiveScopes()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DCSKYAttributeParser.cpp122 ListSeparator LS(" "); in fpuHardFP() local
127 description += LS; in fpuHardFP()
131 description += LS; in fpuHardFP()
135 description += LS; in fpuHardFP()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfFile.cpp105 bool DwarfFile::addScopeVariable(LexicalScope *LS, DbgVariable *Var) { in addScopeVariable() argument
106 auto &ScopeVars = ScopeVariables[LS]; in addScopeVariable()
122 void DwarfFile::addScopeLabel(LexicalScope *LS, DbgLabel *Label) { in addScopeLabel() argument
123 SmallVectorImpl<DbgLabel *> &Labels = ScopeLabels[LS]; in addScopeLabel()
H A DDwarfFile.h153 bool addScopeVariable(LexicalScope *LS, DbgVariable *Var);
155 void addScopeLabel(LexicalScope *LS, DbgLabel *Label);
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DVarBypassDetector.cpp119 else if (const LabelStmt *LS = dyn_cast<LabelStmt>(SubStmt)) in BuildScopeInformation() local
120 Next = LS->getSubStmt(); in BuildScopeInformation()
141 if (const LabelStmt *LS = GS->getLabel()->getStmt()) in Detect() local
142 Detect(from, ToScopes[LS]); in Detect()
/openbsd-src/gnu/gcc/gcc/config/sh/
H A Dsh4a.md43 ;; Sh4a_Memory access on the LS pipeline.
46 ;; Other access on the LS pipeline.
91 ;; Group: LS
107 ;; Group: LS
120 ;; Group: LS
130 ;; Group: LS
167 ;; Group: LS
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DStackSlotColoring.cpp61 LiveStacks* LS; member in __anona2ed05200111::StackSlotColoring
167 if (!LS->hasInterval(FI)) in ScanForSpillSlotRefs()
169 LiveInterval &li = LS->getInterval(FI); in ScanForSpillSlotRefs()
209 Intervals.reserve(LS->getNumIntervals()); in InitializeSlots()
210 for (auto &I : *LS) in InitializeSlots()
485 LS = &getAnalysis<LiveStacks>(); in runOnMachineFunction()
490 unsigned NumSlots = LS->getNumIntervals(); in runOnMachineFunction()
H A DRegisterBank.cpp103 ListSeparator LS; in print() local
108 OS << LS << TRI->getRegClassName(&RC); in print()
H A DGCMetadata.cpp122 ListSeparator LS(","); in runOnFunction() local
124 OS << LS << " " << R.Num; in runOnFunction()
/openbsd-src/gnu/llvm/llvm/include/llvm/MCA/Stages/
H A DRetireStage.h38 RetireStage(RetireControlUnit &R, RegisterFile &F, LSUnitBase &LS) in RetireStage() argument
39 : RCU(R), PRF(F), LSU(LS) {} in RetireStage()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFCompileUnit.h28 const DWARFSection *AOS, const DWARFSection &LS, bool LE, in DWARFCompileUnit() argument
31 LS, LE, IsDWO, UnitVector) {} in DWARFCompileUnit()
H A DDWARFTypeUnit.h30 const DWARFSection &LS, bool LE, bool IsDWO, in DWARFTypeUnit() argument
33 LS, LE, IsDWO, UnitVector) {} in DWARFTypeUnit()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DLoadStoreOpt.cpp203 if (const auto *LS = dyn_cast<GLoadStore>(MI)) { in instMayAlias() local
207 if (!mi_match(LS->getPointerReg(), MRI, in instMayAlias()
209 BaseReg = LS->getPointerReg(); in instMayAlias()
214 LS->getMMO().getMemoryType().getSizeInBytes()); in instMayAlias()
215 return {LS->isVolatile(), LS->isAtomic(), BaseReg, in instMayAlias()
216 Offset /*base offset*/, Size, &LS->getMMO()}; in instMayAlias()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DPthreadLockChecker.cpp334 LockSetTy LS = State->get<LockSet>(); in printState() local
335 if (!LS.isEmpty()) { in printState()
337 for (auto I : LS) { in printState()
502 LockSetTy LS = state->get<LockSet>(); in ReleaseLockAux() local
504 if (!LS.isEmpty()) { in ReleaseLockAux()
505 const MemRegion *firstLockR = LS.getHead(); in ReleaseLockAux()
513 state = state->set<LockSet>(LS.getTail()); in ReleaseLockAux()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.cpp156 size_t LS = S1.size(); in gsiRecordCmp() local
159 if (LS != RS) in gsiRecordCmp()
160 return (LS > RS) - (LS < RS); in gsiRecordCmp()
164 return memcmp(S1.data(), S2.data(), LS); in gsiRecordCmp()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp178 static void printRange(raw_ostream &OS, ListSeparator &LS, unsigned First, in printRange() argument
181 OS << LS << Letter << First; in printRange()
183 OS << LS << Letter << First << "-" << Letter << Last; in printRange()
186 static void printRange(raw_ostream &OS, uint32_t Mask, ListSeparator &LS, in printRange() argument
195 printRange(OS, LS, First, RI - 1, Letter); in printRange()
201 printRange(OS, LS, First, End, Letter); in printRange()
206 ListSeparator LS; in printGPRMask() local
207 printRange(OS, GPRMask, LS, 0, 12, 'r'); in printGPRMask()
209 OS << LS << "lr"; in printGPRMask()
211 OS << LS << "pc"; in printGPRMask()
[all …]

123456789