summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsleevi <rsleevi@chromium.org>2015-07-20 16:27:48 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-20 23:29:17 +0000
commitdb9f0a6b277a39d2f2b70d99e17801a18a6d79a6 (patch)
treec9618e5af38d8f7c5dee152ef8013e1d98cb0a0f
parent675c4a0b28eb5b8e922153af2feb1ff68b635eb7 (diff)
downloadchromium_src-db9f0a6b277a39d2f2b70d99e17801a18a6d79a6.zip
chromium_src-db9f0a6b277a39d2f2b70d99e17801a18a6d79a6.tar.gz
chromium_src-db9f0a6b277a39d2f2b70d99e17801a18a6d79a6.tar.bz2
Revert of NaCl cleanup: Split out irt_interfaces.cc from irt_ppapi.cc (patchset #1 id:1 of https://codereview.chromium.org/1244533006/)
Reason for revert: Regressed Linux sizes - 4.5% is a bit of a hit to take to bump sizes. If you're absolutely sure this is acceptable, update sizes as well. Original issue's description: > NaCl cleanup: Split out irt_interfaces.cc from irt_ppapi.cc > > The intention here is that irt_interfaces.{cc,h} should list the NaCl > IRT interfaces that we implement in Chromium but that other files > (like irt_ppapi.cc) should implement them. This matches how the files > are organised in native_client/src/untrusted/irt/. > > This is in preparation for copying the PNaCl translator IRT interfaces > to the Chromium side. That will add a couple more interfaces to > irt_interfaces.cc (rather than to irt_ppapi.cc). > > BUG=302078 > TEST=NaCl tests in browser_tests > > Committed: https://crrev.com/5e662010c1f7881970de6de19bcbd50f2726ea00 > Cr-Commit-Position: refs/heads/master@{#339508} TBR=jvoung@chromium.org,bbudge@chromium.org,mseaborn@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=302078 Review URL: https://codereview.chromium.org/1249473003 Cr-Commit-Position: refs/heads/master@{#339559}
-rw-r--r--components/nacl/loader/nonsfi/nonsfi_main.cc2
-rw-r--r--ppapi/nacl_irt/irt_interfaces.cc70
-rw-r--r--ppapi/nacl_irt/irt_interfaces.h15
-rw-r--r--ppapi/nacl_irt/irt_ppapi.cc65
-rw-r--r--ppapi/nacl_irt/irt_ppapi.h3
-rw-r--r--ppapi/nacl_irt/irt_start.cc2
-rw-r--r--ppapi/ppapi_proxy.gypi2
-rw-r--r--ppapi/proxy/BUILD.gn2
8 files changed, 68 insertions, 93 deletions
diff --git a/components/nacl/loader/nonsfi/nonsfi_main.cc b/components/nacl/loader/nonsfi/nonsfi_main.cc
index 4fdb77a..6781514a 100644
--- a/components/nacl/loader/nonsfi/nonsfi_main.cc
+++ b/components/nacl/loader/nonsfi/nonsfi_main.cc
@@ -11,7 +11,7 @@
#if defined(OS_NACL_NONSFI)
#include "native_client/src/public/nonsfi/elf_loader.h"
-#include "ppapi/nacl_irt/irt_interfaces.h"
+#include "ppapi/nacl_irt/irt_ppapi.h"
#else
#include "base/memory/scoped_ptr.h"
#include "components/nacl/loader/nonsfi/elf_loader.h"
diff --git a/ppapi/nacl_irt/irt_interfaces.cc b/ppapi/nacl_irt/irt_interfaces.cc
deleted file mode 100644
index 77ce9d8..0000000
--- a/ppapi/nacl_irt/irt_interfaces.cc
+++ /dev/null
@@ -1,70 +0,0 @@
-// Copyright 2015 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.
-
-#include "ppapi/nacl_irt/irt_interfaces.h"
-
-#include <unistd.h>
-
-#include "build/build_config.h"
-#include "native_client/src/public/irt_core.h"
-#include "native_client/src/trusted/service_runtime/include/sys/unistd.h"
-#include "native_client/src/untrusted/irt/irt.h"
-#include "ppapi/nacl_irt/irt_manifest.h"
-#include "ppapi/nacl_irt/public/irt_ppapi.h"
-#include "ppapi/native_client/src/untrusted/pnacl_irt_shim/irt_shim_ppapi.h"
-
-#if defined(OS_NACL_SFI)
-static int ppapihook_pnacl_private_filter(void) {
- int pnacl_mode = sysconf(NACL_ABI__SC_NACL_PNACL_MODE);
- if (pnacl_mode == -1)
- return 0;
- return pnacl_mode;
-}
-#endif
-
-static const nacl_irt_resource_open kIrtResourceOpen = {
- ppapi::IrtOpenResource,
-};
-
-#if defined(OS_NACL_SFI)
-static int not_pnacl_filter(void) {
- int pnacl_mode = sysconf(NACL_ABI__SC_NACL_PNACL_MODE);
- if (pnacl_mode == -1)
- return 0;
- return !pnacl_mode;
-}
-#endif
-
-static const struct nacl_irt_interface irt_interfaces[] = {
- { NACL_IRT_PPAPIHOOK_v0_1, &nacl_irt_ppapihook, sizeof(nacl_irt_ppapihook),
- NULL },
-#if defined(OS_NACL_SFI)
- { NACL_IRT_PPAPIHOOK_PNACL_PRIVATE_v0_1,
- &nacl_irt_ppapihook_pnacl_private, sizeof(nacl_irt_ppapihook_pnacl_private),
- ppapihook_pnacl_private_filter },
-#endif
- { NACL_IRT_RESOURCE_OPEN_v0_1, &kIrtResourceOpen,
- sizeof(kIrtResourceOpen),
-#if defined(OS_NACL_SFI)
- not_pnacl_filter,
-#else
- // If we change PNaCl to use Non-SFI Mode on the open web,
- // we should add a filter here.
- NULL,
-#endif
- },
-};
-
-size_t chrome_irt_query(const char* interface_ident,
- void* table, size_t tablesize) {
- size_t result = nacl_irt_query_list(interface_ident,
- table,
- tablesize,
- irt_interfaces,
- sizeof(irt_interfaces));
- if (result != 0)
- return result;
-
- return nacl_irt_query_core(interface_ident, table, tablesize);
-}
diff --git a/ppapi/nacl_irt/irt_interfaces.h b/ppapi/nacl_irt/irt_interfaces.h
deleted file mode 100644
index 0971900..0000000
--- a/ppapi/nacl_irt/irt_interfaces.h
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2015 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 PPAPI_NACL_IRT_IRT_INTERFACES_H_
-#define PPAPI_NACL_IRT_IRT_INTERFACES_H_
-
-#include <stdlib.h>
-
-extern const struct nacl_irt_ppapihook nacl_irt_ppapihook;
-
-size_t chrome_irt_query(const char* interface_ident,
- void* table, size_t tablesize);
-
-#endif // PPAPI_NACL_IRT_IRT_INTERFACES_H_
diff --git a/ppapi/nacl_irt/irt_ppapi.cc b/ppapi/nacl_irt/irt_ppapi.cc
index 7cdf589..a9c13eb 100644
--- a/ppapi/nacl_irt/irt_ppapi.cc
+++ b/ppapi/nacl_irt/irt_ppapi.cc
@@ -2,11 +2,17 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <unistd.h>
+
#include "build/build_config.h"
-#include "ppapi/nacl_irt/irt_interfaces.h"
+#include "native_client/src/public/irt_core.h"
+#include "native_client/src/trusted/service_runtime/include/sys/unistd.h"
+#include "native_client/src/untrusted/irt/irt.h"
+#include "ppapi/nacl_irt/irt_manifest.h"
#include "ppapi/nacl_irt/irt_ppapi.h"
#include "ppapi/nacl_irt/plugin_main.h"
#include "ppapi/nacl_irt/public/irt_ppapi.h"
+#include "ppapi/native_client/src/untrusted/pnacl_irt_shim/irt_shim_ppapi.h"
static struct PP_StartFunctions g_pp_functions;
@@ -28,7 +34,62 @@ const void* PPP_GetInterface(const char* interface_name) {
return g_pp_functions.PPP_GetInterface(interface_name);
}
-const struct nacl_irt_ppapihook nacl_irt_ppapihook = {
+static const struct nacl_irt_ppapihook nacl_irt_ppapihook = {
irt_ppapi_start,
PpapiPluginRegisterThreadCreator,
};
+
+#if defined(OS_NACL_SFI)
+static int ppapihook_pnacl_private_filter(void) {
+ int pnacl_mode = sysconf(NACL_ABI__SC_NACL_PNACL_MODE);
+ if (pnacl_mode == -1)
+ return 0;
+ return pnacl_mode;
+}
+#endif
+
+static const nacl_irt_resource_open kIrtResourceOpen = {
+ ppapi::IrtOpenResource,
+};
+
+#if defined(OS_NACL_SFI)
+static int not_pnacl_filter(void) {
+ int pnacl_mode = sysconf(NACL_ABI__SC_NACL_PNACL_MODE);
+ if (pnacl_mode == -1)
+ return 0;
+ return !pnacl_mode;
+}
+#endif
+
+static const struct nacl_irt_interface irt_interfaces[] = {
+ { NACL_IRT_PPAPIHOOK_v0_1, &nacl_irt_ppapihook, sizeof(nacl_irt_ppapihook),
+ NULL },
+#if defined(OS_NACL_SFI)
+ { NACL_IRT_PPAPIHOOK_PNACL_PRIVATE_v0_1,
+ &nacl_irt_ppapihook_pnacl_private, sizeof(nacl_irt_ppapihook_pnacl_private),
+ ppapihook_pnacl_private_filter },
+#endif
+ { NACL_IRT_RESOURCE_OPEN_v0_1, &kIrtResourceOpen,
+ sizeof(kIrtResourceOpen),
+#if defined(OS_NACL_SFI)
+ not_pnacl_filter,
+#else
+ // If we change PNaCl to use Non-SFI Mode on the open web,
+ // we should add a filter here.
+ NULL,
+#endif
+ },
+};
+
+size_t chrome_irt_query(const char* interface_ident,
+ void* table, size_t tablesize) {
+ size_t result = nacl_irt_query_list(interface_ident,
+ table,
+ tablesize,
+ irt_interfaces,
+ sizeof(irt_interfaces));
+ if (result != 0)
+ return result;
+
+ return nacl_irt_query_core(interface_ident, table, tablesize);
+}
diff --git a/ppapi/nacl_irt/irt_ppapi.h b/ppapi/nacl_irt/irt_ppapi.h
index d65bede2..bc2e74c 100644
--- a/ppapi/nacl_irt/irt_ppapi.h
+++ b/ppapi/nacl_irt/irt_ppapi.h
@@ -7,4 +7,7 @@
extern "C" int irt_ppapi_start(const struct PP_StartFunctions* funcs);
+size_t chrome_irt_query(const char* interface_ident,
+ void* table, size_t tablesize);
+
#endif // PPAPI_NACL_IRT_IRT_PPAPI_H_
diff --git a/ppapi/nacl_irt/irt_start.cc b/ppapi/nacl_irt/irt_start.cc
index 82765c8..f199de1 100644
--- a/ppapi/nacl_irt/irt_start.cc
+++ b/ppapi/nacl_irt/irt_start.cc
@@ -11,7 +11,7 @@
#include "base/at_exit.h"
#include "native_client/src/public/chrome_main.h"
#include "native_client/src/public/irt_core.h"
-#include "ppapi/nacl_irt/irt_interfaces.h"
+#include "ppapi/nacl_irt/irt_ppapi.h"
#include "ppapi/nacl_irt/plugin_startup.h"
void nacl_irt_start(uint32_t* info) {
diff --git a/ppapi/ppapi_proxy.gypi b/ppapi/ppapi_proxy.gypi
index bfb3b5c..d099e0a 100644
--- a/ppapi/ppapi_proxy.gypi
+++ b/ppapi/ppapi_proxy.gypi
@@ -253,8 +253,6 @@
'target_conditions': [
['>(nacl_untrusted_build)==1', {
'sources': [
- 'nacl_irt/irt_interfaces.cc',
- 'nacl_irt/irt_interfaces.h',
'nacl_irt/irt_ppapi.cc',
'nacl_irt/irt_ppapi.h',
'nacl_irt/irt_start.cc',
diff --git a/ppapi/proxy/BUILD.gn b/ppapi/proxy/BUILD.gn
index c9de244..8e26008 100644
--- a/ppapi/proxy/BUILD.gn
+++ b/ppapi/proxy/BUILD.gn
@@ -196,8 +196,6 @@ component("proxy") {
if (is_nacl) {
sources += [
- "../nacl_irt/irt_interfaces.cc",
- "../nacl_irt/irt_interfaces.h",
"../nacl_irt/irt_ppapi.cc",
"../nacl_irt/irt_ppapi.h",
"../nacl_irt/irt_start.cc",