[llvm-commits] [llvm] r129109 - /llvm/trunk/tools/gold/gold-plugin.cpp
Rafael Espindola
rafael.espindola at gmail.com
Thu Apr 7 14:11:00 PDT 2011
Author: rafael
Date: Thu Apr 7 16:11:00 2011
New Revision: 129109
URL: http://llvm.org/viewvc/llvm-project?rev=129109&view=rev
Log:
If present, use gold's support for getting a file view. This prevents having
to map the file both in the linker and in the plugin.
Modified:
llvm/trunk/tools/gold/gold-plugin.cpp
Modified: llvm/trunk/tools/gold/gold-plugin.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/gold/gold-plugin.cpp?rev=129109&r1=129108&r2=129109&view=diff
==============================================================================
--- llvm/trunk/tools/gold/gold-plugin.cpp (original)
+++ llvm/trunk/tools/gold/gold-plugin.cpp Thu Apr 7 16:11:00 2011
@@ -50,6 +50,7 @@
ld_plugin_add_input_file add_input_file = NULL;
ld_plugin_add_input_library add_input_library = NULL;
ld_plugin_set_extra_library_path set_extra_library_path = NULL;
+ ld_plugin_get_view get_view = NULL;
ld_plugin_message message = discard_message;
int api_version = 0;
@@ -205,6 +206,9 @@
case LDPT_SET_EXTRA_LIBRARY_PATH:
set_extra_library_path = tv->tv_u.tv_set_extra_library_path;
break;
+ case LDPT_GET_VIEW:
+ get_view = tv->tv_u.tv_get_view;
+ break;
case LDPT_MESSAGE:
message = tv->tv_u.tv_message;
break;
@@ -232,7 +236,14 @@
int *claimed) {
lto_module_t M;
- if (file->offset) {
+ if (get_view) {
+ const void *view;
+ if (get_view(file->handle, &view) != LDPS_OK) {
+ (*message)(LDPL_ERROR, "Failed to get a view of %s", file->name);
+ return LDPS_ERR;
+ }
+ M = lto_module_create_from_memory(view, file->filesize);
+ } else if (file->offset) {
// Gold has found what might be IR part-way inside of a file, such as
// an .a archive.
M = lto_module_create_from_fd_at_offset(file->fd, file->name, -1,
More information about the llvm-commits
mailing list