Home | History | Annotate | Download | only in fipstools

Lines Matching refs:symbols

36 	// mapping local symbols.
63 // symbols is the set of symbols defined in the module.
64 symbols map[string]struct{}
65 // localEntrySymbols is the set of symbols with .localentry directives.
79 // ?delta? symbols: symbols that contain the offset from their location
196 // and adding references to symbols within it to the code. We
260 // The symbols within directives need to be mapped so that local
261 // symbols in two different .s inputs don't collide.
317 // symbols need to be mapped so that local symbols from two
635 } else if _, knownSymbol := d.symbols[symbol]; knownSymbol {
963 if _, knownSymbol := d.symbols[symbol]; knownSymbol {
973 if _, knownSymbol := d.symbols[symbol]; knownSymbol {
998 if _, knownSymbol := d.symbols[symbol]; knownSymbol {
1132 // symbols contains all defined symbols.
1133 symbols := make(map[string]struct{})
1134 // localEntrySymbols contains all symbols with a .localentry directive.
1140 if _, ok := symbols[symbol]; ok {
1143 symbols[symbol] = struct{}{}
1172 symbols: symbols,