Skip to content
Snippets Groups Projects
Commit 5f904722 authored by Serge Lamikhov-Center's avatar Serge Lamikhov-Center
Browse files

New machine numbers added

parent 4ceb35bd
No related branches found
No related tags found
No related merge requests found
...@@ -314,6 +314,10 @@ typedef uint64_t Elf64_Off; ...@@ -314,6 +314,10 @@ typedef uint64_t Elf64_Off;
#define EM_CEVA 245 // CEVA Processor Architecture Family #define EM_CEVA 245 // CEVA Processor Architecture Family
#define EM_CEVA_X2 246 // CEVA X2 Processor Family #define EM_CEVA_X2 246 // CEVA X2 Processor Family
#define EM_BPF 247 // Linux BPF – in-kernel virtual machine #define EM_BPF 247 // Linux BPF – in-kernel virtual machine
#define EM_GRAPHCORE_IPU 248 // Graphcore Intelligent Processing Unit
#define EM_IMG1 249 // Imagination Technologies
#define EM_NFP 250 // Netronome Flow Processor (P)
#define EM_CSKY 252 // C-SKY processor family
// File version // File version
#define EV_NONE 0 #define EV_NONE 0
......
...@@ -249,7 +249,7 @@ class dynamic_section_accessor_template ...@@ -249,7 +249,7 @@ class dynamic_section_accessor_template
S* dynamic_section; S* dynamic_section;
}; };
using dynamic_section_accessor = dynamic_section_accessor_template<section>; using dynamic_section_accessor = dynamic_section_accessor_template<section>;
using const_dynamic_section_accessor = dynamic_section_accessor_template<const section>; using const_dynamic_section_accessor = dynamic_section_accessor_template<const section>;
} // namespace ELFIO } // namespace ELFIO
......
...@@ -164,7 +164,7 @@ class note_section_accessor_template ...@@ -164,7 +164,7 @@ class note_section_accessor_template
std::vector<Elf_Xword> note_start_positions; std::vector<Elf_Xword> note_start_positions;
}; };
using note_section_accessor = note_section_accessor_template<section>; using note_section_accessor = note_section_accessor_template<section>;
using const_note_section_accessor = note_section_accessor_template<const section>; using const_note_section_accessor = note_section_accessor_template<const section>;
} // namespace ELFIO } // namespace ELFIO
......
...@@ -365,7 +365,7 @@ class relocation_section_accessor_template ...@@ -365,7 +365,7 @@ class relocation_section_accessor_template
S* relocation_section; S* relocation_section;
}; };
using relocation_section_accessor = relocation_section_accessor_template<section>; using relocation_section_accessor = relocation_section_accessor_template<section>;
using const_relocation_section_accessor = relocation_section_accessor_template<const section>; using const_relocation_section_accessor = relocation_section_accessor_template<const section>;
} // namespace ELFIO } // namespace ELFIO
......
...@@ -92,7 +92,7 @@ class string_section_accessor_template ...@@ -92,7 +92,7 @@ class string_section_accessor_template
S* string_section; S* string_section;
}; };
using string_section_accessor = string_section_accessor_template<section>; using string_section_accessor = string_section_accessor_template<section>;
using const_string_section_accessor = string_section_accessor_template<const section>; using const_string_section_accessor = string_section_accessor_template<const section>;
} // namespace ELFIO } // namespace ELFIO
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment