add creator for missing types, to avoid crashes when

signature is absent from object file.

R=rsc
DELTA=18  (18 added, 0 deleted, 0 changed)
OCL=18315
CL=18323
This commit is contained in:
Rob Pike 2008-11-02 12:32:14 -08:00
parent d2472eb812
commit 178e37e766
2 changed files with 18 additions and 0 deletions

View file

@ -60,6 +60,21 @@ func AddrToPtrFloat80(Addr) *float80
func AddrToPtrString(Addr) *string
func AddrToPtrBool(Addr) *bool
// -- Missing
export type MissingValue interface {
Kind() int;
Type() Type;
}
type MissingValueStruct struct {
CommonV
}
func MissingCreator(typ Type, addr Addr) Value {
return &MissingValueStruct{ CommonV{IntKind, typ, addr} }
}
// -- Int
export type IntValue interface {
@ -676,6 +691,7 @@ var creator *map[int] Creator
func init() {
creator = new(map[int] Creator);
creator[MissingKind] = &MissingCreator;
creator[IntKind] = &IntCreator;
creator[Int8Kind] = &Int8Creator;
creator[Int16Kind] = &Int16Creator;