compile: Distribute scope, add scope_data
authorJan Kratochvil <jan.kratochvil@redhat.com>
Sat, 16 May 2015 12:27:47 +0000 (14:27 +0200)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Sat, 16 May 2015 12:28:10 +0000 (14:28 +0200)
Provide a way to access current 'scope' during the do_module_cleanup stage and
associate more data with it.

gdb/ChangeLog
2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>

* cli/cli-script.c (execute_control_command): Update
eval_compile_command caller.
* compile/compile-object-load.c (compile_object_load): Add parameters
scope and scope_data.  Set them.
* compile/compile-object-load.h (struct compile_module): Add fields
scope and scope_data.
(compile_object_load): Add parameters scope and scope_data.
* compile/compile-object-run.c (struct do_module_cleanup): Add fields
scope and scope_data.
(compile_object_run): Propagate the fields scope and scope_data.
* compile/compile.c (compile_file_command, compile_code_command):
Update eval_compile_command callers.
(eval_compile_command): Add parameter scope_data.  Pass it plus scope.
* compile/compile.h (eval_compile_command): Add parameter scope_data.
* defs.h (struct command_line): Add field scope_data.

gdb/ChangeLog
gdb/cli/cli-script.c
gdb/compile/compile-object-load.c
gdb/compile/compile-object-load.h
gdb/compile/compile-object-run.c
gdb/compile/compile.c
gdb/compile/compile.h
gdb/defs.h

index 5a2c824720418e60749578eadd40a590d8a3c7da..dac31aea7c6b2385dfc7bb79dc96fc6d6b69e8b8 100644 (file)
@@ -1,3 +1,21 @@
+2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * cli/cli-script.c (execute_control_command): Update
+       eval_compile_command caller.
+       * compile/compile-object-load.c (compile_object_load): Add parameters
+       scope and scope_data.  Set them.
+       * compile/compile-object-load.h (struct compile_module): Add fields
+       scope and scope_data.
+       (compile_object_load): Add parameters scope and scope_data.
+       * compile/compile-object-run.c (struct do_module_cleanup): Add fields
+       scope and scope_data.
+       (compile_object_run): Propagate the fields scope and scope_data.
+       * compile/compile.c (compile_file_command, compile_code_command):
+       Update eval_compile_command callers.
+       (eval_compile_command): Add parameter scope_data.  Pass it plus scope.
+       * compile/compile.h (eval_compile_command): Add parameter scope_data.
+       * defs.h (struct command_line): Add field scope_data.
+
 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
        * printcmd.c (struct format_data): Move it to valprint.h.
index 7a4ed7864aa28a215d079680568d6641e4aa06f2..4bd18a73b6f3f644711bd507d4ba81a244cd6bf7 100644 (file)
@@ -615,7 +615,8 @@ execute_control_command (struct command_line *cmd)
       }
 
     case compile_control:
-      eval_compile_command (cmd, NULL, cmd->control_u.compile.scope);
+      eval_compile_command (cmd, NULL, cmd->control_u.compile.scope,
+                           cmd->control_u.compile.scope_data);
       ret = simple_control;
       break;
 
index 745d787c1ff670ba041d1e246ab0d8befd6cd909..fd440be79091cb937df8096c378f6fb98021f550 100644 (file)
@@ -464,7 +464,8 @@ store_regs (struct type *regs_type, CORE_ADDR regs_base)
    function returns.  */
 
 struct compile_module *
-compile_object_load (const char *object_file, const char *source_file)
+compile_object_load (const char *object_file, const char *source_file,
+                    enum compile_i_scope_types scope, void *scope_data)
 {
   struct cleanup *cleanups, *cleanups_free_objfile;
   bfd *abfd;
@@ -597,5 +598,7 @@ compile_object_load (const char *object_file, const char *source_file)
   retval->source_file = xstrdup (source_file);
   retval->func_addr = func_addr;
   retval->regs_addr = regs_addr;
+  retval->scope = scope;
+  retval->scope_data = scope_data;
   return retval;
 }
index bef575ed36bf98ae5b9efd2c23380ed3a732e6ec..311fb0940ac568fa1e95d2dda35d8d30faa2993a 100644 (file)
@@ -31,9 +31,16 @@ struct compile_module
   /* Inferior registers address or NULL if the inferior function does not
      require any.  */
   CORE_ADDR regs_addr;
+
+  /* The "scope" of this compilation.  */
+  enum compile_i_scope_types scope;
+
+  /* User data for SCOPE in use.  */
+  void *scope_data;
 };
 
-extern struct compile_module *compile_object_load (const char *object_file,
-                                                  const char *source_file);
+extern struct compile_module *compile_object_load
+  (const char *object_file, const char *source_file,
+   enum compile_i_scope_types scope, void *scope_data);
 
 #endif /* GDB_COMPILE_OBJECT_LOAD_H */
index 422693b6167dfd59be973cb059021f0f636ebf4d..c194705e24d5847b9faa48d73c3843e28150997b 100644 (file)
@@ -36,6 +36,10 @@ struct do_module_cleanup
   /* .c file OBJFILE was built from.  It needs to be xfree-d.  */
   char *source_file;
 
+  /* Copy from struct compile_module.  */
+  enum compile_i_scope_types scope;
+  void *scope_data;
+
   /* objfile_name of our objfile.  */
   char objfile_name_string[1];
 };
@@ -96,6 +100,8 @@ compile_object_run (struct compile_module *module)
   data->executedp = &executed;
   data->source_file = xstrdup (module->source_file);
   strcpy (data->objfile_name_string, objfile_name_s);
+  data->scope = module->scope;
+  data->scope_data = module->scope_data;
 
   xfree (module->source_file);
   xfree (module);
index 5ede27b8c3e691d0b7aa42df2a5060ec54f60036..621de6659fbf4ff4d5f17b2ded3eff75bdd71abc 100644 (file)
@@ -117,7 +117,7 @@ compile_file_command (char *arg, int from_tty)
   make_cleanup (xfree, arg);
   buffer = xstrprintf ("#include \"%s\"\n", arg);
   make_cleanup (xfree, buffer);
-  eval_compile_command (NULL, buffer, scope);
+  eval_compile_command (NULL, buffer, scope, NULL);
   do_cleanups (cleanup);
 }
 
@@ -150,7 +150,7 @@ compile_code_command (char *arg, int from_tty)
     }
 
   if (arg && *arg)
-      eval_compile_command (NULL, arg, scope);
+    eval_compile_command (NULL, arg, scope, NULL);
   else
     {
       struct command_line *l = get_command_line (compile_control, "");
@@ -560,7 +560,7 @@ compile_command (char *args, int from_tty)
 
 void
 eval_compile_command (struct command_line *cmd, const char *cmd_string,
-                     enum compile_i_scope_types scope)
+                     enum compile_i_scope_types scope, void *scope_data)
 {
   char *object_file, *source_file;
 
@@ -574,7 +574,8 @@ eval_compile_command (struct command_line *cmd, const char *cmd_string,
       make_cleanup (xfree, source_file);
       cleanup_unlink = make_cleanup (cleanup_unlink_file, object_file);
       make_cleanup (cleanup_unlink_file, source_file);
-      compile_module = compile_object_load (object_file, source_file);
+      compile_module = compile_object_load (object_file, source_file,
+                                           scope, scope_data);
       discard_cleanups (cleanup_unlink);
       do_cleanups (cleanup_xfree);
       compile_object_run (compile_module);
index ccb136154dbb4794c97d8319c3e6f13bf82eafe3..a973167c4247c1284e79a72d1af5de9e42177cdd 100644 (file)
@@ -30,7 +30,8 @@ struct dynamic_prop;
 
 extern void eval_compile_command (struct command_line *cmd,
                                  const char *cmd_string,
-                                 enum compile_i_scope_types scope);
+                                 enum compile_i_scope_types scope,
+                                 void *scope_data);
 
 /* Compile a DWARF location expression to C, suitable for use by the
    compiler.
index 29bb8c4a3f4e81c9cd2347256cde76855031eb52..98cf4d967bf57bf663a497276d36c66f2a4c7add 100644 (file)
@@ -397,6 +397,7 @@ struct command_line
        struct
          {
            enum compile_i_scope_types scope;
+           void *scope_data;
          }
        compile;
       }
This page took 0.031566 seconds and 4 git commands to generate.