Show / Hide Table of Contents

    Class NameMangler

    Describes common functionality implemented by name manglers.

    Inheritance
    System.Object
    NameMangler
    CMangler
    ItaniumMangler
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Flame.Llvm
    Assembly: Flame.Llvm.dll
    Syntax
    public abstract class NameMangler

    Methods

    | Improve this Doc View Source

    Mangle(IField, Boolean)

    Gets the given field's mangled name.

    Declaration
    public abstract string Mangle(IField method, bool mangleFullName)
    Parameters
    Type Name Description
    IField method
    System.Boolean mangleFullName

    If this is true, then the field's full name is mangled. Otherwise, only its name is mangled.

    Returns
    Type Description
    System.String

    The mangled name.

    | Improve this Doc View Source

    Mangle(IMethod, Boolean)

    Gets the given method's mangled name.

    Declaration
    public abstract string Mangle(IMethod method, bool mangleFullName)
    Parameters
    Type Name Description
    IMethod method

    The method whose name is to be mangled.

    System.Boolean mangleFullName

    If this is true, then the method's full name and signature is mangled. Otherwise, only its name is mangled.

    Returns
    Type Description
    System.String

    The mangled name.

    | Improve this Doc View Source

    Mangle(IType, Boolean)

    Gets the given type's mangled name.

    Declaration
    public abstract string Mangle(IType type, bool mangleFullName)
    Parameters
    Type Name Description
    IType type

    The type whose name is to be mangled.

    System.Boolean mangleFullName

    If this is true, then the type's full name is mangled. Otherwise, only its name is mangled.

    Returns
    Type Description
    System.String

    The mangled name.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX