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 (
|
2016-03-17 13:25:34 -06:00
|
|
|
"go/importer"
|
2019-11-20 20:43:00 -07:00
|
|
|
"go/token"
|
2016-03-17 13:25:34 -06:00
|
|
|
"go/types"
|
2014-06-17 11:56:47 -06:00
|
|
|
)
|
|
|
|
|
2014-03-25 16:26:38 -06:00
|
|
|
func init() {
|
2019-11-20 20:43:00 -07:00
|
|
|
register("gccgo", importer.ForCompiler(token.NewFileSet(), "gccgo", nil))
|
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) {
|
2016-03-17 13:25:34 -06:00
|
|
|
// Disabled for now.
|
|
|
|
// TODO(gri) address this at some point.
|
|
|
|
|
|
|
|
// if initdata, ok := initmap[pkg]; ok {
|
|
|
|
// p.printf("/*\npriority %d\n", initdata.Priority)
|
2014-03-28 15:50:14 -06:00
|
|
|
|
2016-03-17 13:25:34 -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-25 16:26:38 -06:00
|
|
|
|
2016-03-17 13:25:34 -06:00
|
|
|
// p.print("*/\n")
|
|
|
|
// }
|
2014-03-25 16:26:38 -06:00
|
|
|
}
|