platform/upstream/nodejs.git
12 years agoMerge branch 'v0.8'
Bert Belder [Fri, 29 Jun 2012 00:20:39 +0000 (02:20 +0200)]
Merge branch 'v0.8'

12 years agoFix #3577 Un-break require('sys')
isaacs [Thu, 28 Jun 2012 17:13:28 +0000 (10:13 -0700)]
Fix #3577 Un-break require('sys')

12 years agouv: upgrade to 4a88b3b
Bert Belder [Thu, 28 Jun 2012 14:17:30 +0000 (16:17 +0200)]
uv: upgrade to 4a88b3b

12 years agoblog: Show 0.8.0 even after 0.8.1 ships
isaacs [Thu, 28 Jun 2012 06:32:43 +0000 (23:32 -0700)]
blog: Show 0.8.0 even after 0.8.1 ships

The 0.(even).0 releases typically have benchmarks and other interesting
stuff, since that's a milestone.

12 years agoRevert "tools: update closure_linter to the latest(2.3.5)"
Ben Noordhuis [Thu, 28 Jun 2012 02:14:24 +0000 (04:14 +0200)]
Revert "tools: update closure_linter to the latest(2.3.5)"

This reverts commit 6d98524609d5c0a1445f71b9930ff81c48c749be.
This reverts commit 60ff789618b5d61650609c7df27359ed3a609cc2.

closure_linter now depends on the gflags module and not everyone will have that
installed by default.

12 years agoutil: speed up formatting of large arrays/objects
Ben Noordhuis [Wed, 27 Jun 2012 17:15:28 +0000 (19:15 +0200)]
util: speed up formatting of large arrays/objects

Don't .indexOf() into the keys array. V8 is smart but not so smart that it
knows how to turn the linear scan into a O(1) lookup.

Fixes #3562.

12 years agodoc: remove references to deprecated fs api
Ben Noordhuis [Thu, 28 Jun 2012 01:47:40 +0000 (03:47 +0200)]
doc: remove references to deprecated fs api

The string-based versions of fs.read() and fs.write() have been deprecated
since before v0.2.0.

12 years agotest: fix test-dgram-broadcast-multi-process
Shigeki Ohtsu [Mon, 18 Jun 2012 05:16:16 +0000 (14:16 +0900)]
test: fix test-dgram-broadcast-multi-process

The test failed when a router replies IPADDR_BROADCAST.
Fixed it by specifying only one address to bind a socket.

12 years agoLICENSE: update Closure Linter to Apache 2.0
Shigeki Ohtsu [Thu, 21 Jun 2012 01:02:49 +0000 (10:02 +0900)]
LICENSE: update Closure Linter to Apache 2.0

12 years agotools: update closure_linter to the latest(2.3.5)
Shigeki Ohtsu [Thu, 21 Jun 2012 00:54:06 +0000 (09:54 +0900)]
tools: update closure_linter to the latest(2.3.5)

12 years agobuild: use proper python interpreter
Ben Noordhuis [Wed, 27 Jun 2012 23:07:42 +0000 (01:07 +0200)]
build: use proper python interpreter

Make configure start gyp with the same python interpreter that is used to
run configure itself.

Fixes an issue where configure fails with a SyntaxError because the user
has multiple python binaries on his $PATH and the default one is too old.

12 years agobuild: handle CC env var with spaces
Gabriel [Tue, 26 Jun 2012 17:45:13 +0000 (19:45 +0200)]
build: handle CC env var with spaces

For example:

    CC='ccache gcc' ./configure

12 years agowindows: make fs.realpath(Sync) work with UNC paths
Bert Belder [Tue, 26 Jun 2012 23:59:25 +0000 (01:59 +0200)]
windows: make fs.realpath(Sync) work with UNC paths

Closes #3542

12 years agobuild: fix --shared-v8 option
Ben Noordhuis [Tue, 26 Jun 2012 22:33:50 +0000 (00:33 +0200)]
build: fix --shared-v8 option

12 years agorealpath: No sync cb() calling allowed.
isaacs [Tue, 26 Jun 2012 22:20:26 +0000 (15:20 -0700)]
realpath: No sync cb() calling allowed.

12 years agodeps: upgrade libuv to 4d42af2
Ben Noordhuis [Tue, 26 Jun 2012 21:38:35 +0000 (23:38 +0200)]
deps: upgrade libuv to 4d42af2

12 years agoAdded % difference for perf benchmarks in 0.8 post
Tim Oxley [Mon, 25 Jun 2012 18:14:10 +0000 (04:14 +1000)]
Added % difference for perf benchmarks in 0.8 post

12 years agoconfigure: don't fail if compiler_version() doesn't work
Bert Belder [Tue, 26 Jun 2012 17:23:24 +0000 (19:23 +0200)]
configure: don't fail if compiler_version() doesn't work

This fixes the Windows build.

12 years agoNow working on 0.9.0
isaacs [Tue, 26 Jun 2012 16:13:59 +0000 (09:13 -0700)]
Now working on 0.9.0

12 years agoFix #3521 Use an object as the process.env proto
isaacs [Sun, 24 Jun 2012 02:31:21 +0000 (19:31 -0700)]
Fix #3521 Use an object as the process.env proto

For some reason, though, it looks like EnvGetter is not called for the
key `__proto__`, so I can't make the info->Data() accessible.  However,
putting the Object.prototype keys there, in such a way that they are not
OwnProperties, and are supersceded by environs, makes process.env much
less weird.

12 years agodoc: `detached` is a boolean
Andreas Madsen [Mon, 25 Jun 2012 16:53:35 +0000 (18:53 +0200)]
doc: `detached` is a boolean

12 years agobuild: expand ~ in `./configure --prefix=~/a/b/c`
Ben Noordhuis [Tue, 26 Jun 2012 14:34:07 +0000 (16:34 +0200)]
build: expand ~ in `./configure --prefix=~/a/b/c`

12 years agobuild: enable strict aliasing if gcc < 4.5.0
Ben Noordhuis [Tue, 26 Jun 2012 01:39:32 +0000 (03:39 +0200)]
build: enable strict aliasing if gcc < 4.5.0

We already enable -fstrict-aliasing when gcc >= 4.6.0 but let's enable it for
gcc < 4.5.0 as well. The aliasing bugs that we ran into in the past are all
particular to the 4.5.x releases.

12 years agoMerge remote-tracking branch 'origin/v0.8'
Ben Noordhuis [Tue, 26 Jun 2012 01:38:39 +0000 (03:38 +0200)]
Merge remote-tracking branch 'origin/v0.8'

12 years agobuild: disable strict aliasing in v8 with gcc 4.5.x
Ben Noordhuis [Tue, 26 Jun 2012 00:54:11 +0000 (02:54 +0200)]
build: disable strict aliasing in v8 with gcc 4.5.x

The gcc 4.5.x have various bugs that make V8 crash in various and interesting
ways when -fstrict-aliasing is in effect.

12 years agobuild: disable strict aliasing in v8 with gcc 4.5.x
Ben Noordhuis [Tue, 26 Jun 2012 00:54:11 +0000 (02:54 +0200)]
build: disable strict aliasing in v8 with gcc 4.5.x

The gcc 4.5.x have various bugs that make V8 crash in various and interesting
ways when -fstrict-aliasing is in effect.

12 years agov8: reapply floating patches
Bert Belder [Wed, 13 Jun 2012 13:37:15 +0000 (15:37 +0200)]
v8: reapply floating patches

12 years agov8: upgrade to version 3.11.10.12
Bert Belder [Tue, 26 Jun 2012 00:03:24 +0000 (02:03 +0200)]
v8: upgrade to version 3.11.10.12

12 years agodoc: replace references to cluster.autoFork
Andreas Madsen [Mon, 25 Jun 2012 16:53:35 +0000 (18:53 +0200)]
doc: replace references to cluster.autoFork

12 years agowindows: remove 256x256 version of the icon
Bert Belder [Mon, 25 Jun 2012 16:40:48 +0000 (18:40 +0200)]
windows: remove 256x256 version of the icon

Nobody needs that anyway, it's just eating up space.

12 years agowindows msi: don't use .exe file as icon
Bert Belder [Mon, 25 Jun 2012 16:40:12 +0000 (18:40 +0200)]
windows msi: don't use .exe file as icon

This makes the installer nice and small again.

12 years agodocs: add punycode to TOC
koichik [Sat, 26 May 2012 04:56:41 +0000 (13:56 +0900)]
docs: add punycode to TOC

Refs #3301.

12 years agoblog post for v0.8.0
isaacs [Mon, 25 Jun 2012 06:02:00 +0000 (23:02 -0700)]
blog post for v0.8.0

12 years agoNow working on 0.8.1
isaacs [Mon, 25 Jun 2012 14:58:03 +0000 (07:58 -0700)]
Now working on 0.8.1

12 years agoMerge branch 'v0.8.0-release' into v0.8
isaacs [Mon, 25 Jun 2012 14:57:45 +0000 (07:57 -0700)]
Merge branch 'v0.8.0-release' into v0.8

12 years ago2012.06.25, Version 0.8.0 (stable) v0.8.0
isaacs [Wed, 20 Jun 2012 17:44:15 +0000 (10:44 -0700)]
2012.06.25, Version 0.8.0 (stable)

* V8: upgrade to v3.11.10.10

* npm: Upgrade to 1.1.32

* Deprecate iowatcher (Ben Noordhuis)

* windows: update icon (Bert Belder)

* http: Hush 'MUST NOT have a body' warnings to debug() (isaacs)

* Move blog.nodejs.org content into repository (isaacs)

* Fix #3503: stdin: resume() on pipe(dest) (isaacs)

* crypto: fix error reporting in SetKey() (Fedor Indutny)

* Add --no-deprecation and --trace-deprecation command-line flags
* (isaacs)

* fs: fix fs.watchFile() (Ben Noordhuis)

* fs: Fix fs.readfile() on pipes (isaacs)

* Rename GYP variable node_use_system_openssl to be consistent (Ryan
* Dahl)

12 years agoHotfix for #3528 Add strdup in uv_cpu_info
isaacs [Mon, 25 Jun 2012 14:37:07 +0000 (07:37 -0700)]
Hotfix for #3528 Add strdup in uv_cpu_info

12 years agotest: use RC4-MD5 cipher in tls test
Ben Noordhuis [Mon, 25 Jun 2012 14:34:59 +0000 (16:34 +0200)]
test: use RC4-MD5 cipher in tls test

NULL-MD5 is not always compiled into openssl but RC4-MD5 should always be
available.

Fixes #3531.

12 years agodoc: update 'Fork me at Github' ribbon
George Shank [Sun, 24 Jun 2012 02:03:00 +0000 (20:03 -0600)]
doc: update 'Fork me at Github' ribbon

Replace 'Fork me at Github' ribbon with a new one fitting the website's color
scheme.

12 years agodocs: Switch to the asynchronous Google Analytics snippet
Mathias Bynens [Sat, 23 Jun 2012 09:31:26 +0000 (11:31 +0200)]
docs: Switch to the asynchronous Google Analytics snippet

The old snippet needlessly uses `document.write`. Let’s use the
optimized version of the most recent, asynchronous GA snippet:
http://mathiasbynens.be/notes/async-analytics-snippet

12 years agorepl: fix buffer clearing after npm command
Ben Noordhuis [Sat, 23 Jun 2012 00:29:36 +0000 (02:29 +0200)]
repl: fix buffer clearing after npm command

12 years agonpm: Upgrade to 1.1.32
isaacs [Fri, 22 Jun 2012 22:13:11 +0000 (15:13 -0700)]
npm: Upgrade to 1.1.32

12 years agouv: upgrade to 0387c23
Bert Belder [Fri, 22 Jun 2012 18:51:21 +0000 (20:51 +0200)]
uv: upgrade to 0387c23

12 years agoblog: add RSS link tag for discovery
isaacs [Fri, 22 Jun 2012 16:04:14 +0000 (09:04 -0700)]
blog: add RSS link tag for discovery

12 years agoblog: Generate RSS feeds
isaacs [Fri, 22 Jun 2012 15:49:20 +0000 (08:49 -0700)]
blog: Generate RSS feeds

12 years agonpm: Upgrade to 1.1.31
isaacs [Thu, 21 Jun 2012 23:44:22 +0000 (16:44 -0700)]
npm: Upgrade to 1.1.31

12 years agouv: Upgrade to 171e2f71b9
isaacs [Fri, 22 Jun 2012 14:44:40 +0000 (07:44 -0700)]
uv: Upgrade to 171e2f71b9

12 years agowindows msi: use .url files for documentation and website shortcuts
Bert Belder [Fri, 22 Jun 2012 13:15:44 +0000 (15:15 +0200)]
windows msi: use .url files for documentation and website shortcuts

12 years agowindows msi: add npm dir to user PATH only
Bert Belder [Fri, 22 Jun 2012 13:13:28 +0000 (15:13 +0200)]
windows msi: add npm dir to user PATH only

The NPM folder is personal to the user. It shouldn't be added to the
system-wide path.

12 years agowindows msi: set icon for add/remove programs dialog
Bert Belder [Fri, 22 Jun 2012 13:11:38 +0000 (15:11 +0200)]
windows msi: set icon for add/remove programs dialog

12 years agowindows: fix/improve nodejsvars.bat
Bert Belder [Fri, 22 Jun 2012 13:11:17 +0000 (15:11 +0200)]
windows: fix/improve nodejsvars.bat

- Fix: it didn't work for the x86 version of node
- Also add NPM to path
- Also print node version
- Don't change dir to home dir if not started from the start menu

12 years agoblog: Show category in post metadata
isaacs [Fri, 22 Jun 2012 02:44:58 +0000 (19:44 -0700)]
blog: Show category in post metadata

12 years agostdin.pipe: Replace forgotten opts member
isaacs [Fri, 22 Jun 2012 02:36:17 +0000 (19:36 -0700)]
stdin.pipe: Replace forgotten opts member

12 years agoblog: Missing title tag
isaacs [Fri, 22 Jun 2012 02:20:09 +0000 (19:20 -0700)]
blog: Missing title tag

12 years agoblog: Minor tweaks to style and some data conversion cleanup
isaacs [Fri, 22 Jun 2012 02:15:03 +0000 (19:15 -0700)]
blog: Minor tweaks to style and some data conversion cleanup

12 years agoauthors: update email address
Joe Shaw [Thu, 21 Jun 2012 23:46:31 +0000 (20:46 -0300)]
authors: update email address

Closes #3507.

12 years agoMerge branch 'blog'
isaacs [Thu, 21 Jun 2012 23:19:56 +0000 (16:19 -0700)]
Merge branch 'blog'

12 years agoGenerate static HTML blog content out of markdown
isaacs [Wed, 20 Jun 2012 17:14:45 +0000 (10:14 -0700)]
Generate static HTML blog content out of markdown

12 years agoInitial blog source
isaacs [Wed, 20 Jun 2012 05:13:22 +0000 (22:13 -0700)]
Initial blog source

Exported from WP and cleaned up a bit.

12 years agoMerge branch 'stdin-resume-pipe'
isaacs [Thu, 21 Jun 2012 23:18:00 +0000 (16:18 -0700)]
Merge branch 'stdin-resume-pipe'

12 years agoFix #3503: stdin: resume() on pipe(dest)
isaacs [Thu, 21 Jun 2012 23:03:48 +0000 (16:03 -0700)]
Fix #3503: stdin: resume() on pipe(dest)

12 years agocrypto: fix error reporting in SetKey()
Fedor Indutny [Thu, 21 Jun 2012 23:02:43 +0000 (03:02 +0400)]
crypto: fix error reporting in SetKey()

12 years agotest: add deprecation fixture
isaacs [Thu, 21 Jun 2012 21:47:25 +0000 (14:47 -0700)]
test: add deprecation fixture

12 years agoExternalize node::no_deprecation
isaacs [Thu, 21 Jun 2012 20:39:54 +0000 (13:39 -0700)]
Externalize node::no_deprecation

12 years agoApply --no-deprecation to C++ warnings as well
isaacs [Thu, 21 Jun 2012 19:20:23 +0000 (12:20 -0700)]
Apply --no-deprecation to C++ warnings as well

12 years agoAdd --no-deprecation and --trace-deprecation flags
isaacs [Thu, 21 Jun 2012 18:42:33 +0000 (11:42 -0700)]
Add --no-deprecation and --trace-deprecation flags

12 years agohttp: Hush 'MUST NOT have a body' warnings to debug()
isaacs [Thu, 21 Jun 2012 17:04:21 +0000 (10:04 -0700)]
http: Hush 'MUST NOT have a body' warnings to debug()

12 years agoFix bug in io benchmark
Bert Belder [Thu, 21 Jun 2012 18:52:11 +0000 (20:52 +0200)]
Fix bug in io benchmark

12 years agoiowatcher: add deprecation warning
Ben Noordhuis [Thu, 21 Jun 2012 15:55:05 +0000 (17:55 +0200)]
iowatcher: add deprecation warning

12 years agodoc: update fs.watchFile() docs
Ben Noordhuis [Thu, 21 Jun 2012 13:03:49 +0000 (15:03 +0200)]
doc: update fs.watchFile() docs

12 years agofs: make fs.watchFile() interval default to 5007
Ben Noordhuis [Thu, 21 Jun 2012 13:03:21 +0000 (15:03 +0200)]
fs: make fs.watchFile() interval default to 5007

12 years agofs: make fs.watchFile() work on windows
Ben Noordhuis [Sat, 16 Jun 2012 20:41:37 +0000 (22:41 +0200)]
fs: make fs.watchFile() work on windows

12 years agotest: add another fs.watchFile() test
Ben Noordhuis [Thu, 21 Jun 2012 00:25:56 +0000 (02:25 +0200)]
test: add another fs.watchFile() test

12 years agonode: replace NODE_STAT_STRUCT with uv_statbuf_t
Ben Noordhuis [Wed, 20 Jun 2012 16:15:35 +0000 (18:15 +0200)]
node: replace NODE_STAT_STRUCT with uv_statbuf_t

12 years agouv: upgrade to da59427
Bert Belder [Thu, 21 Jun 2012 00:39:13 +0000 (02:39 +0200)]
uv: upgrade to da59427

12 years agoUse parent SlowBuffer, if any, when Buffer is sliced
Karl Skomski [Mon, 18 Jun 2012 09:03:32 +0000 (11:03 +0200)]
Use parent SlowBuffer, if any, when Buffer is sliced

Closes #3416
Closes #3477

12 years agov8: fix postmortem debugging tools build
Fedor Indutny [Wed, 13 Jun 2012 13:47:28 +0000 (15:47 +0200)]
v8: fix postmortem debugging tools build

12 years agov8: reapply floating patches
Bert Belder [Wed, 13 Jun 2012 13:37:15 +0000 (15:37 +0200)]
v8: reapply floating patches

12 years agov8: upgrade to v3.11.10.10
Bert Belder [Wed, 20 Jun 2012 22:33:44 +0000 (00:33 +0200)]
v8: upgrade to v3.11.10.10

12 years agoRename GYP variable node_use_system_openssl to be consistent
Ryan Dahl [Wed, 20 Jun 2012 20:31:49 +0000 (13:31 -0700)]
Rename GYP variable node_use_system_openssl to be consistent

12 years agoFix fs.readfile('/dev/stdin')
isaacs [Wed, 20 Jun 2012 17:28:44 +0000 (10:28 -0700)]
Fix fs.readfile('/dev/stdin')

There is no need for fs.readFile() to be using pread rather than read.
The default semantics of read() are such that subsequent reads are where
we want them anyway.

12 years agouv: upgrade to 6e8eb332
Bert Belder [Wed, 20 Jun 2012 01:32:55 +0000 (03:32 +0200)]
uv: upgrade to 6e8eb332

12 years agoNow working on 0.8.0
isaacs [Wed, 20 Jun 2012 00:03:12 +0000 (17:03 -0700)]
Now working on 0.8.0

12 years agoMerge branch 'v0.7.12-release'
isaacs [Wed, 20 Jun 2012 00:01:11 +0000 (17:01 -0700)]
Merge branch 'v0.7.12-release'

12 years agotest-domain: fix the test to work on Windows
Bert Belder [Tue, 19 Jun 2012 23:07:57 +0000 (01:07 +0200)]
test-domain: fix the test to work on Windows

On Windows, full pathnames are stored in the Error object when
a file i/o error happens. This is not the case on Unix. Before
this fix the test would break because of these full paths.

12 years agotest-cluster-worker-kill: use SIGKILL instead of SIGHUP
Bert Belder [Tue, 19 Jun 2012 22:56:33 +0000 (00:56 +0200)]
test-cluster-worker-kill: use SIGKILL instead of SIGHUP

In this test sending SIGKILL has the same effect as sending SIGHUP,
but SIGKILL has the advantage that it works on Windows too.

12 years agowindows: `listen(pipe_name)` is not supported when running cluster
Bert Belder [Tue, 19 Jun 2012 22:53:01 +0000 (00:53 +0200)]
windows: `listen(pipe_name)` is not supported when running cluster

- Added a note to the cluster module documentation.
- Disabled test-cluster-http-pipe.

12 years agowindows: update icon
Bert Belder [Tue, 19 Jun 2012 21:42:04 +0000 (23:42 +0200)]
windows: update icon

12 years ago2012.06.19, Version 0.7.12 (unstable) v0.7.12
isaacs [Tue, 19 Jun 2012 01:28:31 +0000 (18:28 -0700)]
2012.06.19, Version 0.7.12 (unstable)

* npm: Upgrade to 1.1.30
  - Improved 'npm init'
  - Fix the 'cb never called' error from 'oudated' and 'update'
  - Add --save-bundle|-B config
  - Fix isaacs/npm#2465: Make npm script and windows shims cygwin-aware
  - Fix isaacs/npm#2452 Use --save(-dev|-optional) in npm rm
  - `logstream` option to replace removed `logfd` (Rod Vagg)
  - Read default descriptions from README.md files

* Shims to support deprecated ev_* and eio_* methods (Ben Noordhuis)

* #3118 net.Socket: Delay pause/resume until after connect (isaacs)

* #3465 Add ./configure --no-ifaddrs flag (isaacs)

* child_process: add .stdin stream to forks (Fedor Indutny)

* build: fix `make install DESTDIR=/path` (Ben Noordhuis)

* tls: fix off-by-one error in renegotiation check (Ben Noordhuis)

* crypto: Fix diffie-hellman key generation UTF-8 errors (Fedor Indutny)

* node: change the constructor name of process from EventEmitter to process (Andreas Madsen)

* net: Prevent property access throws during close (Reid Burke)

* querystring: improved speed and code cleanup (Felix Böhm)

* sunos: fix assertion errors breaking fs.watch() (Fedor Indutny)

* unix: stat: detect sub-second changes (Ben Noordhuis)

* add stat() based file watcher (Ben Noordhuis)

12 years agotrivial: Doc typo and lint fix
isaacs [Tue, 19 Jun 2012 18:07:59 +0000 (11:07 -0700)]
trivial: Doc typo and lint fix

12 years agoemail-footer: Label Windows x64 installer properly
isaacs [Tue, 19 Jun 2012 01:22:34 +0000 (18:22 -0700)]
email-footer: Label Windows x64 installer properly

12 years agonode: fix namespacing issue in ev-emul.h
Ben Noordhuis [Tue, 19 Jun 2012 20:24:09 +0000 (22:24 +0200)]
node: fix namespacing issue in ev-emul.h

Always use C linkage, prevent accidental name mangling.

12 years agouv: upgrade to b496c122
Bert Belder [Tue, 19 Jun 2012 19:12:48 +0000 (21:12 +0200)]
uv: upgrade to b496c122

12 years agouv: upgrade to 67090653
Bert Belder [Tue, 19 Jun 2012 17:20:36 +0000 (19:20 +0200)]
uv: upgrade to 67090653

12 years agonpm: Upgrade to 1.1.30
isaacs [Tue, 19 Jun 2012 16:53:03 +0000 (09:53 -0700)]
npm: Upgrade to 1.1.30

12 years agoFixing bugs in promotion of elements transitions (r1175). - Fixed invalid memory...
verwaest@chromium.org [Mon, 18 Jun 2012 11:16:02 +0000 (11:16 +0000)]
Fixing bugs in promotion of elements transitions (r1175). - Fixed invalid memory access when reading enum-cache from descriptor array with elements transitions but 0 real descriptors. - Fixed infinite recursion in the intrusive map iterator when visiting elements transitions. - Properly cached non-fastmode elements transitions.

Review URL: https://chromiumcodereview.appspot.com/10565030

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@11841 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

12 years agoRemove unused-but-set variable from objects.cc.
jkummerow@chromium.org [Mon, 18 Jun 2012 08:28:32 +0000 (08:28 +0000)]
Remove unused-but-set variable from objects.cc.

This fixes compilation with newer GCCs.

R=erik.corry@gmail.com

Review URL: https://chromiumcodereview.appspot.com/10568006

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@11838 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

12 years agoRevert part of 11727 as it sometimes tanked V8 benchmark (raytrace) performance for...
erik.corry@gmail.com [Fri, 15 Jun 2012 11:53:09 +0000 (11:53 +0000)]
Revert part of 11727 as it sometimes tanked V8 benchmark (raytrace) performance for reasons that are not obvious. Now we make objects into fast-case objects when they are made prototypes for other objects, but we do not mark objects that are already fast case with a bit that helps keep them in fast case. Review URL: https://chromiumcodereview.appspot.com/10556004

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@11831 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

12 years agoMIPS: Fix packed-element.js test on ARM with no snap
danno@chromium.org [Mon, 18 Jun 2012 10:51:23 +0000 (10:51 +0000)]
MIPS: Fix packed-element.js test on ARM with no snap

Port r11826 (5be3568a)

BUG=
TEST=

Review URL: https://chromiumcodereview.appspot.com/10559002
Patch from Akos Palfi <palfia@homejinni.com>.

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@11840 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

12 years agoRevert "build: fix `make install DESTDIR=/path`"
Ben Noordhuis [Tue, 19 Jun 2012 15:48:07 +0000 (17:48 +0200)]
Revert "build: fix `make install DESTDIR=/path`"

This reverts commit f80513974ec525fe8e1a3aab7054af167d862d99.

The reverted commit made DESTDIR behave more like we want it to but it was
pointed out in #3489 that it makes life a lot harder for distro package
maintainers.

Those guys and gals already have a hard enough time as it is, let's not make
their jobs even more hellish.