* go-backend.c: Include "output.h".
(go_write_export_data): New function.
* go-c.h (go_write_export_data): Declare.
* Make-lang.in (go/go-backend.o): Depend on output.h.
(go/export.o): Depend on $(GO_C_H). Do not depend on
$(MACHMODE_H), output.h, or $(TARGET_H).
From-SVN: r174366
+2011-05-27 Ian Lance Taylor <iant@google.com>
+
+ * go-backend.c: Include "output.h".
+ (go_write_export_data): New function.
+ * go-c.h (go_write_export_data): Declare.
+ * Make-lang.in (go/go-backend.o): Depend on output.h.
+ (go/export.o): Depend on $(GO_C_H). Do not depend on
+ $(MACHMODE_H), output.h, or $(TARGET_H).
+
2011-05-24 Joseph Myers <joseph@codesourcery.com>
* Make-lang.in (GCCGO_OBJS): Remove prefix.o.
GO_RUNTIME_H = go/gofrontend/runtime.h go/gofrontend/runtime.def
go/go-backend.o: go/go-backend.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
- $(TM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(TARGET_H)
+ $(TM_H) $(RTL_H) $(TREE_H) $(TM_P_H) output.h $(TARGET_H)
go/go-lang.o: go/go-lang.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(OPTS_H) \
$(TREE_H) $(GIMPLE_H) $(GGC_H) $(TOPLEV_H) debug.h options.h \
go/dataflow.o: go/gofrontend/dataflow.cc $(GO_SYSTEM_H) $(GO_GOGO_H) \
$(GO_EXPRESSIONS_H) $(GO_STATEMENTS_H) go/gofrontend/dataflow.h
go/export.o: go/gofrontend/export.cc $(GO_SYSTEM_H) \
- $(srcdir)/../include/sha1.h $(MACHMODE_H) output.h $(TARGET_H) \
- $(GO_GOGO_H) $(GO_TYPES_H) $(GO_STATEMENTS_H) go/gofrontend/export.h
+ $(srcdir)/../include/sha1.h $(GO_C_H) $(GO_GOGO_H) $(GO_TYPES_H) \
+ $(GO_STATEMENTS_H) go/gofrontend/export.h
go/expressions.o: go/gofrontend/expressions.cc $(GO_SYSTEM_H) $(TOPLEV_H) \
intl.h $(TREE_H) $(GIMPLE_H) tree-iterator.h convert.h $(REAL_H) \
realmpfr.h $(GO_C_H) $(GO_GOGO_H) $(GO_TYPES_H) \
#include "rtl.h"
#include "tree.h"
#include "tm_p.h"
+#include "output.h"
#include "target.h"
#include "go-c.h"
/* Let the backend know that the options have changed. */
targetm.override_options_after_change ();
}
+
+/* This is called by the Go frontend proper to add data to the
+ .go_export section. */
+
+void
+go_write_export_data (const char *bytes, unsigned int size)
+{
+ static section* sec;
+
+ if (sec == NULL)
+ {
+ gcc_assert (targetm.have_named_sections);
+ sec = get_section (".go_export", SECTION_DEBUG, NULL);
+ }
+
+ switch_to_section (sec);
+ assemble_string (bytes, size);
+}
extern void go_imported_unsafe (void);
+extern void go_write_export_data (const char *, unsigned int);
+
#if defined(__cplusplus) && !defined(ENABLE_BUILD_WITH_CXX)
} /* End extern "C". */
#endif
// license that can be found in the LICENSE file.
#include "go-system.h"
-#include "sha1.h"
-
-#ifndef ENABLE_BUILD_WITH_CXX
-extern "C"
-{
-#endif
-#include "machmode.h"
-#include "output.h"
-#include "target.h"
+#include "sha1.h"
-#ifndef ENABLE_BUILD_WITH_CXX
-}
-#endif
+#include "go-c.h"
#include "gogo.h"
#include "types.h"
// Class Stream_to_section.
Stream_to_section::Stream_to_section()
- : section_(NULL)
{
}
void
Stream_to_section::do_write(const char* bytes, size_t length)
{
- section* sec = (section*) this->section_;
- if (sec == NULL)
- {
- go_assert(targetm.have_named_sections);
-
- sec = get_section(".go_export", SECTION_DEBUG, NULL);
- this->section_ = (void*) sec;
- }
-
- switch_to_section(sec);
- assemble_string(bytes, length);
+ go_write_export_data (bytes, length);
}
protected:
void
do_write(const char*, size_t);
-
- private:
- // The section we are writing to; this is really union section
- // defined in output.h.
- void* section_;
};
#endif // !defined(GO_EXPORT_H)