mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
Fix: 132 typos
Signed-off-by: RoboSchmied <github@roboschmie.de>
This commit is contained in:
parent
211e15bef5
commit
d7cc532fe3
58 changed files with 122 additions and 122 deletions
|
@ -128,7 +128,7 @@ public:
|
|||
/// \return \b true if the SUBPIECE should be represented as a cast
|
||||
virtual bool isSubpieceCast(Datatype *outtype,Datatype *intype,uint4 offset) const=0;
|
||||
|
||||
/// \brief Is the given data-type truncation considered a cast, given endianess concerns.
|
||||
/// \brief Is the given data-type truncation considered a cast, given endianness concerns.
|
||||
///
|
||||
/// This is equivalent to isSubpieceCast() but where the truncation is accomplished by pulling
|
||||
/// bytes directly out of memory. We assume the input data-type is layed down in memory, and
|
||||
|
|
|
@ -49,7 +49,7 @@ protected:
|
|||
/// \brief Pull a value from the load-image given a specific address
|
||||
///
|
||||
/// A contiguous chunk of memory is pulled from the load-image and returned as a
|
||||
/// constant value, respecting the endianess of the address space. The default implementation
|
||||
/// constant value, respecting the endianness of the address space. The default implementation
|
||||
/// of this method pulls the value directly from the LoadImage object.
|
||||
/// \param spc is the address space to pull the value from
|
||||
/// \param offset is the starting address offset (from within the space) to pull the value from
|
||||
|
@ -121,7 +121,7 @@ class EmulateSnippet : public Emulate {
|
|||
/// \brief Pull a value from the load-image given a specific address
|
||||
///
|
||||
/// A contiguous chunk of memory is pulled from the load-image and returned as a
|
||||
/// constant value, respecting the endianess of the address space.
|
||||
/// constant value, respecting the endianness of the address space.
|
||||
/// \param spc is the address space to pull the value from
|
||||
/// \param offset is the starting address offset (from within the space) to pull the value from
|
||||
/// \param sz is the number of bytes to pull from memory
|
||||
|
|
|
@ -140,7 +140,7 @@ public:
|
|||
virtual string getDescription(void) const;
|
||||
|
||||
static string normalizeProcessor(const string &nm); ///< Try to recover a \e language \e id processor field
|
||||
static string normalizeEndian(const string &nm); ///< Try to recover a \e language \e id endianess field
|
||||
static string normalizeEndian(const string &nm); ///< Try to recover a \e language \e id endianness field
|
||||
static string normalizeSize(const string &nm); ///< Try to recover a \e language \e id size field
|
||||
static string normalizeArchitecture(const string &nm); ///< Try to recover a \e language \e id string
|
||||
static void scanForSleighDirectories(const string &rootpath);
|
||||
|
|
|
@ -973,7 +973,7 @@ bool ConsistencyChecker::checkVarnodeTruncation(Constructor *ct,int4 slot,
|
|||
///
|
||||
/// Run through all Varnodes looking for offset templates marked as ConstTpl::v_offset_plus,
|
||||
/// which indicates they were constructed using truncation notation. These truncation expressions
|
||||
/// are checked for validity and adjusted depending on the endianess of the address space.
|
||||
/// are checked for validity and adjusted depending on the endianness of the address space.
|
||||
/// \param ct is the Constructor
|
||||
/// \param cttpl is the given p-code section
|
||||
/// \param isbigendian is set to \b true if the SLEIGH specification is big endian
|
||||
|
@ -2589,7 +2589,7 @@ void SleighCompile::setEndian(int4 end)
|
|||
|
||||
{
|
||||
setBigEndian( (end == 1) );
|
||||
predefinedSymbols(); // Set up symbols now that we know endianess
|
||||
predefinedSymbols(); // Set up symbols now that we know endianness
|
||||
}
|
||||
|
||||
/// \brief Definition a set of Varnodes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue