Searched defs:LS (Results 1 - 25 of 34) sorted by relevance

12

/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFCompileUnit.h21 StringRef SOS, StringRef AOS, StringRef LS, bool LE,
24 : DWARFUnit(Context, Section, DA, RS, SS, SOS, AOS, LS, LE, IsDWO,
19 DWARFCompileUnit(DWARFContext &Context, const DWARFSection &Section, const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS, StringRef SOS, StringRef AOS, StringRef LS, bool LE, bool IsDWO, const DWARFUnitSectionBase &UnitSection, const DWARFUnitIndex::Entry *Entry) argument
H A DDWARFTypeUnit.h24 StringRef SOS, StringRef AOS, StringRef LS, bool LE, bool IsDWO,
27 : DWARFUnit(Context, Section, DA, RS, SS, SOS, AOS, LS, LE, IsDWO,
22 DWARFTypeUnit(DWARFContext &Context, const DWARFSection &Section, const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS, StringRef SOS, StringRef AOS, StringRef LS, bool LE, bool IsDWO, const DWARFUnitSectionBase &UnitSection, const DWARFUnitIndex::Entry *Entry) argument
/external/llvm/lib/Transforms/Scalar/
H A DADCE.cpp38 static void collectLiveScopes(const DILocalScope &LS, argument
40 if (!AliveScopes.insert(&LS).second)
43 if (isa<DISubprogram>(LS))
47 collectLiveScopes(cast<DILocalScope>(*LS.getScope()), AliveScopes);
H A DInductiveRangeCheckElimination.cpp518 // Rewrite the iteration space of the loop denoted by (LS, Preheader). The
541 changeIterationSpaceEnd(const LoopStructure &LS, BasicBlock *Preheader,
545 // The loop denoted by `LS' has `OldPreheader' as its preheader. This
546 // function creates a new preheader for `LS' and returns it.
548 BasicBlock *createPreheader(const LoopStructure &LS, BasicBlock *OldPreheader,
552 // `changeIterationSpaceEnd' and is the preheader to the loop denoted by `LS'.
553 // This function rewrites the PHI nodes in `LS.Header' to start with the
556 LoopStructure &LS, BasicBlock *ContinuationBlockAndPreheader,
588 LoopConstrainer(Loop &L, LoopInfo &LI, const LoopStructure &LS, argument
593 MainLoopStructure(LS) {}
945 changeIterationSpaceEnd( const LoopStructure &LS, BasicBlock *Preheader, Value *ExitSubloopAt, BasicBlock *ContinuationBlock) const argument
1101 rewriteIncomingValuesForPHIs( LoopStructure &LS, BasicBlock *ContinuationBlock, const LoopConstrainer::RewrittenRangeInfo &RRI) const argument
1120 createPreheader(const LoopStructure &LS, BasicBlock *OldPreheader, const char *Tag) const argument
1414 LoopStructure LS = MaybeLoopStructure.getValue(); local
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfFile.cpp145 bool DwarfFile::addScopeVariable(LexicalScope *LS, DbgVariable *Var) { argument
146 SmallVectorImpl<DbgVariable *> &Vars = ScopeVariables[LS];
/external/clang/lib/StaticAnalyzer/Checkers/
H A DPthreadLockChecker.cpp221 LockSetTy LS = state->get<LockSet>(); local
225 if (!LS.isEmpty()) {
226 const MemRegion *firstLockR = LS.getHead();
241 state = state->set<LockSet>(LS.getTail());
/external/llvm/lib/CodeGen/
H A DStackSlotColoring.cpp49 LiveStacks* LS; member in class:__anon12771::StackSlotColoring
156 if (!LS->hasInterval(FI))
158 LiveInterval &li = LS->getInterval(FI);
190 Intervals.reserve(LS->getNumIntervals());
191 for (auto &I : *LS)
433 LS = &getAnalysis<LiveStacks>();
438 unsigned NumSlots = LS->getNumIntervals();
H A DLiveDebugVariables.cpp84 LexicalScopes &LS; member in class:__anon12680::UserValueScopes
88 UserValueScopes(DebugLoc D, LexicalScopes &L) : DL(std::move(D)), LS(L) {}
94 LS.getMachineBasicBlocks(DL, LBlocks);
95 return LBlocks.count(MBB) != 0 || LS.dominates(DL, MBB);
286 LexicalScopes LS; member in class:__anon12682::LDVImpl
345 LS.reset();
717 UserValueScopes UVS(userValues[i]->getDebugLoc(), LS);
729 LS.initialize(mf);
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DLexicalScopes.h61 bool isCurrentFunctionScope(const LexicalScope *LS) { argument
62 return LS == CurrentFnLexicalScope;
/external/llvm/lib/Analysis/
H A DCostModel.cpp175 ShuffleVectorInst *LS = dyn_cast<ShuffleVectorInst>(L); local
176 if (!LS && Level)
183 if (!Level && !RS && !LS)
187 Value *NextLevelOpL = LS ? LS->getOperand(0) : nullptr;
223 if (matchPairwiseShuffleMask(LS, true, Level)) {
227 if (!matchPairwiseShuffleMask(LS, false, Level))
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp37 StringRef SOS, StringRef AOS, StringRef LS, bool LE,
41 LineSection(LS), StringSection(SS), StringOffsetSection([&]() {
35 DWARFUnit(DWARFContext &DC, const DWARFSection &Section, const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS, StringRef SOS, StringRef AOS, StringRef LS, bool LE, bool IsDWO, const DWARFUnitSectionBase &UnitSection, const DWARFUnitIndex::Entry *IndexEntry) argument
/external/llvm/lib/Target/NVPTX/
H A DNVPTX.h150 LS, enumerator in enum:llvm::NVPTX::PTXCmpMode::CmpMode
/external/llvm/unittests/ProfileData/
H A DCoverageMappingTest.cpp144 void addCMR(Counter C, StringRef File, unsigned LS, unsigned CS, unsigned LE, argument
147 C, getFileIndexForFunction(File), LS, CS, LE, CE));
150 void addExpansionCMR(StringRef File, StringRef ExpandedFile, unsigned LS, argument
154 LS, CS, LE, CE)); local
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DRegAllocBasic.cpp89 LiveStacks *LS; member in class:__anon19836::RABasic
H A DRegAllocGreedy.cpp76 LiveStacks *LS; member in class:__anon19841::RAGreedy
H A DStackSlotColoring.cpp60 LiveStacks* LS; member in class:__anon19886::StackSlotColoring
195 if (!LS->hasInterval(FI))
197 LiveInterval &li = LS->getInterval(FI);
218 for (LiveStacks::iterator i = LS->begin(), e = LS->end(); i != e; ++i) {
275 const TargetRegisterClass *RC = LS->getIntervalRegClass(RSS);
421 const TargetRegisterClass *RC = LS->getIntervalRegClass(SS);
724 LS = &getAnalysis<LiveStacks>();
730 unsigned NumSlots = LS->getNumIntervals();
H A DLiveDebugVariables.cpp79 LexicalScopes &LS; member in class:__anon19817::UserValueScopes
83 UserValueScopes(DebugLoc D, LexicalScopes &L) : DL(D), LS(L) {}
89 LS.getMachineBasicBlocks(DL, LBlocks);
90 if (LBlocks.count(MBB) != 0 || LS.dominates(DL, MBB))
285 LexicalScopes LS; member in class:__anon19819::LDVImpl
658 UserValueScopes UVS(userValues[i]->getDebugLoc(), LS);
670 LS.initialize(mf);
678 LS.releaseMemory();
/external/aac/libAACenc/src/
H A Dmetadata_compressor.cpp120 LS = 4, enumerator in enum:__anon282
530 drcComp->channelIdx[LS] = channelMapping.elInfo[2].ChannelIndex[0];
538 drcComp->channelIdx[LS] = channelMapping.elInfo[2].ChannelIndex[0];
547 drcComp->channelIdx[LS] = channelMapping.elInfo[3].ChannelIndex[0]; /* ls */
557 drcComp->channelIdx[LS] = channelMapping.elInfo[3].ChannelIndex[0]; /* lrear */
893 if (drcComp->channelIdx[LS] >= 0) tmp -= fMultDiv2(FL2FXCONST_DBL(0.707f), (FIXP_PCM)pSamples[drcComp->channelIdx[LS]])>>(DOWNMIX_SHIFT-1); /* Ls */
897 if ((drcComp->channelIdx[LS] >= 0) && (drcComp->channelIdx[LS2] >= 0)) tmp = fMult(FL2FXCONST_DBL(0.707f), tmp); /* 7.1ch */
906 if (drcComp->channelIdx[LS] >= 0) tmp += fMultDiv2(FL2FXCONST_DBL(0.707f), (FIXP_PCM)pSamples[drcComp->channelIdx[LS]])>>(DOWNMIX_SHIF
[all...]
/external/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h203 LS = 0x9, // Unsigned lower or same Less than or equal enumerator in enum:llvm::AArch64CC::CondCode
226 case LS: return "ls";
260 case LS: return 0; // C == 0 || Z == 1
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
H A DARMBaseInfo.h39 LS, // Unsigned lower or same Less than or equal enumerator in enum:llvm::ARMCC::CondCodes
58 case HI: return LS;
59 case LS: return HI;
80 case ARMCC::LS: return "ls";
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/
H A DAlphaISelLowering.cpp448 std::vector<SDValue> LS; local
456 LS.push_back(DAG.getStore(Chain, dl, argt, SDFI, MachinePointerInfo(),
464 LS.push_back(DAG.getStore(Chain, dl, argt, SDFI, MachinePointerInfo(),
469 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &LS[0], LS.size());
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMBaseInfo.h39 LS, // Unsigned lower or same Less than or equal enumerator in enum:llvm::ARMCC::CondCodes
58 case HI: return LS;
59 case LS: return HI;
79 case ARMCC::LS: return "ls";
/external/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp722 const ConstantStruct *LS = cast<ConstantStruct>(L); local
729 if (int Res = cmpConstants(cast<Constant>(LS->getOperand(i)),
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1284 void DwarfDebug::addScopeVariable(LexicalScope *LS, DbgVariable *Var) { argument
1285 // SmallVector<DbgVariable *, 8> &Vars = ScopeVariables.lookup(LS);
1286 ScopeVariables[LS].push_back(Var);
/external/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp2014 IndexType &LS = LastStore[I.first]; local
2015 if (LS != IndexType::None)
2016 RL.add(LS, LL, false, false);
2019 LS = IndexType::None;
2022 IndexType LS = I.second; local
2023 if (LS == IndexType::None)
2026 RL.add(LS, IndexType::None, false, false);

Completed in 1044 milliseconds

12