Home
last modified time | relevance | path

Searched refs:What (Results 1 – 25 of 131) sorted by relevance

123456

/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h197 RangeSet intersect(RangeSet What, llvm::APSInt Lower, llvm::APSInt Upper);
205 RangeSet intersect(RangeSet What, llvm::APSInt Point);
239 RangeSet negate(RangeSet What);
261 RangeSet castTo(RangeSet What, APSIntType Ty);
262 RangeSet castTo(RangeSet What, QualType T);
281 ContainerType truncateTo(RangeSet What, APSIntType Ty);
287 ContainerType convertTo(RangeSet What, APSIntType Ty);
292 ContainerType promoteTo(RangeSet What, APSIntType Ty);
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DMemorySSAUpdater.h128 void moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where);
129 void moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where);
130 void moveToPlace(MemoryUseOrDef *What, BasicBlock *BB,
247 void moveTo(MemoryUseOrDef *What, BasicBlock *BB, WhereType Where);
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp475 if (What.isEmpty() || !What.pin(Lower, Upper)) in intersect()
491 if (What.getMaxValue() < Lower || Upper < What.getMinValue()) in intersect()
504 if (What.getMaxValue() < Lower && Upper < What.getMinValue()) in intersect()
611 if (What.isEmpty()) in negate()
631 return What; in negate()
677 if (What.isEmpty() || What.getAPSIntType() == Ty) in castTo()
678 return What; in castTo()
725 for (const Range &R : What) { in truncateTo()
796 const auto *E = What.end(); in convertTo()
830 Result.reserve(What.size()); in promoteTo()
[all …]
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DVforkChecker.cpp56 void reportBug(const char *What, CheckerContext &C,
122 void VforkChecker::reportBug(const char *What, CheckerContext &C, in reportBug() argument
132 os << What << " is prohibited after a successful vfork"; in reportBug()
H A DExprInspectionChecker.cpp64 template <typename T> void printAndReport(CheckerContext &C, T What) const;
281 void ExprInspectionChecker::printAndReport(CheckerContext &C, T What) const { in printAndReport()
284 printHelper(OS, C, What); in printAndReport()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp1166 void MemorySSAUpdater::moveTo(MemoryUseOrDef *What, BasicBlock *BB, in moveTo() argument
1169 for (auto *U : What->users()) in moveTo()
1174 What->replaceAllUsesWith(What->getDefiningAccess()); in moveTo()
1177 MSSA->moveTo(What, BB, Where); in moveTo()
1180 if (auto *MD = dyn_cast<MemoryDef>(What)) in moveTo()
1183 insertUse(cast<MemoryUse>(What), /*RenameUses=*/true); in moveTo()
1192 moveTo(What, Where->getBlock(), Where->getIterator()); in moveBefore()
1197 moveTo(What, Where->getBlock(), ++Where->getIterator()); in moveAfter()
1203 return moveTo(What, BB, Where); in moveToPlace()
1206 return moveBefore(What, Where); in moveToPlace()
[all …]
H A DMemorySSA.cpp1673 if (!isa<MemoryUse>(What)) { in insertIntoListsBefore()
1680 Defs->push_back(*What); in insertIntoListsBefore()
1688 Defs->push_back(*What); in insertIntoListsBefore()
1698 removeFromLists(What, false); in prepareForMoveTo()
1703 if (auto *MD = dyn_cast<MemoryDef>(What)) in prepareForMoveTo()
1705 What->setBlock(BB); in prepareForMoveTo()
1714 prepareForMoveTo(What, BB); in moveTo()
1715 insertIntoListsBefore(What, BB, Where); in moveTo()
1720 if (isa<MemoryPhi>(What)) { in moveTo()
1730 prepareForMoveTo(What, BB); in moveTo()
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dbad-tls-fold.mir38 ; What we actually expect:
68 ; What we actually expect:
H A Dx86-shrink-wrap-unwind.ll17 ; (What we push does not matter. It should be some random sratch register.)
37 ; Epilogue code. (What we pop does not matter.)
90 ; Epilogue code. (What we pop does not matter.)
125 ; (What we push does not matter. It should be some random sratch register.)
H A Dselect-1-or-neg1.ll6 ; TODO: What if 'cmov' is 1 uop and full throughput (Ryzen)?
/llvm-project-15.0.7/llvm/test/YAMLParser/
H A Dspec-02-15.test10 What a year!
/llvm-project-15.0.7/llvm/test/Transforms/InstCombine/
H A Dsub-from-sub.ll46 ; What if some operand is constant?
81 ; What if some operand is constant and there was extra use?
122 ; What if two operands are constants?
144 ; What if two operands are constants and there was extra use?
/llvm-project-15.0.7/clang/unittests/StaticAnalyzer/
H A DReusables.h23 const T *findNode(const Decl *Where, MatcherT What) { in findNode() argument
25 auto Matches = match(decl(hasDescendant(What.bind("root"))), in findNode()
/llvm-project-15.0.7/flang/test/Fir/
H A Dconstant.fir15 // TODO: What's that number?
/llvm-project-15.0.7/llvm/lib/Target/M68k/
H A DM68kInstrInfo.td576 // jPat: What ARI pattern to use
579 // oPat: What ARIPI pattern is used
582 // ePat: What ARIPD pattern is used
585 // pPat: What ARID pattern is used
588 // fPat: What ARII pattern is used
591 // bPat: What absolute pattern is used
594 // qPat: What PCD pattern is used
597 // kPat: What PCI pattern is used
600 // iPat: What immediate pattern is used
602 // load: What load operation is used with MEM
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/
H A Dnarrowing-conversions.rst80 - What does "narrowing conversion from 'int' to 'float'" mean?
89 - What does "implementation-defined" mean?
/llvm-project-15.0.7/llvm/test/ThinLTO/X86/
H A Ddontcall.ll10 ; attributes match!!! What should happen if we remove "dontcall-error" from the
/llvm-project-15.0.7/pstl/docs/
H A DReleaseNotes.rst33 What's New in PSTL 15.0.0?
/llvm-project-15.0.7/llvm/docs/HistoricalNotes/
H A D2000-12-06-EncodingIdea.txt27 What do you think?
/llvm-project-15.0.7/llvm/docs/
H A DFAQ.rst43 What API do I use to store a value to one of the virtual registers in LLVM IR's SSA representation?
71 What source languages are supported?
124 What support is there for a higher level source language constructs for building a compiler?
161 What is this ``llvm.global_ctors`` and ``_GLOBAL__I_a...`` stuff that happens when I ``#include <io…
195 What is this "``undef``" thing that shows up in my code?
H A DMarkdownQuickstartTemplate.md34 2. What should I know to be able to follow along with this document?
36 3. What will I have learned by the end of this document?
/llvm-project-15.0.7/libc/docs/
H A Dlayering.rst8 it does not mean that layering is the only way to use llvm-libc. What it
/llvm-project-15.0.7/bolt/test/runtime/X86/
H A Dfix-branches-jrcxz.s35 # CFG. What is important here is that BB1, the first block, conditionally
/llvm-project-15.0.7/llvm/utils/vscode/llvm/
H A Dvsc-extension-quickstart.md3 ## What's in the folder
/llvm-project-15.0.7/cmake/
H A DREADME.rst5 What goes here

123456