In this section:

Introduction

Asmdemangler is a standalone command line tool demangles labels for static data files.

Refer to Parasoft ASMTools for information about the full tool chain, including installation and requirements.

In this section, we assume that you've already installed Parasoft ASMTools and that they are on your system path. 

Basic Usage

Run asmdemangler and specify the static data files to demangle, as wells the demangler command for your compiler. 

$ asmdemangler --input /path/to/static-data-file.pail -- <demangler_command>

Use the --input (or -i) flag to specify the static data file. This file is created by instrumenting  objects, archives, and executables using the Asminst

Use the -- separator followed by your compiler's demangler executable.  

Demangler executable must be for the same compiler that was used to produce the static data file.

Examples

Windows
$ asmdemangler --input C:\path\to\static\data\example.pail -- \tools\gcc\decode.exe
Unix
$ asmdemangler --input /path/to/static/data/example.pail -- /tools/gcc/decode.exe

Options

--version

-v

Print out the version header of the tool.

--help

-h

Prints the descriptions of the options for asmdemangler.

--input=<path/to/static/data/file.pail>

-i

Specifies the static data file to be demangled.

You can use this option multiple times to specify several files. 

Troubleshooting

Contact Parasoft Support at www.parasoft.com/ticket if you have any problems using this tool.

  • No labels