auto merge of #6956 : Blei/rust/fix-symbol-mangling, r=catamorphism
Handle more characters that appear in types, most notably <>): were missing. Also the new scheme takes care that no two different input strings result in the same mangled string, which was not the case before. Fixes #6921
This commit is contained in:
commit
2c65e2e385
@ -633,21 +633,32 @@ pub fn get_symbol_hash(ccx: @CrateContext, t: ty::t) -> @str {
|
||||
|
||||
// Name sanitation. LLVM will happily accept identifiers with weird names, but
|
||||
// gas doesn't!
|
||||
// gas accepts the following characters in symbols: a-z, A-Z, 0-9, ., _, $
|
||||
pub fn sanitize(s: &str) -> ~str {
|
||||
let mut result = ~"";
|
||||
for str::each_char(s) |c| {
|
||||
match c {
|
||||
'@' => result += "_sbox_",
|
||||
'~' => result += "_ubox_",
|
||||
'*' => result += "_ptr_",
|
||||
'&' => result += "_ref_",
|
||||
',' => result += "_",
|
||||
// Escape these with $ sequences
|
||||
'@' => result += "$SP$",
|
||||
'~' => result += "$UP$",
|
||||
'*' => result += "$RP$",
|
||||
'&' => result += "$BP$",
|
||||
'<' => result += "$LT$",
|
||||
'>' => result += "$GT$",
|
||||
'(' => result += "$LP$",
|
||||
')' => result += "$RP$",
|
||||
',' => result += "$C$",
|
||||
|
||||
'{' | '(' => result += "_of_",
|
||||
// '.' doesn't occur in types and functions, so reuse it
|
||||
// for ':'
|
||||
':' => result.push_char('.'),
|
||||
|
||||
// These are legal symbols
|
||||
'a' .. 'z'
|
||||
| 'A' .. 'Z'
|
||||
| '0' .. '9'
|
||||
| '_' => result.push_char(c),
|
||||
|
||||
_ => {
|
||||
if c > 'z' && char::is_XID_continue(c) {
|
||||
result.push_char(c);
|
||||
|
Loading…
Reference in New Issue
Block a user