Skip to content
This repository has been archived by the owner on Oct 16, 2021. It is now read-only.

Commit

Permalink
Update deps/v8z to tag export-to-node-2015-02-25
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlau committed Feb 25, 2015
1 parent 62f9df3 commit 492cd3e
Show file tree
Hide file tree
Showing 10 changed files with 2,151 additions and 2,138 deletions.
3 changes: 1 addition & 2 deletions deps/v8z/build/features.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@

'v8_enable_verify_heap%': 0,

# Temporarily disable snapshot until we are bootstrapped
'v8_use_snapshot%': 'false',
'v8_use_snapshot%': 'true',

'v8_enable_verify_predictable%': 0,

Expand Down
2 changes: 0 additions & 2 deletions deps/v8z/src/base/build_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,6 @@
#if V8_TARGET_ARCH_PPC && V8_OS_LINUX
// Bump up for Power Linux due to larger (64K) page size.
const int kPageSizeBits = 22;
#elif V8_TARGET_ARCH_S390 && V8_OS_LINUX
const int kPageSizeBits = 22;
#else
const int kPageSizeBits = 20;
#endif
Expand Down
2 changes: 1 addition & 1 deletion deps/v8z/src/flag-definitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ DEFINE_BOOL(unbox_double_arrays, true, "automatically unbox arrays of doubles")
DEFINE_BOOL(string_slices, true, "use string slices")

// Flags for Crankshaft.
DEFINE_BOOL(crankshaft, false, "use crankshaft")
DEFINE_BOOL(crankshaft, true, "use crankshaft")
DEFINE_STRING(hydrogen_filter, "*", "optimization filter")
DEFINE_BOOL(use_gvn, true, "use hydrogen global value numbering")
DEFINE_INT(gvn_iterations, 3, "maximum number of GVN fix-point iterations")
Expand Down
11 changes: 9 additions & 2 deletions deps/v8z/src/s390/assembler-s390.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1997,7 +1997,6 @@ RRE_FORM_EMIT(lcgfr, LCGFR)
RRE_FORM_EMIT(lcgr, LCGR)
RR_FORM_EMIT(lcr, LCR)
RRE_FORM_EMIT(lcxbr, LCXBR)
RRE_FORM_EMIT(ldebr, LDEBR)
RRF2_FORM_EMIT(ldetr, LDETR)
RRE_FORM_EMIT(ldxbr, LDXBR)
RRF2_FORM_EMIT(ldxbra, LDXBRA)
Expand Down Expand Up @@ -3551,14 +3550,22 @@ void Assembler::sqdbr(DoubleRegister r1, DoubleRegister r2) {
}


// Load S <- L
// Load Rounded (double -> float)
void Assembler::ledbr(DoubleRegister r1, DoubleRegister r2) {
rre_form(LEDBR,
Register::from_code(r1.code()),
Register::from_code(r2.code()));
}


// Load Lengthen (float -> double)
void Assembler::ldebr(DoubleRegister r1, DoubleRegister r2) {
rre_form(LDEBR,
Register::from_code(r1.code()),
Register::from_code(r2.code()));
}


// Load Complement Register-Register (LB)
void Assembler::lcdbr(DoubleRegister r1, DoubleRegister r2) {
rre_form(LCDBR,
Expand Down
Loading

0 comments on commit 492cd3e

Please sign in to comment.