[llvm] b6917a8 - [ADT][Analysis] NFC: Fix some more typos
Jean-Michel Gorius via llvm-commits
llvm-commits at lists.llvm.org
Thu May 21 09:54:29 PDT 2020
Author: Jean-Michel Gorius
Date: 2020-05-21T18:53:43+02:00
New Revision: b6917a86fbb511955915d67c7d02789892c0f342
URL: https://github.com/llvm/llvm-project/commit/b6917a86fbb511955915d67c7d02789892c0f342
DIFF: https://github.com/llvm/llvm-project/commit/b6917a86fbb511955915d67c7d02789892c0f342.diff
LOG: [ADT][Analysis] NFC: Fix some more typos
Added:
Modified:
llvm/include/llvm/ADT/STLExtras.h
llvm/include/llvm/ADT/SetVector.h
llvm/include/llvm/Analysis/CaptureTracking.h
llvm/include/llvm/Analysis/DivergenceAnalysis.h
llvm/include/llvm/Analysis/VectorUtils.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/ADT/STLExtras.h b/llvm/include/llvm/ADT/STLExtras.h
index 71ad4fc1fe2b..ed8d99ea8398 100644
--- a/llvm/include/llvm/ADT/STLExtras.h
+++ b/llvm/include/llvm/ADT/STLExtras.h
@@ -958,7 +958,7 @@ class concat_iterator
}
public:
- /// Constructs an iterator from a squence of ranges.
+ /// Constructs an iterator from a sequence of ranges.
///
/// We need the full range to know how to switch between each of the
/// iterators.
@@ -1947,7 +1947,7 @@ bool hasNItemsOrMore(
/// Returns a raw pointer that represents the same address as the argument.
///
/// This implementation can be removed once we move to C++20 where it's defined
-/// as std::to_addres().
+/// as std::to_address().
///
/// The std::pointer_traits<>::to_address(p) variations of these overloads has
/// not been implemented.
diff --git a/llvm/include/llvm/ADT/SetVector.h b/llvm/include/llvm/ADT/SetVector.h
index d0a0d28d1c81..901d5b1bcd90 100644
--- a/llvm/include/llvm/ADT/SetVector.h
+++ b/llvm/include/llvm/ADT/SetVector.h
@@ -174,7 +174,7 @@ class SetVector {
set_.erase(V);
// FIXME: No need to use the non-const iterator when built with
- // std:vector.erase(const_iterator) as defined in C++11. This is for
+ // std::vector.erase(const_iterator) as defined in C++11. This is for
// compatibility with non-standard libstdc++ up to 4.8 (fixed in 4.9).
auto NI = vector_.begin();
std::advance(NI, std::distance<iterator>(NI, I));
diff --git a/llvm/include/llvm/Analysis/CaptureTracking.h b/llvm/include/llvm/Analysis/CaptureTracking.h
index 62d226401d49..e68675b278f1 100644
--- a/llvm/include/llvm/Analysis/CaptureTracking.h
+++ b/llvm/include/llvm/Analysis/CaptureTracking.h
@@ -23,7 +23,7 @@ namespace llvm {
/// getDefaultMaxUsesToExploreForCaptureTracking - Return default value of
/// the maximal number of uses to explore before giving up. It is used by
- /// PointerMayBeCaptured family analysys.
+ /// PointerMayBeCaptured family analysis.
unsigned getDefaultMaxUsesToExploreForCaptureTracking();
/// PointerMayBeCaptured - Return true if this pointer value may be captured
diff --git a/llvm/include/llvm/Analysis/DivergenceAnalysis.h b/llvm/include/llvm/Analysis/DivergenceAnalysis.h
index 2fac9c8b4b34..a2da97bb9059 100644
--- a/llvm/include/llvm/Analysis/DivergenceAnalysis.h
+++ b/llvm/include/llvm/Analysis/DivergenceAnalysis.h
@@ -147,7 +147,7 @@ class DivergenceAnalysis {
private:
const Function &F;
// If regionLoop != nullptr, analysis is only performed within \p RegionLoop.
- // Otw, analyze the whole function
+ // Otherwise, analyze the whole function
const Loop *RegionLoop;
const DominatorTree &DT;
diff --git a/llvm/include/llvm/Analysis/VectorUtils.h b/llvm/include/llvm/Analysis/VectorUtils.h
index ed0937e810cc..9acb1fcf1102 100644
--- a/llvm/include/llvm/Analysis/VectorUtils.h
+++ b/llvm/include/llvm/Analysis/VectorUtils.h
@@ -63,7 +63,7 @@ struct VFParameter {
unsigned ParamPos; // Parameter Position in Scalar Function.
VFParamKind ParamKind; // Kind of Parameter.
int LinearStepOrPos = 0; // Step or Position of the Parameter.
- Align Alignment = Align(); // Optional aligment in bytes, defaulted to 1.
+ Align Alignment = Align(); // Optional alignment in bytes, defaulted to 1.
// Comparison operator.
bool operator==(const VFParameter &Other) const {
@@ -82,7 +82,7 @@ struct VFParameter {
struct VFShape {
unsigned VF; // Vectorization factor.
bool IsScalable; // True if the function is a scalable function.
- SmallVector<VFParameter, 8> Parameters; // List of parameter informations.
+ SmallVector<VFParameter, 8> Parameters; // List of parameter information.
// Comparison operator.
bool operator==(const VFShape &Other) const {
return std::tie(VF, IsScalable, Parameters) ==
@@ -145,14 +145,14 @@ static constexpr char const *_LLVM_ = "_LLVM_";
/// it once vectorization is done.
static constexpr char const *_LLVM_Scalarize_ = "_LLVM_Scalarize_";
-/// Function to contruct a VFInfo out of a mangled names in the
+/// Function to construct a VFInfo out of a mangled names in the
/// following format:
///
/// <VFABI_name>{(<redirection>)}
///
/// where <VFABI_name> is the name of the vector function, mangled according
/// to the rules described in the Vector Function ABI of the target vector
-/// extentsion (or <isa> from now on). The <VFABI_name> is in the following
+/// extension (or <isa> from now on). The <VFABI_name> is in the following
/// format:
///
/// _ZGV<isa><mask><vlen><parameters>_<scalarname>[(<redirection>)]
@@ -166,9 +166,9 @@ static constexpr char const *_LLVM_Scalarize_ = "_LLVM_Scalarize_";
///
/// \param MangledName -> input string in the format
/// _ZGV<isa><mask><vlen><parameters>_<scalarname>[(<redirection>)].
-/// \param M -> Module used to retrive informations about the vector
+/// \param M -> Module used to retrieve informations about the vector
/// function that are not possible to retrieve from the mangled
-/// name. At the moment, this parameter is needed only to retrive the
+/// name. At the moment, this parameter is needed only to retrieve the
/// Vectorization Factor of scalable vector functions from their
/// respective IR declarations.
Optional<VFInfo> tryDemangleForVFABI(StringRef MangledName, const Module &M);
@@ -216,11 +216,11 @@ class VFDatabase {
const Module *M;
/// The CallInst instance being queried for scalar to vector mappings.
const CallInst &CI;
- /// List of vector functions descritors associated to the call
+ /// List of vector functions descriptors associated to the call
/// instruction.
const SmallVector<VFInfo, 8> ScalarToVectorMappings;
- /// Retreive the scalar-to-vector mappings associated to the rule of
+ /// Retrieve the scalar-to-vector mappings associated to the rule of
/// a vector Function ABI.
static void getVFABIMappings(const CallInst &CI,
SmallVectorImpl<VFInfo> &Mappings) {
More information about the llvm-commits
mailing list