SWDEV-286322 - clean up trailing white space

Change-Id: I01f3a559cbd1835aa2fdad7abe2bd685d90fc6a8
This commit is contained in:
jujiang
2021-09-01 11:45:47 -04:00
parent 1d0364e590
commit f63115cec6
16 changed files with 61 additions and 61 deletions
+1 -1
View File
@@ -456,7 +456,7 @@ bool Elf::getTarget(uint16_t& machine, ElfPlatform& platform) const
bool Elf::setTarget(uint16_t machine, ElfPlatform platform)
{
Elf64_Half mach;
if (platform == CPU_PLATFORM)
if (platform == CPU_PLATFORM)
mach = machine + CPU_BASE;
else if (platform == CAL_PLATFORM)
mach = machine + CAL_BASE;
+1 -1
View File
@@ -208,7 +208,7 @@ private:
bool _successful;
public:
public:
/*
Elf object can be created for reading or writing (it could be created for
+1 -1
View File
@@ -278,7 +278,7 @@ typedef uint64_t Elf64_Off;
#define EM_TILE64 187 // Tilera TILE64 multicore architecture family
#define EM_TILEPRO 188 // Tilera TILEPro multicore architecture family
#define EM_MICROBLAZE 189 // Xilinx MicroBlaze 32-bit RISC soft processor core
#define EM_CUDA 190 // NVIDIA CUDA architecture
#define EM_CUDA 190 // NVIDIA CUDA architecture
#define EM_TILEGX 191 // Tilera TILE-Gx multicore architecture family
#define EM_CLOUDSHIELD 192 // CloudShield architecture family
#define EM_COREA_1ST 193 // KIPO-KAIST Core-A 1st generation processor family
+37 -37
View File
@@ -37,7 +37,7 @@ namespace ELFIO {
static struct class_table_t {
const char key;
const char* str;
} class_table [] =
} class_table [] =
{
{ ELFCLASS32, "ELF32" },
{ ELFCLASS64, "ELF64" },
@@ -47,7 +47,7 @@ static struct class_table_t {
static struct endian_table_t {
const char key;
const char* str;
} endian_table [] =
} endian_table [] =
{
{ ELFDATANONE, "None" },
{ ELFDATA2LSB, "Little endian" },
@@ -58,7 +58,7 @@ static struct endian_table_t {
static struct version_table_t {
const Elf64_Word key;
const char* str;
} version_table [] =
} version_table [] =
{
{ EV_NONE , "None" },
{ EV_CURRENT, "Current" },
@@ -68,7 +68,7 @@ static struct version_table_t {
static struct type_table_t {
const Elf32_Half key;
const char* str;
} type_table [] =
} type_table [] =
{
{ ET_NONE, "No file type" },
{ ET_REL , "Relocatable file" },
@@ -81,7 +81,7 @@ static struct type_table_t {
static struct machine_table_t {
const Elf64_Half key;
const char* str;
} machine_table [] =
} machine_table [] =
{
{ EM_NONE , "No machine" },
{ EM_M32 , "AT&T WE 32100" },
@@ -283,7 +283,7 @@ static struct machine_table_t {
static struct section_type_table_t {
const Elf64_Half key;
const char* str;
} section_type_table [] =
} section_type_table [] =
{
{ SHT_NULL , "NULL" },
{ SHT_PROGBITS , "PROGBITS" },
@@ -308,7 +308,7 @@ static struct section_type_table_t {
static struct segment_type_table_t {
const Elf_Word key;
const char* str;
} segment_type_table [] =
} segment_type_table [] =
{
{ PT_NULL , "NULL" },
{ PT_LOAD , "LOAD" },
@@ -324,7 +324,7 @@ static struct segment_type_table_t {
static struct segment_flag_table_t {
const Elf_Word key;
const char* str;
} segment_flag_table [] =
} segment_flag_table [] =
{
{ 0, "" },
{ 1, "X" },
@@ -340,7 +340,7 @@ static struct segment_flag_table_t {
static struct symbol_bind_t {
const Elf_Word key;
const char* str;
} symbol_bind_table [] =
} symbol_bind_table [] =
{
{ STB_LOCAL , "LOCAL" },
{ STB_GLOBAL , "GLOBAL" },
@@ -356,7 +356,7 @@ static struct symbol_bind_t {
static struct symbol_type_t {
const Elf_Word key;
const char* str;
} symbol_type_table [] =
} symbol_type_table [] =
{
{ STT_NOTYPE , "NOTYPE" },
{ STT_OBJECT , "OBJECT" },
@@ -375,7 +375,7 @@ static struct symbol_type_t {
static struct dynamic_tag_t {
const Elf_Word key;
const char* str;
} dynamic_tag_table [] =
} dynamic_tag_table [] =
{
{ DT_NULL , "NULL" },
{ DT_NEEDED , "NEEDED" },
@@ -431,7 +431,7 @@ class dump
static void
header( std::ostream& out, const elfio& reader )
{
if (!reader.get_header_size())
if (!reader.get_header_size())
{
return;
}
@@ -465,12 +465,12 @@ class dump
out << "[ Nr ] Type Addr Size ES Flg" << std::endl
<< " Lk Inf Al Name" << std::endl;
}
for ( Elf_Half i = 0; i < n; ++i ) { // For all sections
section* sec = reader.sections[i];
section_header( out, i, sec, reader.get_class() );
}
out << "Key to Flags: W (write), A (alloc), X (execute)\n\n"
<< std::endl;
}
@@ -483,7 +483,7 @@ class dump
std::ios_base::fmtflags original_flags = out.flags();
if ( elf_class == ELFCLASS32 ) { // Output for 32-bit
out << "["
out << "["
<< DUMP_DEC_FORMAT( 5 ) << no
<< "] "
<< DUMP_STR_FORMAT( 17 ) << str_section_type( sec->get_type() ) << " "
@@ -498,7 +498,7 @@ class dump
<< std::endl;
}
else { // Output for 64-bit
out << "["
out << "["
<< DUMP_DEC_FORMAT( 5 ) << no
<< "] "
<< DUMP_STR_FORMAT( 17 ) << str_section_type( sec->get_type() ) << " "
@@ -517,7 +517,7 @@ class dump
out.flags(original_flags);
return;
return;
}
//------------------------------------------------------------------------------
@@ -539,12 +539,12 @@ class dump
<< " FileSize Mem.Size Align"
<< std::endl;
}
for ( Elf_Half i = 0; i < n; ++i ) {
segment* seg = reader.segments[i];
segment_header( out, i, seg, reader.get_class() );
}
out << std::endl;
}
@@ -556,7 +556,7 @@ class dump
std::ios_base::fmtflags original_flags = out.flags();
if ( elf_class == ELFCLASS32 ) { // Output for 32-bit
out << "["
out << "["
<< DUMP_DEC_FORMAT( 5 ) << no
<< "] "
<< DUMP_STR_FORMAT( 14 ) << str_segment_type( seg->get_type() ) << " "
@@ -569,7 +569,7 @@ class dump
<< std::endl;
}
else { // Output for 64-bit
out << "["
out << "["
<< DUMP_DEC_FORMAT( 5 ) << no
<< "] "
<< DUMP_STR_FORMAT( 14 ) << str_segment_type( seg->get_type() ) << " "
@@ -586,7 +586,7 @@ class dump
out.flags(original_flags);
}
//------------------------------------------------------------------------------
static void
symbol_tables( std::ostream& out, const elfio& reader )
@@ -626,7 +626,7 @@ class dump
}
}
}
//------------------------------------------------------------------------------
static void
symbol_table( std::ostream& out,
@@ -642,7 +642,7 @@ class dump
std::ios_base::fmtflags original_flags = out.flags();
if ( elf_class == ELFCLASS32 ) { // Output for 32-bit
out << "["
out << "["
<< DUMP_DEC_FORMAT( 5 ) << no
<< "] "
<< DUMP_HEX_FORMAT( 8 ) << value << " "
@@ -654,7 +654,7 @@ class dump
<< std::endl;
}
else { // Output for 64-bit
out << "["
out << "["
<< DUMP_DEC_FORMAT( 5 ) << no
<< "] "
<< DUMP_HEX_FORMAT( 16 ) << value << " "
@@ -670,7 +670,7 @@ class dump
out.flags(original_flags);
}
//------------------------------------------------------------------------------
static void
notes( std::ostream& out, const elfio& reader )
@@ -690,14 +690,14 @@ class dump
std::string name;
void* desc;
Elf_Word descsz;
if ( notes.get_note( j, type, name, desc, descsz ) ) {
// 'name' usually contains \0 at the end. Try to fix it
name = name.c_str();
note( out, j, type, name );
}
}
out << std::endl;
}
}
@@ -711,14 +711,14 @@ class dump
Elf_Word type,
const std::string& name )
{
out << " ["
out << " ["
<< DUMP_DEC_FORMAT( 2 ) << no
<< "] "
<< DUMP_HEX_FORMAT( 8 ) << type << " "
<< DUMP_STR_FORMAT( 1 ) << name
<< std::endl;
}
//------------------------------------------------------------------------------
static void
dynamic_tags( std::ostream& out, const elfio& reader )
@@ -749,7 +749,7 @@ class dump
}
}
}
//------------------------------------------------------------------------------
static void
dynamic_tag( std::ostream& out,
@@ -759,7 +759,7 @@ class dump
std::string str,
unsigned int /*elf_class*/ )
{
out << "["
out << "["
<< DUMP_DEC_FORMAT( 5 ) << no
<< "] "
<< DUMP_STR_FORMAT( 16 ) << str_dynamic_tag( tag ) << " ";
@@ -800,7 +800,7 @@ class dump
out.flags(original_flags);
}
return;
return;
}
//------------------------------------------------------------------------------
@@ -854,7 +854,7 @@ class dump
out.flags(original_flags);
}
return;
return;
}
//------------------------------------------------------------------------------
@@ -876,7 +876,7 @@ class dump
out << std::endl;
}
private:
//------------------------------------------------------------------------------
template< typename T, typename K >
@@ -922,7 +922,7 @@ class dump
return format_assoc( table, (const int)key );
}
//------------------------------------------------------------------------------
static
std::string
@@ -970,7 +970,7 @@ class dump
#undef DUMP_HEX_FORMAT
#undef DUMP_STR_FORMAT
}; // class dump
} // namespace ELFIO
} // namespace amd
+1 -1
View File
@@ -60,7 +60,7 @@ class section
protected:
ELFIO_SET_ACCESS_DECL( Elf64_Off, offset );
ELFIO_SET_ACCESS_DECL( Elf_Half, index );
virtual void load( std::istream& stream,
std::streampos header_offset ) = 0;
virtual void save( std::ostream& stream,
+4 -4
View File
@@ -56,7 +56,7 @@ class segment
protected:
ELFIO_SET_ACCESS_DECL( Elf64_Off, offset );
ELFIO_SET_ACCESS_DECL( Elf_Half, index );
virtual const std::vector<Elf_Half>& get_sections() const = 0;
virtual void load( std::istream& stream, std::streampos header_offset ) = 0;
virtual void save( std::ostream& stream, std::streampos header_offset,
@@ -103,7 +103,7 @@ class segment_impl : public segment
}
//------------------------------------------------------------------------------
void
void
set_stream_size(size_t value)
{
stream_size = value;
@@ -179,7 +179,7 @@ class segment_impl : public segment
{
return sections;
}
//------------------------------------------------------------------------------
void
set_index( Elf_Half value )
@@ -213,7 +213,7 @@ class segment_impl : public segment
} catch (const std::bad_alloc&) {
data = 0;
}
if ( 0 != data ) {
stream.read( data, size );
data[size] = 0;
+1 -1
View File
@@ -65,7 +65,7 @@ class string_section_accessor_template
add_string( const char* str )
{
Elf_Word current_position = 0;
if (string_section) {
// Strings are addeded to the end of the current section data
current_position = (Elf_Word)string_section->get_size();