summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Doe <github.john.doe@outlook.com>2018-06-02 19:03:47 -0700
committerJan Kotas <jkotas@microsoft.com>2018-06-02 19:03:47 -0700
commit9791a661155d08f85f862bfc37eff3cd8d7b25cc (patch)
tree06678edb080d62fcce3ad08f51871aa9333e7688
parent6da69e6536a596a6b2141374bd2c9e96bdebbc62 (diff)
downloadcoreclr-9791a661155d08f85f862bfc37eff3cd8d7b25cc.tar.gz
coreclr-9791a661155d08f85f862bfc37eff3cd8d7b25cc.tar.bz2
coreclr-9791a661155d08f85f862bfc37eff3cd8d7b25cc.zip
Typo (#18261)
* accomodate -> accommodate * accross -> across * adddress -> address * bookeeping -> bookkeeping * arbitary -> arbitrary * calulating -> calculating * fromClas -> fromClass * comand -> command * comming -> coming * comparisions -> comparisons * configuiration -> configuration * contraints -> constraints * datastructures -> data structures * defintely -> definitely * defered -> deferred * diassemble -> disassemble * Emptry -> Empty * everytime -> every time * fragmetation -> fragmentation * instaces -> instances * interpretting -> interpreting * intialize -> initialize * loction -> location
-rw-r--r--src/ToolBox/SOS/Strike/ExpressionNode.cpp6
-rw-r--r--src/ToolBox/SOS/Strike/disasmARM.cpp2
-rw-r--r--src/ToolBox/SOS/Strike/disasmX86.cpp4
-rw-r--r--src/ToolBox/SOS/Strike/gcroot.cpp8
-rw-r--r--src/ToolBox/SOS/Strike/stressLogDump.cpp2
-rw-r--r--src/ToolBox/SOS/Strike/strike.cpp14
-rw-r--r--src/ToolBox/SOS/Strike/util.cpp2
-rw-r--r--src/ToolBox/SOS/lldbplugin/services.cpp2
-rw-r--r--src/ToolBox/superpmi/superpmi-shared/methodcontext.cpp6
-rw-r--r--src/ToolBox/superpmi/superpmi-shim-collector/superpmi-shim-collector.cpp2
-rw-r--r--src/ToolBox/superpmi/superpmi/jitdebugger.cpp6
-rw-r--r--src/ToolBox/superpmi/superpmi/neardiffer.cpp10
12 files changed, 32 insertions, 32 deletions
diff --git a/src/ToolBox/SOS/Strike/ExpressionNode.cpp b/src/ToolBox/SOS/Strike/ExpressionNode.cpp
index 920afbaedc..03630b40a6 100644
--- a/src/ToolBox/SOS/Strike/ExpressionNode.cpp
+++ b/src/ToolBox/SOS/Strike/ExpressionNode.cpp
@@ -69,7 +69,7 @@ HRESULT ExpressionNode::CreateExpressionNode(__in_z WCHAR* pExpression, Expressi
}
// Performs recursive expansion within the tree for nodes that are along the path to varToExpand.
-// Expansion involves calulating a set of child expressions from the current expression via
+// Expansion involves calculating a set of child expressions from the current expression via
// field dereferencing, array index dereferencing, or casting to a base type.
// For example if a tree was rooted with expression 'foo.bar' and varToExpand is '(Baz)foo.bar[9]'
// then 'foo.bar', 'foo.bar[9]', and '(Baz)foo.bar[9]' nodes would all be expanded.
@@ -1228,14 +1228,14 @@ VOID ExpressionNode::EvaluateExpressionVariableScanCallback(ICorDebugValue* pVal
// pParsedType - A debuggee type that should be used as the context for interpreting
// pExpressionRemainder.
// pParsedDefaultValue - A fixed value from metadata that should be used as context for
-// interpretting pExpressionRemainder
+// interpreting pExpressionRemainder
// cchParsedDefaultValue- Size of pParsedDefaultValue
// pFrame - A debuggee IL frame that disambiguates the thread and context needed
// to evaluate a thread-static or context-static value
// ppExpressionNode - OUT - the resulting expression node
//
//
-// Valid combinations of state comming into this method:
+// Valid combinations of state coming into this method:
// The expression up to charactersParsed isn't recognized yet:
// pParsedValue = pParsedType = pParsedDefaultValue = NULL
// cchParsedDefaultValue = 0
diff --git a/src/ToolBox/SOS/Strike/disasmARM.cpp b/src/ToolBox/SOS/Strike/disasmARM.cpp
index cc80d77590..e9a7a690a1 100644
--- a/src/ToolBox/SOS/Strike/disasmARM.cpp
+++ b/src/ToolBox/SOS/Strike/disasmARM.cpp
@@ -96,7 +96,7 @@ static TADDR GetRealCallTarget(TADDR PC)
if (instr[0] != 0xf8df)
return PC;
- // The first instruction is defintely a LDR of the form we expect so it's OK to read the second half of
+ // The first instruction is definitely a LDR of the form we expect so it's OK to read the second half of
// the encoding.
if (g_ExtData->ReadVirtual(TO_CDADDR(PC + 2), &instr[1], sizeof(WORD), NULL) != S_OK)
return 0;
diff --git a/src/ToolBox/SOS/Strike/disasmX86.cpp b/src/ToolBox/SOS/Strike/disasmX86.cpp
index 36a08d20a3..0934a824ea 100644
--- a/src/ToolBox/SOS/Strike/disasmX86.cpp
+++ b/src/ToolBox/SOS/Strike/disasmX86.cpp
@@ -1044,7 +1044,7 @@ void
move_xp (offs, retAddr-4);
*whereCalled = retAddr + (ULONG64)(LONG)(offs);
//*whereCalled = *((int*) (retAddr-4)) + retAddr;
- // on WOW64 the range valid for code is almost the whole 4GB adddress space
+ // on WOW64 the range valid for code is almost the whole 4GB address space
if (g_ExtData->ReadVirtual(TO_CDADDR(*whereCalled), &addr, sizeof(addr), NULL) == S_OK)
{
TADDR callee;
@@ -1070,7 +1070,7 @@ void
if (g_ExtData->ReadVirtual(TO_CDADDR(addr), whereCalled, sizeof(*whereCalled), NULL) == S_OK) {
move_xp (*whereCalled, addr);
//*whereCalled = **((unsigned**) (retAddr-4));
- // on WOW64 the range valid for code is almost the whole 4GB adddress space
+ // on WOW64 the range valid for code is almost the whole 4GB address space
if (g_ExtData->ReadVirtual(TO_CDADDR(*whereCalled), &addr, sizeof(addr), NULL) == S_OK)
{
TADDR callee;
diff --git a/src/ToolBox/SOS/Strike/gcroot.cpp b/src/ToolBox/SOS/Strike/gcroot.cpp
index d6d714a238..e4262208e4 100644
--- a/src/ToolBox/SOS/Strike/gcroot.cpp
+++ b/src/ToolBox/SOS/Strike/gcroot.cpp
@@ -516,7 +516,7 @@ int GCRootImpl::PrintRootsInOlderGen()
if (!analyzeData.heap_analyze_success)
{
- ExtOut("Failed to gather needed data, possibly due to memory contraints in the debuggee.\n");
+ ExtOut("Failed to gather needed data, possibly due to memory constraints in the debuggee.\n");
ExtOut("To try again re-issue the !FindRoots -gen <N> command.\n");
return 0;
}
@@ -558,7 +558,7 @@ int GCRootImpl::PrintRootsInOlderGen()
if (!analyzeData.heap_analyze_success)
{
- ExtOut("Failed to gather needed data, possibly due to memory contraints in the debuggee.\n");
+ ExtOut("Failed to gather needed data, possibly due to memory constraints in the debuggee.\n");
ExtOut("To try again re-issue the !FindRoots -gen <N> command.\n");
continue;
}
@@ -1663,7 +1663,7 @@ BOOL FindSegment(const DacpGcHeapDetails &heap, DacpHeapSegmentData &seg, CLRDAT
BOOL VerifyObject(const DacpGcHeapDetails &heap, DWORD_PTR objAddr, DWORD_PTR MTAddr, size_t objSize, BOOL bVerifyMember)
{
// This is only used by the other VerifyObject function if bVerifyMember is true,
- // so we only intialize it if we need it for verifying object members.
+ // so we only initialize it if we need it for verifying object members.
DacpHeapSegmentData seg;
if (bVerifyMember)
@@ -2161,7 +2161,7 @@ void HeapTraverser::PrintRefs(size_t obj, size_t methodTable, size_t size)
// TODO: pass info to callback having to lookup the MethodTableInfo again
MethodTableInfo* info = g_special_mtCache.Lookup((DWORD_PTR)methodTable);
- _ASSERTE(info->IsInitialized()); // This is the second pass, so we should be intialized
+ _ASSERTE(info->IsInitialized()); // This is the second pass, so we should be initialized
if (!info->bContainsPointers)
return;
diff --git a/src/ToolBox/SOS/Strike/stressLogDump.cpp b/src/ToolBox/SOS/Strike/stressLogDump.cpp
index 9c0ba1ed07..756cc73f7b 100644
--- a/src/ToolBox/SOS/Strike/stressLogDump.cpp
+++ b/src/ToolBox/SOS/Strike/stressLogDump.cpp
@@ -315,7 +315,7 @@ HRESULT StressLog::Dump(ULONG64 outProcLog, const char* fileName, struct IDebugD
BOOL bDoGcHist = (fileName == NULL);
FILE* file = NULL;
- // Fetch the circular buffer bookeeping data
+ // Fetch the circular buffer bookkeeping data
StressLog inProcLog;
HRESULT hr = memCallBack->ReadVirtual(UL64_TO_CDA(outProcLog), &inProcLog, sizeof(StressLog), 0);
if (hr != S_OK)
diff --git a/src/ToolBox/SOS/Strike/strike.cpp b/src/ToolBox/SOS/Strike/strike.cpp
index ef19ece472..b566ed5711 100644
--- a/src/ToolBox/SOS/Strike/strike.cpp
+++ b/src/ToolBox/SOS/Strike/strike.cpp
@@ -40,7 +40,7 @@
// To resolve this problem, SOS now abstracts the target behind the IMachine interface, and uses
// calls on IMachine to take target-specific actions. It implements X86Machine, ARMMachine, and
// AMD64Machine. An instance of these exists in each appropriate host (e.g. the X86 version of SOS
-// contains instaces of X86Machine and ARMMachine, the ARM version contains an instance of
+// contains instances of X86Machine and ARMMachine, the ARM version contains an instance of
// ARMMachine, and the AMD64 version contains an instance of AMD64Machine). The code included in
// each version if determined by the SosTarget*** MSBuild symbols, and SOS_TARGET_*** conditional
// compilation symbols (as specified in sos.targets).
@@ -4206,7 +4206,7 @@ DECLARE_API(DumpAsync)
}
// Get the address and method table of the state machine. While it'll generally be a struct,
- // it is valid for it to be a class, so we accomodate both.
+ // it is valid for it to be a class, so we accommodate both.
BOOL bStateMachineIsValueType = stateMachineField.Type == ELEMENT_TYPE_VALUETYPE;
CLRDATA_ADDRESS stateMachineAddr;
CLRDATA_ADDRESS stateMachineMT;
@@ -4445,8 +4445,8 @@ static const char *const str_fgm[] =
"Failed to reserve memory", // fgm_reserve_segment
"Didn't have enough memory to commit beginning of the segment", // fgm_commit_segment_beg
"Didn't have enough memory to commit the new ephemeral segment", // fgm_commit_eph_segment
- "Didn't have enough memory to grow the internal GC datastructures", // fgm_grow_table
- "Didn't have enough memory to commit the internal GC datastructures", // fgm_commit_table
+ "Didn't have enough memory to grow the internal GC data structures", // fgm_grow_table
+ "Didn't have enough memory to commit the internal GC data structures", // fgm_commit_table
};
void PrintOOMInfo(DacpOomData* oomData)
@@ -4924,7 +4924,7 @@ DECLARE_API(GCHeapStat)
return Status;
}
- // aggregate stats accross heaps / generation
+ // aggregate stats across heaps / generation
GenUsageStat genUsageStat[4] = {0, 0, 0, 0};
for (DWORD n = 0; n < dwNHeaps; n ++)
@@ -6787,7 +6787,7 @@ public:
pMeth->EndEnumInstances (h1);
}
- // if this is a generic method we need to add a defered bp
+ // if this is a generic method we need to add a deferred bp
BOOL bGeneric = FALSE;
pMeth->HasClassOrMethodInstantiation(&bGeneric);
@@ -9041,7 +9041,7 @@ static const char * const str_interesting_data_points[] =
static const char * const str_heap_compact_reasons[] =
{
"low on ephemeral space",
- "high fragmetation",
+ "high fragmentation",
"couldn't allocate gaps",
"user specfied compact LOH",
"last GC before OOM",
diff --git a/src/ToolBox/SOS/Strike/util.cpp b/src/ToolBox/SOS/Strike/util.cpp
index ba2626f8f6..db461bae69 100644
--- a/src/ToolBox/SOS/Strike/util.cpp
+++ b/src/ToolBox/SOS/Strike/util.cpp
@@ -1547,7 +1547,7 @@ LPWSTR FormatTypeName (__out_ecount (maxChars) LPWSTR pszName, UINT maxChars)
* *
* This function is called to dump all fields of a managed object. *
* dwStartAddr specifies the beginning memory address. *
-* bFirst is used to avoid printing header everytime. *
+* bFirst is used to avoid printing header every time. *
* *
\**********************************************************************/
void DisplayFields(CLRDATA_ADDRESS cdaMT, DacpMethodTableData *pMTD, DacpMethodTableFieldData *pMTFD, DWORD_PTR dwStartAddr, BOOL bFirst, BOOL bValueClass)
diff --git a/src/ToolBox/SOS/lldbplugin/services.cpp b/src/ToolBox/SOS/lldbplugin/services.cpp
index 3186920eb0..a0914baab3 100644
--- a/src/ToolBox/SOS/lldbplugin/services.cpp
+++ b/src/ToolBox/SOS/lldbplugin/services.cpp
@@ -134,7 +134,7 @@ LLDBServices::GetExpression(
}
//
-// lldb doesn't have a way or API to unwind an arbitary context (IP, SP)
+// lldb doesn't have a way or API to unwind an arbitrary context (IP, SP)
// and return the next frame so we have to stick with the native frames
// lldb has found and find the closest frame to the incoming context SP.
//
diff --git a/src/ToolBox/superpmi/superpmi-shared/methodcontext.cpp b/src/ToolBox/superpmi/superpmi-shared/methodcontext.cpp
index 1fa824e70a..aa806c31df 100644
--- a/src/ToolBox/superpmi/superpmi-shared/methodcontext.cpp
+++ b/src/ToolBox/superpmi/superpmi-shared/methodcontext.cpp
@@ -472,7 +472,7 @@ bool MethodContext::Equal(MethodContext* other)
//------------------------------------------------------------------------------
// MethodContext::recGlobalContext
// This method copies any relevant global (i.e. per-JIT-instance) data from
-// the given method context. Currently this is limited to configuiration
+// the given method context. Currently this is limited to configuration
// values, but may grow to encompass other information in the future (e.g.
// any information that is exposed by the ICorJitHost interface and is
// therefore accessible outside the context of a call to
@@ -2472,7 +2472,7 @@ void MethodContext::recGetArgType(CORINFO_SIG_INFO* sig,
ZeroMemory(&key, sizeof(GetArgType)); // We use the input structs as a key and use memcmp to compare.. so
// we need to zero out padding too
// Only setting values for things the EE seems to pay attention to... this is necessary since some of the values
- // are unset and fail our precise comparisions...
+ // are unset and fail our precise comparisons ...
key.flags = (DWORD)sig->flags;
key.numArgs = (DWORD)sig->numArgs;
key.sigInst_classInstCount = (DWORD)sig->sigInst.classInstCount;
@@ -5395,7 +5395,7 @@ void MethodContext::recCompareTypesForCast(CORINFO_CLASS_HANDLE fromClass,
}
void MethodContext::dmpCompareTypesForCast(DLDL key, DWORD value)
{
- printf("CompareTypesForCast key fromClas=%016llX, toClass=%016llx, result=%d", key.A, key.B, value);
+ printf("CompareTypesForCast key fromClass=%016llX, toClass=%016llx, result=%d", key.A, key.B, value);
}
TypeCompareState MethodContext::repCompareTypesForCast(CORINFO_CLASS_HANDLE fromClass, CORINFO_CLASS_HANDLE toClass)
{
diff --git a/src/ToolBox/superpmi/superpmi-shim-collector/superpmi-shim-collector.cpp b/src/ToolBox/superpmi/superpmi-shim-collector/superpmi-shim-collector.cpp
index 26f6563262..6971eb380c 100644
--- a/src/ToolBox/superpmi/superpmi-shim-collector/superpmi-shim-collector.cpp
+++ b/src/ToolBox/superpmi/superpmi-shim-collector/superpmi-shim-collector.cpp
@@ -64,7 +64,7 @@ void SetLogPath()
void SetLogPathName()
{
- // NOTE: under PAL, we don't get the comand line, so we depend on the random number generator to give us a unique
+ // NOTE: under PAL, we don't get the command line, so we depend on the random number generator to give us a unique
// filename.
WCHAR* OriginalExecutableName =
GetCommandLineW(); // TODO-Cleanup: not cool to write to the process view of commandline....
diff --git a/src/ToolBox/superpmi/superpmi/jitdebugger.cpp b/src/ToolBox/superpmi/superpmi/jitdebugger.cpp
index 80038647af..9de6b9cc16 100644
--- a/src/ToolBox/superpmi/superpmi/jitdebugger.cpp
+++ b/src/ToolBox/superpmi/superpmi/jitdebugger.cpp
@@ -299,9 +299,9 @@ HRESULT GetDebuggerSettingInfoWorker(__out_ecount_part_opt(*pcchDebuggerString,
*pcchDebuggerString = valueSize / sizeof(WCHAR);
// The size of an empty string with the null terminator is 2.
- BOOL fIsDebuggerStringEmptry = valueSize <= 2 ? TRUE : FALSE;
+ BOOL fIsDebuggerStringEmpty = valueSize <= 2 ? TRUE : FALSE;
- if ((ret != ERROR_SUCCESS) || (valueType != REG_SZ) || fIsDebuggerStringEmptry)
+ if ((ret != ERROR_SUCCESS) || (valueType != REG_SZ) || fIsDebuggerStringEmpty)
{
RegCloseKey(hKey);
return S_OK;
@@ -424,7 +424,7 @@ int DbgBreakCheck(const char* szFile, int iLine, const char* szExpr)
TerminateProcess(GetCurrentProcess(), 1);
break;
- // Tell caller to break at the correct loction.
+ // Tell caller to break at the correct location.
case IDRETRY:
if (IsDebuggerPresent())
diff --git a/src/ToolBox/superpmi/superpmi/neardiffer.cpp b/src/ToolBox/superpmi/superpmi/neardiffer.cpp
index 627e43a09b..aa1722eb1a 100644
--- a/src/ToolBox/superpmi/superpmi/neardiffer.cpp
+++ b/src/ToolBox/superpmi/superpmi/neardiffer.cpp
@@ -180,7 +180,7 @@ DIS* NearDiffer::GetMsVcDis()
// The output format is in MSDIS's disassembly format.
//
// Arguments:
-// block - A pointer to the code block to diassemble.
+// block - A pointer to the code block to disassemble.
// blocksize - The size of the code block to disassemble.
// originalAddr - The original base address of the code block.
//
@@ -402,7 +402,7 @@ bool NearDiffer::compareOffsets(
// mc - The method context of the method to diff. Unused.
// cr1 - The first compile result to compare. Unused.
// cr2 - The second compile result to compare. Unused.
-// block1 - A pointer to the first code block to diassemble.
+// block1 - A pointer to the first code block to disassemble.
// blocksize1 - The size of the first code block to compare.
// datablock1 - A pointer to the first read-only data block to compare. Unused.
// datablockSize1 - The size of the first read-only data block to compare.
@@ -411,7 +411,7 @@ bool NearDiffer::compareOffsets(
// otherCodeBlock1 - The original base address of the first cold code block. Note that this is
// just an address; we don't need the cold code buffer.
// otherCodeBlockSize1- The size of the first cold code block.
-// block2 - A pointer to the second code block to diassemble.
+// block2 - A pointer to the second code block to disassemble.
// blocksize2 - The size of the second code block to compare.
// datablock2 - A pointer to the second read-only data block to compare.
// datablockSize2 - The size of the second read-only data block to compare.
@@ -698,10 +698,10 @@ DumpDetails:
// mc - The method context of the method to diff.
// cr1 - The first compile result to compare.
// cr2 - The second compile result to compare.
-// block1 - A pointer to the first code block to diassemble.
+// block1 - A pointer to the first code block to disassemble.
// blocksize1 - The size of the first code block to compare.
// originalDataBlock1 - The original base address of the first read-only data block.
-// block2 - A pointer to the second code block to diassemble.
+// block2 - A pointer to the second code block to disassemble.
// blocksize2 - The size of the second code block to compare.
// originalDataBlock2 - The original base address of the second read-only data block.
//