2014-03-25 16:26:38 -06:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// This file implements access to gccgo-generated export data.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-11-09 14:50:40 -07:00
|
|
|
"golang.org/x/tools/go/gccgoimporter"
|
|
|
|
"golang.org/x/tools/go/types"
|
2014-03-25 16:26:38 -06:00
|
|
|
)
|
|
|
|
|
2014-06-17 11:56:47 -06:00
|
|
|
var (
|
|
|
|
initmap = make(map[*types.Package]gccgoimporter.InitData)
|
|
|
|
)
|
|
|
|
|
2014-03-25 16:26:38 -06:00
|
|
|
func init() {
|
2014-03-28 16:17:20 -06:00
|
|
|
incpaths := []string{"/"}
|
|
|
|
|
2014-03-25 16:26:38 -06:00
|
|
|
// importer for default gccgo
|
|
|
|
var inst gccgoimporter.GccgoInstallation
|
|
|
|
inst.InitFromDriver("gccgo")
|
2014-06-17 11:56:47 -06:00
|
|
|
register("gccgo", inst.GetImporter(incpaths, initmap))
|
2014-03-28 15:50:14 -06:00
|
|
|
}
|
|
|
|
|
2014-06-17 11:56:47 -06:00
|
|
|
// Print the extra gccgo compiler data for this package, if it exists.
|
|
|
|
func (p *printer) printGccgoExtra(pkg *types.Package) {
|
|
|
|
if initdata, ok := initmap[pkg]; ok {
|
|
|
|
p.printf("/*\npriority %d\n", initdata.Priority)
|
2014-03-28 15:50:14 -06:00
|
|
|
|
2014-06-17 11:56:47 -06:00
|
|
|
p.printDecl("init", len(initdata.Inits), func() {
|
|
|
|
for _, init := range initdata.Inits {
|
|
|
|
p.printf("%s %s %d\n", init.Name, init.InitFunc, init.Priority)
|
2014-03-28 15:50:14 -06:00
|
|
|
}
|
2014-06-17 11:56:47 -06:00
|
|
|
})
|
2014-03-25 16:26:38 -06:00
|
|
|
|
2014-06-17 11:56:47 -06:00
|
|
|
p.print("*/\n")
|
2014-03-25 16:26:38 -06:00
|
|
|
}
|
|
|
|
}
|