- 09 Jun, 2015 16 commits
-
-
dusan.milosavljevic authored
Improves code size of generated regexp in TestSizeOfRegExpCode test by 33%. Execution time of the same test improved by ~10%. Utilizing code range for mips64 enable us to use J/JAL instructions for long branches. TEST=cctest/test-heap/TestSizeOfRegExpCode BUG= Review URL: https://codereview.chromium.org/1147503002 Cr-Commit-Position: refs/heads/master@{#28867}
-
machenbach authored
This should prevent bugs caused by missing super calls in overridden methods. The assumption is that methods of different indicators are independent. Review URL: https://codereview.chromium.org/1171943002 Cr-Commit-Position: refs/heads/master@{#28866}
-
arv authored
BUG=v8:3887 LOG=N R=adamk@chromium.org, dslomov@chromium.org Review URL: https://codereview.chromium.org/1169853002 Cr-Commit-Position: refs/heads/master@{#28865}
-
machenbach authored
This prepares for properly rerunning tests. Currently when tests are rerun, the same test object is reused. This will be changed in a follow up. Review URL: https://codereview.chromium.org/1168303007 Cr-Commit-Position: refs/heads/master@{#28864}
-
wingo authored
R=rossberg@chromium.org BUG=v8:2700 LOG=Y Review URL: https://codereview.chromium.org/1166303004 Cr-Commit-Position: refs/heads/master@{#28863}
-
bmeurer authored
Use the new TranslatedState and friends, which work at a higher level than the TranslationIterator, which will make it easier to change the deoptimization commands in subsequent CLs. R=jarin@chromium.org Review URL: https://codereview.chromium.org/1166353004 Cr-Commit-Position: refs/heads/master@{#28862}
-
dusan.milosavljevic authored
TEST= BUG= Review URL: https://codereview.chromium.org/1170173002 Cr-Commit-Position: refs/heads/master@{#28861}
-
bmeurer authored
R=mstarzinger@chromium.org Review URL: https://codereview.chromium.org/1176473002 Cr-Commit-Position: refs/heads/master@{#28860}
-
mstarzinger authored
R=jarin@chromium.org TEST=cctest/test-api/AccessCheckThrows Review URL: https://codereview.chromium.org/1171943003 Cr-Commit-Position: refs/heads/master@{#28859}
-
vogelheim authored
crrev.com/1016603004 should have fixed the issues that broke this last time. Notes: - The current functionality is meant to stay. If you prefer the old way, just set v8_use_external_startup_data=0. - You might notice this if you call d8 via PATH. Either explicitly tell d8 where your external snapshot/built-ins are, or change the build options as above. - This follows Chromium practice, that mostly uses this feature these days. - Other platforms to follow later. BUG= Review URL: https://codereview.chromium.org/1041683002 Cr-Commit-Position: refs/heads/master@{#28858}
-
ulan authored
Added missing slots recording. This reverts commit fd2e3344. BUG= Review URL: https://codereview.chromium.org/1169743002 Cr-Commit-Position: refs/heads/master@{#28857}
-
brettw authored
This was already public in a non-component build. This means that targets dependent on the "v8" target can take the results of the snapshot as inputs. This also renames the component mode checking from keying off of the component_mode string to checking the is_component_build flag, which is now the recommended way to do this check. Review URL: https://codereview.chromium.org/1167223002 Cr-Commit-Position: refs/heads/master@{#28856}
-
mstarzinger authored
This adds some basic tests of the interaction between try-catch and try-finally statements and OSR in TurboFan. The try-osr test suite follows the structure of try-deopt closely. R=titzer@chromium.org TEST=mjsunit/compiler/try-osr Review URL: https://codereview.chromium.org/1165103003 Cr-Commit-Position: refs/heads/master@{#28855}
-
yangguo authored
BUG=425187 LOG=N Review URL: https://codereview.chromium.org/1170723003 Cr-Commit-Position: refs/heads/master@{#28854}
-
paul.lind authored
BUG= Review URL: https://codereview.chromium.org/1151523014 Cr-Commit-Position: refs/heads/master@{#28853}
-
v8-autoroll authored
Rolling v8/build/gyp to fdc7b812f99e48c00e9a487bd56751bbeae07043 Rolling v8/tools/clang to 821059eb79ba92d0ab287b2b746105af4ee10817 TBR=machenbach@chromium.org Review URL: https://codereview.chromium.org/1171913002 Cr-Commit-Position: refs/heads/master@{#28852}
-
- 08 Jun, 2015 24 commits
-
-
mbrandy authored
R=svenpanne@chromium.org, michael_dawson@ca.ibm.com BUG= Review URL: https://codereview.chromium.org/1156293003 Cr-Commit-Position: refs/heads/master@{#28851}
-
binji authored
BUG=chromium:497295 LOG=n Review URL: https://codereview.chromium.org/1168723002 Cr-Commit-Position: refs/heads/master@{#28850}
-
mbrandy authored
Port b27016b7 R=mvstanton@chromium.org, dstence@us.ibm.com, michael_dawson@ca.ibm.com BUG= Review URL: https://codereview.chromium.org/1161893003 Cr-Commit-Position: refs/heads/master@{#28849}
-
mstarzinger authored
This allows try-catch and try-finally constructs to be separately enabled and disabled. We plan to stage try-catch support soon. R=titzer@chromium.org Review URL: https://codereview.chromium.org/1157863015 Cr-Commit-Position: refs/heads/master@{#28848}
-
mbrandy authored
Port bd32a9f7 R=mvstanton@chromium.org, dstence@us.ibm.com, michael_dawson@ca.ibm.com BUG= Review URL: https://codereview.chromium.org/1169763003 Cr-Commit-Position: refs/heads/master@{#28847}
-
mstarzinger authored
These values were computed by the parser and hence out of sync with any visitor over the AST. Our AST visitor aborts visitation of statement lists as soon as a jump statement has been reached. Now handler tables are guaranteed to be dense and fully populated. R=ishell@chromium.org TEST=mjsunit/regress/regress-crbug-493290 BUG=chromium:493290 LOG=N Review URL: https://codereview.chromium.org/1157213004 Cr-Commit-Position: refs/heads/master@{#28846}
-
dusan.milosavljevic authored
This is required to have sign-extended int32 arithmetic operations by re-landing: https://codereview.chromium.org/1161713003 TEST=cctest/test-api/ArrayBuffer_JSInternalToExternal BUG= Review URL: https://codereview.chromium.org/1153263012 Cr-Commit-Position: refs/heads/master@{#28845}
-
mbrandy authored
We see this error using GCC 4.8.2. R=michael_dawson@ca.ibm.com BUG= Review URL: https://codereview.chromium.org/1153213003 Cr-Commit-Position: refs/heads/master@{#28844}
-
mbrandy authored
R=jochen@chromium.org BUG= Review URL: https://codereview.chromium.org/1165453009 Cr-Commit-Position: refs/heads/master@{#28843}
-
balazs.kilvady authored
BUG= Review URL: https://codereview.chromium.org/1160973006 Cr-Commit-Position: refs/heads/master@{#28842}
-
erikcorry authored
Revert of Only record one in n line endings to save space. (patchset #4 id:60001 of https://codereview.chromium.org/1137683003/) Reason for revert: Test failures https://storage.googleapis.com/chromium-layout-test-archives/V8-Blink_Win/345/layout-test-results/results.html Original issue's description: > Only record one in n line endings to save space. > > R=yangguo@chromium.org > BUG= > > Committed: https://crrev.com/b3d4bce593559276e68d3d7d9168f4351e4e5090 > Cr-Commit-Position: refs/heads/master@{#28837} TBR=yangguo@chromium.org,erik.corry@gmail.com NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG= Review URL: https://codereview.chromium.org/1155683010 Cr-Commit-Position: refs/heads/master@{#28841}
-
yangguo authored
R=svenpanne@chromium.org BUG=v8:3718 LOG=N Review URL: https://codereview.chromium.org/1164933005 Cr-Commit-Position: refs/heads/master@{#28840}
-
conradw authored
Boolean "is_strong" parameters have begun to proliferate across areas where strong mode semantics are different. This CL repurposes the existing ObjectStrength enum as a replacement for them. BUG=v8:3956 LOG=N Review URL: https://codereview.chromium.org/1144183004 Cr-Commit-Position: refs/heads/master@{#28839}
-
mstarzinger authored
This in turn allows usage of AdvancedReducer::ReplaceWithValue which has access to the underlying graph reducer. R=titzer@chromium.org Review URL: https://codereview.chromium.org/1162903006 Cr-Commit-Position: refs/heads/master@{#28838}
-
erikcorry authored
R=yangguo@chromium.org BUG= Review URL: https://codereview.chromium.org/1137683003 Cr-Commit-Position: refs/heads/master@{#28837}
-
Benedikt Meurer authored
This only introduces better typing and lowering for access to the value field. R=jarin@chromium.org Review URL: https://codereview.chromium.org/1169723002 Cr-Commit-Position: refs/heads/master@{#28836}
-
mbrandy authored
R=svenpanne@chromium.org, michael_dawson@ca.ibm.com BUG= Review URL: https://codereview.chromium.org/1163143005 Cr-Commit-Position: refs/heads/master@{#28835}
-
jochen authored
R=hpayer@chromium.org BUG= Review URL: https://codereview.chromium.org/1135353003 Cr-Commit-Position: refs/heads/master@{#28834}
-
ulan authored
This removes special handling of long idle notifications. BUG= Review URL: https://codereview.chromium.org/1159153003 Cr-Commit-Position: refs/heads/master@{#28833}
-
ulan authored
Revert of Replace ad-hoc weakness in prototype transitions with WeakCell. (patchset #2 id:20001 of https://codereview.chromium.org/1163073002/) Reason for revert: GC stress failures. Original issue's description: > Replace ad-hoc weakness in prototype transitions with WeakCell. > > BUG= > > Committed: https://crrev.com/bfb81fbe0d38c88cc1b6ed6eb1a4b8cbe2c469c3 > Cr-Commit-Position: refs/heads/master@{#28830} TBR=jkummerow@chromium.org,hpayer@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG= Review URL: https://codereview.chromium.org/1169733002 Cr-Commit-Position: refs/heads/master@{#28832}
-
verwaest authored
BUG=chromium:495949 LOG=n Review URL: https://codereview.chromium.org/1163033004 Cr-Commit-Position: refs/heads/master@{#28831}
-
ulan authored
BUG= Review URL: https://codereview.chromium.org/1163073002 Cr-Commit-Position: refs/heads/master@{#28830}
-
bmeurer authored
Both ToName() and HasProperty() can actually throw, so we need to propagate those exceptions properly. BUG=chromium:496331 LOG=y R=jarin@chromium.org Review URL: https://codereview.chromium.org/1162833006 Cr-Commit-Position: refs/heads/master@{#28829}
-
hablich authored
BUG=v8:4131 LOG=n Review URL: https://codereview.chromium.org/1163043003 Cr-Commit-Position: refs/heads/master@{#28828}
-