gecko/js/jsd
Ehsan Akhgari 0fd9123eac Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script.  Here's the source of the script for
future reference:

function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
       ! -wholename "*security/nss*" \
       ! -wholename "*/.hg*" \
       ! -wholename "obj-ff-dbg*" \
       ! -name nsXPCOMCID.h \
       ! -name prtypes.h \
         -type f \
      \( -iname "*.cpp" \
         -o -iname "*.h" \
         -o -iname "*.c" \
         -o -iname "*.cc" \
         -o -iname "*.idl" \
         -o -iname "*.ipdl" \
         -o -iname "*.ipdlh" \
         -o -iname "*.mm" \) | \
    xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}

convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t

convert PRIntn int
convert PRUintn unsigned

convert PRSize size_t

convert PROffset32 int32_t
convert PROffset64 int64_t

convert PRPtrdiff ptrdiff_t

convert PRFloat64 double
2012-08-22 11:56:38 -04:00
..
idl Bug 756267 - Move the internal logic to only call script destroy hook if create hook was called from inside the JS engine to JSD, and add a flag for controlling it. r=jorendorff 2012-08-17 10:23:21 -07:00
test Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted 2012-08-04 20:26:44 +02:00
jsd1640.def Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
jsd1640.rc Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
jsd3240.rc Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
jsd_atom.c Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
jsd_high.c Bug 755186 - s/JS_NewCompartmentAndGlobalObject/JS_NewGlobalObject/ (r=jorendorff) 2012-06-20 08:57:29 -07:00
jsd_hook.c Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
jsd_java.c Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
jsd_lock.c Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
jsd_lock.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
jsd_obj.c Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
jsd_scpt.c Bug 756267 - Move the internal logic to only call script destroy hook if create hook was called from inside the JS engine to JSD, and add a flag for controlling it. r=jorendorff 2012-08-17 10:23:21 -07:00
jsd_stak.c Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
jsd_step.c Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
jsd_text.c Bug 780051 - Remove JS_MAX and JS_MIN. r=luke 2012-08-02 20:50:51 -07:00
jsd_val.c Bug 772285 - rm JSPD_ARGUMENT/JSPD_VARIABLE (r=sfink) 2012-07-10 15:34:12 -07:00
jsd_xpc.cpp Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
jsd_xpc.h Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
jsd.h Bug 772285 - rm JSPD_ARGUMENT/JSPD_VARIABLE (r=sfink) 2012-07-10 15:34:12 -07:00
jsdebug.c Bug 772285 - rm JSPD_ARGUMENT/JSPD_VARIABLE (r=sfink) 2012-07-10 15:34:12 -07:00
jsdebug.h Bug 756267 - Move the internal logic to only call script destroy hook if create hook was called from inside the JS engine to JSD, and add a flag for controlling it. r=jorendorff 2012-08-17 10:23:21 -07:00
jsdstubs.c Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
jshash.cpp Bug 647367 - Sequester jshash.{h,cpp} in js/jsd/ (attempt 2). r=luke. 2012-07-18 17:38:10 -07:00
jshash.h Bug 647367 - Sequester jshash.{h,cpp} in js/jsd/ (attempt 2). r=luke. 2012-07-18 17:38:10 -07:00
Makefile.in Bug 647367 - Sequester jshash.{h,cpp} in js/jsd/ (attempt 2). r=luke. 2012-07-18 17:38:10 -07:00
mkshell.bat Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
README
resource.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00

js/jsd contains code for debugging support for the C-based JavaScript engine 
in js/src.  jsd_xpc.cpp provides an XPCOM binding for the library.

js/jsd/jsdb is a console debugger using only native code (see README in that 
directory.)  This debugger is no longer being actively developed, though it
should work.