Граф коммитов

75923 Коммитов

Автор SHA1 Сообщение Дата
blakeross%telocity.com 02b9f094e8 Adding file for 64831. Not part of build. 2001-02-02 22:51:11 +00:00
mscott%netscape.com 522ae2bd37 remove reference to an obsolete gif 2001-02-02 22:47:59 +00:00
rbs%maths.uq.edu.au d2a9ad2e9b Fix UMR, and failures of GetGlyphOutline() - bug 46438 - sr:erik@netscape.com 2001-02-02 22:46:48 +00:00
blakeross%telocity.com bf5184fe66 Adding file for 64831. Not part of build. 2001-02-02 22:45:14 +00:00
mscott%netscape.com 35e77e8395 Remove obsolete directory from mime. 2001-02-02 22:44:58 +00:00
hyatt%netscape.com 90ca06ed8d Files aren't part of Mozilla build. 2001-02-02 22:44:39 +00:00
hyatt%netscape.com cd4edc3846 Files aren't part of Mozilla build. 2001-02-02 22:43:15 +00:00
hyatt%netscape.com 67cc4074e9 Files aren't part of Mozilla build. 2001-02-02 22:34:52 +00:00
harishd%netscape.com 2863e449d8 67426 - Fixing up a regression caused when fixing bug 54453.
r=heikki
2001-02-02 22:07:38 +00:00
rbs%maths.uq.edu.au e515c1db7c Keep things uniform by letting these frames fill the bounding metrics for the caller 2001-02-02 21:31:23 +00:00
rbs%maths.uq.edu.au 9222027a34 Keep things uniform by letting these frames fill the bounding metrics for the caller. Enabled operators that need to be centered around the axis for fonts that are not math-aware 2001-02-02 21:29:21 +00:00
rbs%maths.uq.edu.au 3f64a02332 Added a flag for operators that need to be centered around the axis 2001-02-02 21:25:07 +00:00
nhotta%netscape.com df8d29e388 Changed to cache unicode decoder in nsMimeConverter instead of calling ConvertToUnicode(), bug 20520, r=ducarroz, sr=bienvenu. 2001-02-02 21:19:55 +00:00
attinasi%netscape.com 248ec2e977 Floated list items are now handled correctly. b=32200, r=buster sr=waterson 2001-02-02 21:17:01 +00:00
attinasi%netscape.com 26938418e4 Leave floated list-items as display:list-item. b=32200, r=buster sr=waterson 2001-02-02 21:16:00 +00:00
brendan%mozilla.org eabd8c6171 Include function total size in JS profiler output (67467, r=hyatt, sr=jband). 2001-02-02 20:52:06 +00:00
naving%netscape.com 583ec5dbac 25589. r=timeless, sr=bienvenu, sspitzer. Adding feature drag and drop of folder.
Thanks to sspitzer and david for good review.
2001-02-02 20:21:52 +00:00
locka%iol.ie ceb2b2bcea Reinstated some lines accidentally removed during porting to nsIWebBrowserSiteWindow. b=46852 2001-02-02 19:24:28 +00:00
kin%netscape.com 667694cf0f Backing out part of fix for bug #67007 that cause bug #67408. (Can't type newlines in textareas)
a=leaf
2001-02-02 16:32:27 +00:00
mkaply%us.ibm.com faa1cf241f Fix FreeBSD bustage 2001-02-02 16:07:50 +00:00
Peter.VanderBeken%pandora.be 484ff79b14 Not part of the build. Basic scaffolding for the LDAP datasource. 2001-02-02 15:58:09 +00:00
locka%iol.ie aa7b314eba Updated to use new nsIWebBrowserSiteWindow interface. b=46852, sr=blizzard@mozilla.org 2001-02-02 15:53:46 +00:00
locka%iol.ie 52bf2edc99 Changed control to use nsIWebBrowserSiteWindow interface. b=46852, sr=blizzard@mozilla.org 2001-02-02 15:49:16 +00:00
dbaron%fas.harvard.edu 4e17defc99 Fix HPUX bustage. Declaration within class definition shouldn't include class name. 2001-02-02 15:31:03 +00:00
mcgreer%netscape.com c4d36363d2 get pk12util working with shared libs. Change ciphersuites to
be disabled by default to allow user control.  Export a couple
more functions to allow ciphersuite preferences.
2001-02-02 15:24:29 +00:00
nboyd%atg.com e5473d8fda Subject:
Re: [Rhino in Java] compiling .js to class file gives "bad local" error
        Date:
             Wed, 31 Jan 2001 09:41:45 +0100
       From:
             "Sylvia E. Schleutermann" <ses@h-m-s.com>
 Organization:
             .hms Health Management Systems
 Newsgroups:
             netscape.public.mozilla.jseng
  References:
             1 , 2




I have found out some more. Looking really quickly over the JVM specs, I
found that
indeed the astore-command requires that the variables index be below 128.
However,
the book also said that if more index space is needed, a "wide" command can
be used to
be able to address up to 65xxx variables.
Question: is there a possibility to integrate this "wide"-command into the
class compiler?
Some option, that can be set?  Or am I on the wrong tracks?

Please help, since I want to avoid spreading the script over many classes to
avoid the
size limitation. Cheers, Sylvia


Sylvia E. Schleutermann <ses@h-m-s.com> wrote in message
news:956sv9$9g53@secnews.netscape.com...
> I have found out that it is definitely the number of variables.
> I removed all variables and then the script compiled into class files
> with one base class and inner classes for each function in the script.
>
> What is the limitation exactly, i.e. does anyone know how many (global)
> variables
> I can use? Or is there some other kind of work around?
>
> Cheers, Sylvia
>
>
> Sylvia E. Schleutermann <ses@h-m-s.com> wrote in message
> news:956qtv$6kh3@secnews.netscape.com...
> > Hello,
> > when compiling a *.js file to class file, I get a "bad local" runtime
> > exception.
> > Stepping through the source, the following happens in reverse order:
> >
> > Codegen.xstore (75, 58, 209)
> >     -> in the switch - default case, there is a comparison
> >         for local (=209), which is compared to Byte.MAX_VALUE (=127).
> >         When greater, the above exception is thrown.
> >
> > Codegen.astore (209)
> >     -> calls Codegen.xstore (ByteCode.ASTORE_0, ByteCode.ASTORE, 209)
> >
> > Codegen.generatePrologue (<context>, <tree>, true, -1) // -1 is
> > directParameterCount
> >     -> sets itsZeroArgArray = getNewWordLocal(); // here, the 209 is
> > produced
> >     -> calls astore (itsZeroArgArray)
> >
> > From what I can read from the source code, the 209 seems to be a counter
> for
> > "locals", perhaps
> > local variables?? The function that is being compiled does initialize
many
> > variables - would it help
> > to move the initialize code out of the function into separate code
blocks?
> >
> > The function looks like this
> >
> > function rule_Disclaimer()
> > {
> >     try { VAR1 = <init code 1>;} catch (exception) { VAR1 = <default
init
> > code 1>; }
> >     try { VAR2 = <init code 2>;} catch (exception) { VAR2 = <default
init
> > code 2>;}
> >         ... (about 58 such variables)
> >
> >     var cond = true;
> >
> >     < rest of code>
> > }
> >
> > When I compile the script for interpreted mode, all works well. The
> > variables VAR1 to VAR58 are to be global
> > variables (global to the whole script).
> >
> > I appreciate any help! Thanks, Sylvia
> >
> >
>
>
2001-02-02 15:20:03 +00:00
mkaply%us.ibm.com 0f0b7e0a59 Attempt to fix senna REQUIRES bustage 2001-02-02 15:10:30 +00:00
ccarlen%netscape.com a19cfd3b0f Bug 52473 - Add Mac embedding sample to the build. r=jj@netscape.com, sr=sfraser@netscape.com 2001-02-02 15:10:01 +00:00
rbs%maths.uq.edu.au 7d1749bc4f [not part of default build] Undo unintended changes, they were not meant for the TB tree 2001-02-02 14:43:36 +00:00
locka%iol.ie 7479791974 Updated powerplant sample to use new nsIWebBrowserSiteWindow interface. b=46852, sr=blizzard@mozilla.org 2001-02-02 14:28:20 +00:00
rbs%maths.uq.edu.au 578283cd0f [not part of default build] Removed debug flag that shouldn't have been left, and corrected some invariants 2001-02-02 14:27:38 +00:00
rbs%maths.uq.edu.au 6221acb135 [not part of default build] Removed debug flag that shouldn't have been left, and corrected some invariants 2001-02-02 14:27:16 +00:00
rbs%maths.uq.edu.au 383f18bd00 [not part of default build] Removed debug flag that shouldn't have been left, and corrected some invariants 2001-02-02 14:25:44 +00:00
rbs%maths.uq.edu.au 7ee87ba289 [not part of default build] Set the namespace properly 2001-02-02 14:01:59 +00:00
mkaply%us.ibm.com a36df8834a OS/2 TB breakage
Need cast to pass C++ function
2001-02-02 13:54:03 +00:00
locka%iol.ie b9b3a6093c Implemented nsIWebBrowserSiteWindow interface. b=46852, sr=blizzard@mozilla.org
Also added menu option for profile switching.
2001-02-02 13:24:50 +00:00
locka%iol.ie 74cb7ca9e7 Changed gtkEmbed to use new nsIWebBrowserSiteWindow interface. b=46852, sr=blizzard@mozilla.org 2001-02-02 13:16:58 +00:00
locka%iol.ie 6aff77fe88 Changed nsDocShellTreeOwner to call out to embedder's nsIWebBrowserSiteWindow interface instead of nsIBaseWindow. b=46852, sr=blizzard@mozilla.org 2001-02-02 12:52:44 +00:00
locka%iol.ie 189dae3f1d Added nsIWebBrowserSiteWindow to makefile. b=46852, sr=blizzard@mozilla.org 2001-02-02 12:46:14 +00:00
locka%iol.ie 98a9563c2e Added nsIWebBrowserSiteWindow.idl. b=46852, sr=blizzard@mozilla.org 2001-02-02 12:44:52 +00:00
locka%iol.ie a7387b885b Added nsIWebBrowserSiteWindow. sr=blizzard@mozilla.org, b=46852 2001-02-02 12:41:14 +00:00
locka%iol.ie f6f016a897 New nsIWebBrowserSiteWindow interface - contains the 'up' set of functions from nsIBaseWindow making it easier for embedders to implement. b=46852, sr=blizzard@mozilla.org 2001-02-02 12:39:35 +00:00
Peter.VanderBeken%pandora.be a69ad12186 [not part of the build] ... and should use srcdir. 2001-02-02 11:46:41 +00:00
hyatt%netscape.com d663791128 Checking in some sample interfaces. Not part of build. 2001-02-02 11:42:40 +00:00
hyatt%netscape.com e2e552c8c4 Checking in some sample interfaces. Not part of build. 2001-02-02 11:33:15 +00:00
jst%netscape.com 15cb2acddd Fixing bug 64755. Moving code around to make plugins instantiated from an <object> tag be scriptable. r=pollmann@netscape.com, sr=hyatt@netscape.com 2001-02-02 11:31:08 +00:00
hyatt%netscape.com d3f443c44a Checking in some sample interfaces. Not part of build. 2001-02-02 11:29:48 +00:00
hyatt%netscape.com 61e13c2fdc Checking in some sample interfaces. Not part of build. 2001-02-02 11:25:11 +00:00
Peter.VanderBeken%pandora.be 4031603ccb [not part of the build] Should use unix path-separators. 2001-02-02 11:15:27 +00:00
jband%netscape.com bd58ec8cea the rest of the fix for bug 66950 to add nsISupportsWeakReference support of xpconnect wrapped JSObjects. r=rogerl sr=brendan 2001-02-02 10:01:56 +00:00