Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(744)

Unified Diff: components/nacl/loader/nonsfi/elf_loader.h

Issue 100373005: Initial implementation of Bare Metal Mode for NaCl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/nacl/loader/nacl_listener.cc ('k') | components/nacl/loader/nonsfi/elf_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/loader/nonsfi/elf_loader.h
diff --git a/components/nacl/loader/nonsfi/elf_loader.h b/components/nacl/loader/nonsfi/elf_loader.h
new file mode 100644
index 0000000000000000000000000000000000000000..672dd9c76bfa011ff26fe24c0cc04f888f2b6056
--- /dev/null
+++ b/components/nacl/loader/nonsfi/elf_loader.h
@@ -0,0 +1,47 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_NACL_LOADER_NONSFI_ELF_LOADER_H_
+#define COMPONENTS_NACL_LOADER_NONSFI_ELF_LOADER_H_
+
+#include "base/basictypes.h"
+#include "base/memory/scoped_ptr.h"
+#include "native_client/src/include/portability.h"
+#include "native_client/src/trusted/service_runtime/nacl_error_code.h"
+
+#if !defined(OS_LINUX)
+#error Non SFI mode is currently supported only on linux.
+#endif
+
+struct NaClDesc;
+
+namespace nacl {
+namespace nonsfi {
+
+class ElfImage {
+ public:
+ ElfImage();
+ ~ElfImage();
+
+ // Available only after Load() is called.
+ uintptr_t entry_point() const;
+
+ // Reads the ELF file from the descriptor and stores the header information
+ // into this instance.
+ NaClErrorCode Read(struct NaClDesc* descriptor);
+
+ // Loads the ELF executable to the memory.
+ NaClErrorCode Load(struct NaClDesc* descriptor);
+
+ private:
+ struct Data;
+ ::scoped_ptr<Data> data_;
+
+ DISALLOW_COPY_AND_ASSIGN(ElfImage);
+};
+
+} // namespace nonsfi
+} // namespace nacl
+
+#endif // COMPONENTS_NACL_LOADER_NONSFI_ELF_LOADER_H_
« no previous file with comments | « components/nacl/loader/nacl_listener.cc ('k') | components/nacl/loader/nonsfi/elf_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698