v8/src
rmcilroy@chromium.org 6eb9e02b00 DoubleToIStub can't use ip on armv6, because the ubfx impl will clobber it
This previous change broke DoubleToIStub on armv6:
https://code.google.com/p/v8/source/detail?r=16322

The problem is that DoubleToIStub::Generate assumed that it could safely use the ip register, but on armv6 the ubfx implementation will clobber any previous value stored there.  So instead, pick another register.

Test case:
for (var i=0; i<2; i++) {
	v = 4294967295;
	v &= -2;
	print(v)
	}

This should print -2 twice, but on armv6 without this patch, it prints -2 followed by 2046.

This problem causes sunspider's bitops-nsieve-bit, crypto-md5 and crypto-sha1 tests to generate incorrect results (but the results are not checked for validity in sunspider-1.0 as available in chromium, but are checked and reported as incorrect in sunspider-1.0.2).

Thanks to Tomasz Kilarski for helping out with this.

R=bmeurer@chromium.org, rmcilroy@chromium.org

Review URL: https://codereview.chromium.org/131823004

Patch from Mostyn Bramley-Moore <mostynb@opera.com>.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18688 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2014-01-20 11:30:48 +00:00
..
arm DoubleToIStub can't use ip on armv6, because the ubfx impl will clobber it 2014-01-20 11:30:48 +00:00
extensions Fixed Windows build. 2014-01-17 11:52:50 +00:00
ia32 We no longer need to recover type cells from the oracle. 2014-01-20 09:48:05 +00:00
libplatform Always terminate the task queue 2013-12-20 09:09:04 +00:00
mips We no longer need to recover type cells from the oracle. 2014-01-20 09:48:05 +00:00
platform Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
third_party Implement in-heap backing store for typed arrays. 2014-01-16 17:08:45 +00:00
utils Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
x64 We no longer need to recover type cells from the oracle. 2014-01-20 09:48:05 +00:00
accessors.cc Refactor the compiling pipeline. 2013-12-23 14:30:35 +00:00
accessors.h Remove calls to SetLocalPropertyIgnoreAttributesTrampoline from accessors.cc 2013-11-05 13:47:51 +00:00
allocation-site-scopes.cc The goal is to discover the appropriate heap space for objects created in full 2013-11-27 14:03:40 +00:00
allocation-site-scopes.h The goal is to discover the appropriate heap space for objects created in full 2013-11-27 14:03:40 +00:00
allocation-tracker.cc Remove all stuff marked as V8_DEPRECATED. 2013-12-18 08:09:37 +00:00
allocation-tracker.h Remove all stuff marked as V8_DEPRECATED. 2013-12-18 08:09:37 +00:00
allocation.cc Fixed alignment issues of ProfilerEventsProcessor. 2014-01-10 10:39:47 +00:00
allocation.h Fixed alignment issues of ProfilerEventsProcessor. 2014-01-10 10:39:47 +00:00
api.cc String:WriteUtf8: Add REPLACE_INVALID_UTF8 option 2014-01-20 09:52:54 +00:00
api.h Removed apiutils.h and related cleanup. 2014-01-16 08:17:40 +00:00
apinatives.js Don't lookup the cache for the result of Function::New 2013-09-16 14:50:01 +00:00
arguments.cc Fix NotifyStubFailureSaveDoubles generation for ia32. 2013-12-17 09:09:55 +00:00
arguments.h Restore saved caller FP registers on stub failure 2013-11-22 10:21:47 +00:00
array-iterator.js Provide private symbols through internal APIs 2013-11-13 10:34:06 +00:00
array.js Array builtins need to be prevented from changing frozen objects, and changing structure on sealed objects. 2013-11-29 15:22:16 +00:00
arraybuffer.js Make sure files end with exactly one new line and police this in presubmit. 2013-11-22 13:50:39 +00:00
assembler.cc Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
assembler.h We need to know if a load, store or call IC is assumed 2014-01-07 14:14:34 +00:00
assert-scope.h Fix regressions triggered by map invalidation during graph creation. 2013-08-12 14:10:25 +00:00
ast.cc We no longer need to recover type cells from the oracle. 2014-01-20 09:48:05 +00:00
ast.h We no longer need to recover type cells from the oracle. 2014-01-20 09:48:05 +00:00
atomicops_internals_arm_gcc.h
atomicops_internals_mips_gcc.h MIPS: Fix memory barriers for atomic operations. 2013-06-11 14:30:43 +00:00
atomicops_internals_tsan.h TSan: Move definition of AtomicOps_x86CPUFeatureStruct into v8::internal namespace 2013-08-02 08:52:59 +00:00
atomicops_internals_x86_gcc.cc Keep two empty lines between declarations for cpp files 2013-07-05 09:52:11 +00:00
atomicops_internals_x86_gcc.h Accurate function prototypes for native calls from ARM simulator. 2013-04-30 11:34:43 +00:00
atomicops_internals_x86_macosx.h
atomicops_internals_x86_msvc.h
atomicops.h Merge two lines into one for V8_TARGET_ARCH_${arch} and V8_HOST_ARCH_${arch} 2013-07-05 08:15:32 +00:00
bignum-dtoa.cc Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
bignum-dtoa.h
bignum.cc Keep two empty lines between declarations for cpp files 2013-07-05 09:52:11 +00:00
bignum.h
bootstrapper.cc Various extension-related cleanup and simplifications. 2014-01-17 10:52:00 +00:00
bootstrapper.h Various extension-related cleanup and simplifications. 2014-01-17 10:52:00 +00:00
builtins.cc Make the strict-mode calling convention for contextual calls the default one. 2014-01-14 12:04:10 +00:00
builtins.h We need to know if a load, store or call IC is assumed 2014-01-07 14:14:34 +00:00
bytecodes-irregexp.h
cached-powers.cc Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
cached-powers.h
char-predicates-inl.h Add support for explicit octal and binary integer literals 2013-07-19 09:57:35 +00:00
char-predicates.h Add support for explicit octal and binary integer literals 2013-07-19 09:57:35 +00:00
checks.cc Various API-related simplifications. 2014-01-14 09:37:45 +00:00
checks.h Fix compilation with GCC 4.8 2013-11-12 12:09:38 +00:00
circular-queue-inl.h Rename some of SamplingCircularQueue methods 2013-09-05 10:31:18 +00:00
circular-queue.h Rename some of SamplingCircularQueue methods 2013-09-05 10:31:18 +00:00
code-stubs-hydrogen.cc More efficient use of space in AllocationSite. 2014-01-13 10:28:01 +00:00
code-stubs.cc Implement in-heap backing store for typed arrays. 2014-01-16 17:08:45 +00:00
code-stubs.h Remove special charAt and charCodeAt handling in the ICs. 2014-01-17 11:28:22 +00:00
code.h Disallow dereferencing deferred handles when generating optimized code. 2013-04-23 09:23:07 +00:00
codegen.cc Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
codegen.h Delete unused TypeInfo class 2013-12-20 13:33:20 +00:00
collection.js Calling Map etc without new should throw TypeError 2013-08-01 09:18:28 +00:00
compilation-cache.cc Refactor the compiling pipeline. 2013-12-23 14:30:35 +00:00
compilation-cache.h Refactor the compiling pipeline. 2013-12-23 14:30:35 +00:00
compiler-intrinsics.h Revert new OS and CC detection and related changes since r15923. 2013-07-29 12:12:39 +00:00
compiler.cc Make the strict-mode calling convention for contextual calls the default one. 2014-01-14 12:04:10 +00:00
compiler.h Make the strict-mode calling convention for contextual calls the default one. 2014-01-14 12:04:10 +00:00
contexts.cc Define DEBUG for v8_optimized_debug=2 2013-10-25 11:10:28 +00:00
contexts.h Harmony promises 2013-11-27 17:21:40 +00:00
conversions-inl.h Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
conversions.cc Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
conversions.h Delete unused TypeInfo class 2013-12-20 13:33:20 +00:00
counters.cc thread isolate for files starting with 'b' and 'c' 2013-09-03 06:57:16 +00:00
counters.h Temporarily allow HistogramTimerScopes to be nested 2013-10-29 11:44:04 +00:00
cpu-profiler-inl.h Rewrite SamplingCircularQueue 2013-08-23 08:22:07 +00:00
cpu-profiler.cc Fixed alignment issues of ProfilerEventsProcessor. 2014-01-10 10:39:47 +00:00
cpu-profiler.h Fixed alignment issues of ProfilerEventsProcessor. 2014-01-10 10:39:47 +00:00
cpu.cc Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
cpu.h Remove V8_WARN_UNUSED_RESULT for simple getters. 2013-09-10 15:03:17 +00:00
d8-debug.cc Remove socket.h include from debug.h 2014-01-07 08:27:53 +00:00
d8-debug.h Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
d8-posix.cc Revert r18451 "Revert r18449 "Reland r18383: More API cleanup." and r18450 "Unbreak build."" since necessary WebKit changes are rolled in Chromium. 2014-01-03 14:31:17 +00:00
d8-readline.cc Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
d8-windows.cc Remove usage of deprecated APIs from d8 2013-11-22 12:35:39 +00:00
d8.cc Revert "Temporarily disable performance.now() in the d8 shell." 2014-01-10 12:07:29 +00:00
d8.gyp Introduce a setting to control the toolset for which d8 is compiled 2014-01-17 09:11:22 +00:00
d8.h Revert "Temporarily disable performance.now() in the d8 shell." 2014-01-10 12:07:29 +00:00
d8.js Cosmetic: Add macros for NaN, undefined and Infinity to native js code. 2013-10-17 10:02:45 +00:00
data-flow.cc
data-flow.h Allow the deoptimizer translation to track de-materialized objects. 2013-06-12 14:22:49 +00:00
date.cc Fix compilation with clang 2013-12-06 11:45:26 +00:00
date.h
date.js Initialize Date parse cache with SMI instead of double to workaround sharing mutable heap numbers in snapshot. 2013-12-11 13:11:44 +00:00
dateparser-inl.h Clarify that date parsing follows Safari. 2012-10-09 08:34:39 +00:00
dateparser.cc Keep two empty lines between declarations for cpp files 2013-07-05 09:52:11 +00:00
dateparser.h
debug-agent.cc Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
debug-agent.h Cleanup Socket class and remove it from the platform files. 2013-09-04 10:41:51 +00:00
debug-debugger.js Cosmetic: Add macros for NaN, undefined and Infinity to native js code. 2013-10-17 10:02:45 +00:00
debug.cc Removed apiutils.h and related cleanup. 2014-01-16 08:17:40 +00:00
debug.h Remove socket.h include from debug.h 2014-01-07 08:27:53 +00:00
deoptimizer.cc Out-of-line constant pool on Arm: Stage 3 - Set Constant Pool Pointer on Function Entry 2013-12-30 11:23:59 +00:00
deoptimizer.h Out-of-line constant pool on Arm: Stage 3 - Set Constant Pool Pointer on Function Entry 2013-12-30 11:23:59 +00:00
disasm.h
disassembler.cc Fix logic error in assert in IsUndeclaredGlobal() 2014-01-17 11:08:24 +00:00
disassembler.h Made Isolate a mandatory parameter for everything Handle-related. 2013-02-25 14:46:09 +00:00
diy-fp.cc
diy-fp.h
double.h
dtoa.cc Replace math.h with cmath 2013-04-19 13:26:47 +00:00
dtoa.h
effects.h Avoid -O3 in nacl as it does not play well with -W. 2013-08-20 08:12:19 +00:00
elements-kind.cc Implement in-heap backing store for typed arrays. 2014-01-16 17:08:45 +00:00
elements-kind.h Implement in-heap backing store for typed arrays. 2014-01-16 17:08:45 +00:00
elements.cc Implement in-heap backing store for typed arrays. 2014-01-16 17:08:45 +00:00
elements.h Allocation Info Tracking, continued. 2013-03-01 16:06:34 +00:00
execution.cc Deopt marked code at safe deoptimization point when pretenuring. 2014-01-16 11:54:12 +00:00
execution.h Deopt marked code at safe deoptimization point when pretenuring. 2014-01-16 11:54:12 +00:00
factory.cc Refactor string internalization. 2014-01-17 10:27:57 +00:00
factory.h Refactor string internalization. 2014-01-17 10:27:57 +00:00
fast-dtoa.cc
fast-dtoa.h
fixed-dtoa.cc Replace math.h with cmath 2013-04-19 13:26:47 +00:00
fixed-dtoa.h
flag-definitions.h Robustified extension installation a bit. 2014-01-16 13:18:28 +00:00
flags.cc Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
flags.h Introduce a RandonNumberGenerator class. Refactor the random/private_random uses in Isolate/Context. 2013-09-10 11:13:55 +00:00
frames-inl.h Fix call stack sampling for the case when native callback invokes JS function 2013-07-23 15:01:38 +00:00
frames.cc Fix some out-of-line constant pool garbage collection bugs. 2014-01-07 15:53:54 +00:00
frames.h Fix some out-of-line constant pool garbage collection bugs. 2014-01-07 15:53:54 +00:00
full-codegen.cc Fix logic error in assert in IsUndeclaredGlobal() 2014-01-17 11:08:24 +00:00
full-codegen.h Reland "Remove flags argument from EmitCallWithStub" and "MIPS: Remove flags argument from EmitCallWithStub."" 2014-01-15 09:05:21 +00:00
func-name-inferrer.cc Add three string constants from parser to the root-set. 2013-11-06 17:05:50 +00:00
func-name-inferrer.h
gdb-jit.cc Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
gdb-jit.h GDBJIT: Remove codes when they are garbage collected. 2013-07-03 15:29:59 +00:00
generator.js GeneratorFunction() makes generator instances 2013-06-12 12:52:16 +00:00
global-handles.cc Remove all stuff marked as V8_DEPRECATED. 2013-12-18 08:09:37 +00:00
global-handles.h Remove all stuff marked as V8_DEPRECATED. 2013-12-18 08:09:37 +00:00
globals.h Use ULL and LL suffix for uint64_t and int64_t constants on Mac 2013-12-03 02:49:42 +00:00
handles-inl.h Removed apiutils.h and related cleanup. 2014-01-16 08:17:40 +00:00
handles.cc Removed apiutils.h and related cleanup. 2014-01-16 08:17:40 +00:00
handles.h Removed apiutils.h and related cleanup. 2014-01-16 08:17:40 +00:00
harmony-array.js Make sure files end with exactly one new line and police this in presubmit. 2013-11-22 13:50:39 +00:00
harmony-math.js Harmony: implement math.hypot. 2013-12-23 11:13:39 +00:00
harmony-string.js Make sure files end with exactly one new line and police this in presubmit. 2013-11-22 13:50:39 +00:00
hashmap.h Make the performance of the VM more predictable by not letting the hash seed 2012-08-23 08:15:38 +00:00
heap-inl.h Implement in-heap backing store for typed arrays. 2014-01-16 17:08:45 +00:00
heap-profiler.cc Add methods for finding object by its snapshot id and id for an object 2013-12-18 08:17:03 +00:00
heap-profiler.h Add methods for finding object by its snapshot id and id for an object 2013-12-18 08:17:03 +00:00
heap-snapshot-generator-inl.h Avoid SLOW_ASSERT when calling HeapGraphNode::GetChildrenCount 2013-12-20 07:33:22 +00:00
heap-snapshot-generator.cc Introduce kGCCallbackForced flag. 2014-01-13 10:57:49 +00:00
heap-snapshot-generator.h Delete v8::HeapGraphNode::GetHeapValue 2013-12-23 09:33:16 +00:00
heap.cc Refactor string internalization. 2014-01-17 10:27:57 +00:00
heap.h Refactor string internalization. 2014-01-17 10:27:57 +00:00
hydrogen-alias-analysis.h Make HValue::ActualValue() traverse all idefs. 2013-09-16 12:44:28 +00:00
hydrogen-bce.cc Make bounds check elimination iterative instead of recursive. 2013-09-19 16:26:14 +00:00
hydrogen-bce.h Make bounds check elimination iterative instead of recursive. 2013-09-19 16:26:14 +00:00
hydrogen-bch.cc Minor cleanups, hopefully fixing an issue with VC's /Ze option on the way. 2013-08-27 08:47:05 +00:00
hydrogen-bch.h Added missing header. 2013-07-25 06:49:53 +00:00
hydrogen-canonicalize.cc Simplify redundant phi elimination and use during canonicalization too. 2013-10-10 08:50:44 +00:00
hydrogen-canonicalize.h Turn canonicalization into a proper HPhase. 2013-07-11 08:21:50 +00:00
hydrogen-check-elimination.cc Revert "Eliminatable CheckMaps replaced with if(true) or if(false)." 2014-01-15 09:53:54 +00:00
hydrogen-check-elimination.h Fix compilation error with latest Xcode. 2013-12-02 08:09:17 +00:00
hydrogen-dce.cc Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
hydrogen-dce.h Reduce queue size in dead code elimination by eagerly processing live instructions. 2013-10-14 13:32:02 +00:00
hydrogen-dehoist.cc Limit size of dehoistable array indices 2013-11-15 17:24:10 +00:00
hydrogen-dehoist.h Turn array index dehoisting into a proper HPhase. 2013-07-11 12:03:43 +00:00
hydrogen-environment-liveness.cc A few small refactorings and typo fixes 2013-11-29 10:02:32 +00:00
hydrogen-environment-liveness.h Refactor Hydrogen environment liveness analysis into an HPhase. 2013-06-27 13:15:10 +00:00
hydrogen-escape-analysis.cc Implement fixpoint iteration for escape analysis. 2013-10-16 09:16:56 +00:00
hydrogen-escape-analysis.h Consider out-of-bounds accesses as escaping uses. 2013-09-09 09:53:58 +00:00
hydrogen-flow-engine.h Revert "Eliminatable CheckMaps replaced with if(true) or if(false)." 2014-01-15 09:53:54 +00:00
hydrogen-gvn.cc Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
hydrogen-gvn.h Make all load-named-fields depend on their map-check, unless explicitly ignored. 2013-08-09 18:40:10 +00:00
hydrogen-infer-representation.cc Prevent representation inference from double-visiting. 2013-09-05 09:01:28 +00:00
hydrogen-infer-representation.h Refactor HInferRepresentation into an HPhase and use the phase zone. 2013-06-28 07:40:35 +00:00
hydrogen-infer-types.cc Turn infer types into proper HPhase. 2013-07-08 08:33:03 +00:00
hydrogen-infer-types.h Turn infer types into proper HPhase. 2013-07-08 08:33:03 +00:00
hydrogen-instructions.cc --trace-hydrogen fix 2014-01-17 15:44:40 +00:00
hydrogen-instructions.h We no longer need to recover type cells from the oracle. 2014-01-20 09:48:05 +00:00
hydrogen-load-elimination.cc Improve load elimination handling of transitioning stores. 2013-12-20 12:12:41 +00:00
hydrogen-load-elimination.h Implement local load/store elimination on basic blocks. 2013-09-17 15:32:21 +00:00
hydrogen-mark-deoptimize.cc Never hchange nan-hole to hole or hole to nan-hole. 2013-08-14 08:54:27 +00:00
hydrogen-mark-deoptimize.h Never hchange nan-hole to hole or hole to nan-hole. 2013-08-14 08:54:27 +00:00
hydrogen-mark-unreachable.cc Improve and simplify removal of unreachable code 2013-10-02 11:43:41 +00:00
hydrogen-mark-unreachable.h A few small refactorings and typo fixes 2013-11-29 10:02:32 +00:00
hydrogen-minus-zero.cc Introduce %_IsMinusZero. 2013-11-12 11:53:13 +00:00
hydrogen-minus-zero.h Refactor compute minus zero checks into a proper HPhase. 2013-07-10 14:08:19 +00:00
hydrogen-osr.cc Add tool to visualize machine code/lithium. 2013-10-21 13:35:48 +00:00
hydrogen-osr.h Refactoring such that loop builders only call into the HOsrBuilder if 2013-09-27 13:38:04 +00:00
hydrogen-range-analysis.cc Fix possible stack overflow in range analysis. 2013-07-15 09:53:46 +00:00
hydrogen-range-analysis.h Fix possible stack overflow in range analysis. 2013-07-15 09:53:46 +00:00
hydrogen-redundant-phi.cc Simplify redundant phi elimination and use during canonicalization too. 2013-10-10 08:50:44 +00:00
hydrogen-redundant-phi.h Simplify redundant phi elimination and use during canonicalization too. 2013-10-10 08:50:44 +00:00
hydrogen-removable-simulates.cc Turn merge removable simulates into a proper HPhase. 2013-07-10 16:34:28 +00:00
hydrogen-removable-simulates.h Turn merge removable simulates into a proper HPhase. 2013-07-10 16:34:28 +00:00
hydrogen-representation-changes.cc Reapply r11765 2013-11-18 17:24:00 +00:00
hydrogen-representation-changes.h Turn the representation changes into a proper HPhase. 2013-07-08 09:02:09 +00:00
hydrogen-sce.cc Reland r18363. 2013-12-19 16:45:58 +00:00
hydrogen-sce.h Turn stack check elimination into proper HPhase. 2013-07-08 07:03:57 +00:00
hydrogen-uint32-analysis.cc Fix uint32-to-smi conversion in Lithium 2013-10-31 10:18:51 +00:00
hydrogen-uint32-analysis.h Turn UInt32 analysis into a proper HPhase. 2013-07-02 10:53:08 +00:00
hydrogen.cc We no longer need to recover type cells from the oracle. 2014-01-20 09:48:05 +00:00
hydrogen.h This is a preview of a first step towards unification of the hydrogen 2014-01-15 17:00:35 +00:00
i18n.cc Prepare removal of ObjectTemplate::New without Isolate parameter. 2014-01-08 06:53:31 +00:00
i18n.h Remove all stuff marked as V8_DEPRECATED. 2013-12-18 08:09:37 +00:00
i18n.js Use %_IsMinusZero where applicable to replace hackery. 2013-11-12 14:20:53 +00:00
ic-inl.h Move responsibility for definition of ExtraICState bits into the ICs. 2013-11-28 15:32:55 +00:00
ic.cc Remove special charAt and charCodeAt handling in the ICs. 2014-01-17 11:28:22 +00:00
ic.h Remove special charAt and charCodeAt handling in the ICs. 2014-01-17 11:28:22 +00:00
icu_util.cc Fix incorrect #ifdef statements for I18N support. 2013-08-01 19:21:16 +00:00
icu_util.h Move InitializeICU() to the V8 API and use it. 2013-07-11 09:58:54 +00:00
incremental-marking-inl.h Forward white to grey transition only if slot is before the progress bar of a given object. 2012-11-26 16:16:49 +00:00
incremental-marking.cc Define DEBUG for v8_optimized_debug=2 2013-10-25 11:10:28 +00:00
incremental-marking.h Fix counting of scanned bytes in incremental marking step for large object. 2013-05-29 11:13:59 +00:00
interface.cc Renamed "symbols" to "internalized strings" throughout the code base, 2013-02-28 17:03:34 +00:00
interface.h Get rid of static module allocation, do it in code. 2012-11-22 10:25:22 +00:00
interpreter-irregexp.cc Make assertion scopes thread safe. 2013-06-03 15:32:22 +00:00
interpreter-irregexp.h
isolate-inl.h Avoid pre-aging when debugger is active 2013-10-31 11:43:23 +00:00
isolate.cc This is a preview of a first step towards unification of the hydrogen 2014-01-15 17:00:35 +00:00
isolate.h Removed apiutils.h and related cleanup. 2014-01-16 08:17:40 +00:00
json-parser.h Get rid of ZoneScope completely. 2013-06-26 13:36:16 +00:00
json-stringifier.h Correctly stringify mixed encoding indirect strings. 2013-09-09 16:15:40 +00:00
json.js Cosmetic: Add macros for NaN, undefined and Infinity to native js code. 2013-10-17 10:02:45 +00:00
jsregexp-inl.h Inline some regexp code. 2013-02-06 12:58:09 +00:00
jsregexp.cc Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
jsregexp.h some random isolate threading 2013-09-11 08:39:38 +00:00
lazy-instance.h Add V8_ALIGNAS() and V8_ALIGNOF() and use that in lazy-instance.h. 2013-08-26 11:18:28 +00:00
list-inl.h Revert "Implement zone-allocated types" 2014-01-10 15:33:37 +00:00
list.h Retry "Templatise type representation" after making clang happy 2014-01-10 12:19:01 +00:00
lithium-allocator-inl.h Refactor register allocator a little bit 2013-09-28 00:48:08 +00:00
lithium-allocator.cc Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
lithium-allocator.h Refactor register allocator a little bit 2013-09-28 00:48:08 +00:00
lithium-codegen.cc Make cells pointing to JSObjects weak in optimized code. 2014-01-15 11:42:19 +00:00
lithium-codegen.h Make LCodeGen::RegisterDependentCodeForEmbeddedMaps platform independent. 2013-12-03 12:32:35 +00:00
lithium.cc Fixed Lithium environment generation bug for captured objects (created 2014-01-07 14:36:26 +00:00
lithium.h Fixed Lithium environment generation bug for captured objects (created 2014-01-07 14:36:26 +00:00
liveedit-debugger.js Cosmetic: Add macros for NaN, undefined and Infinity to native js code. 2013-10-17 10:02:45 +00:00
liveedit.cc Refactor the compiling pipeline. 2013-12-23 14:30:35 +00:00
liveedit.h Get rid of ZoneScope completely. 2013-06-26 13:36:16 +00:00
log-inl.h Remove #include "cpu-profiler-inl.h" from v8.h 2013-07-03 15:39:18 +00:00
log-utils.cc Remove deprecated profiler API 2013-08-29 10:42:55 +00:00
log-utils.h Support for the Linux 'perf report' and 'perf annotate' tools. 2013-11-25 06:44:23 +00:00
log.cc Refactor the compiling pipeline. 2013-12-23 14:30:35 +00:00
log.h We need to know if a load, store or call IC is assumed 2014-01-07 14:14:34 +00:00
macro-assembler.h Implement direct allocation in old data space infrastructure. 2013-04-15 11:52:34 +00:00
macros.py Revert "ES6: Implement Object.setPrototypeOf" 2014-01-20 10:59:07 +00:00
mark-compact-inl.h Get rid of most uses of 'Temporary macro' HEAP 2013-09-10 14:30:36 +00:00
mark-compact.cc Make cells pointing to JSObjects weak in optimized code. 2014-01-15 11:42:19 +00:00
mark-compact.h The goal is to discover the appropriate heap space for objects created in full 2013-11-27 14:03:40 +00:00
math.js Cleanup SetUpMath to use InstallConstants helper. 2014-01-08 11:55:53 +00:00
messages.cc Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
messages.h Deprecate FACTORY helper macro. 2013-06-04 10:30:05 +00:00
messages.js Revert "ES6: Implement Object.setPrototypeOf" 2014-01-20 10:59:07 +00:00
mirror-debugger.js ES6: Add Object.getOwnPropertySymbols 2014-01-09 15:57:30 +00:00
misc-intrinsics.h Revert new OS and CC detection and related changes since r15923. 2013-07-29 12:12:39 +00:00
mksnapshot.cc Remove usage of deprecated APIs from v8 itself 2013-11-22 12:28:58 +00:00
msan.h Fix MEMORY_SANITIZER macro redefinition error. 2013-10-23 13:50:01 +00:00
natives.h Snapshot i18n Javascript code 2013-09-12 13:50:38 +00:00
object-observe.js Minor Object.observe optimizations 2014-01-08 20:25:08 +00:00
objects-debug.cc Implement in-heap backing store for typed arrays. 2014-01-16 17:08:45 +00:00
objects-inl.h Refactor string internalization. 2014-01-17 10:27:57 +00:00
objects-printer.cc Implement in-heap backing store for typed arrays. 2014-01-16 17:08:45 +00:00
objects-visiting-inl.h Implement in-heap backing store for typed arrays. 2014-01-16 17:08:45 +00:00
objects-visiting.cc Implement in-heap backing store for typed arrays. 2014-01-16 17:08:45 +00:00
objects-visiting.h Implement in-heap backing store for typed arrays. 2014-01-16 17:08:45 +00:00
objects.cc Remove special charAt and charCodeAt handling in the ICs. 2014-01-17 11:28:22 +00:00
objects.h Fix logic error in assert in IsUndeclaredGlobal() 2014-01-17 11:08:24 +00:00
once.cc
once.h
optimizing-compiler-thread.cc Refactor the compiling pipeline. 2013-12-23 14:30:35 +00:00
optimizing-compiler-thread.h Refactor the compiling pipeline. 2013-12-23 14:30:35 +00:00
OWNERS Adding Cira & Mihai to OWNERS for internationalization (i18n) 2013-10-11 15:24:45 +00:00
parser.cc Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
parser.h Refactor the compiling pipeline. 2013-12-23 14:30:35 +00:00
platform-cygwin.cc Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
platform-freebsd.cc Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
platform-linux.cc Annotate mapped memory regions for LeakSanitizer. 2014-01-14 14:00:29 +00:00
platform-macos.cc Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
platform-openbsd.cc Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
platform-posix.cc Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
platform-qnx.cc Add support for the QNX operating system. 2014-01-02 07:04:05 +00:00
platform-solaris.cc Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
platform-win32.cc Fixed Windows build (hopefully). 2013-12-18 11:27:18 +00:00
platform.h Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
preparse-data-format.h
preparse-data.cc Keep two empty lines between declarations for cpp files 2013-07-05 09:52:11 +00:00
preparse-data.h Renamed "symbols" to "internalized strings" throughout the code base, 2013-02-28 17:03:34 +00:00
preparser.cc Remove deprecated "i::" prefix from the pre-parser. 2013-10-15 08:57:36 +00:00
preparser.h Remove deprecated "i::" prefix from the pre-parser. 2013-10-15 08:57:36 +00:00
prettyprinter.cc Unify handling of position info in AST, part 3 2013-10-14 11:06:15 +00:00
prettyprinter.h remove Isolate::Current from most files starting with 'a' 2013-09-02 09:27:27 +00:00
profile-generator-inl.h Always make a copy of a string when adding it to StringsStorage 2013-10-18 08:56:14 +00:00
profile-generator.cc Fix debug compilation after r18337 2013-12-18 09:12:31 +00:00
profile-generator.h Delete several deprecated methods on v8::CpuProfiler 2013-12-18 08:59:09 +00:00
promise.js Fix logic error in assert in IsUndeclaredGlobal() 2014-01-17 11:08:24 +00:00
property-details.h Retry "Templatise type representation" after making clang happy 2014-01-10 12:19:01 +00:00
property.cc Convert CONSTANT_FUNCTION to CONSTANT 2013-07-24 12:34:50 +00:00
property.h move HEAP to /test 2013-09-11 07:14:41 +00:00
proxy.js Fix logic error in assert in IsUndeclaredGlobal() 2014-01-17 11:08:24 +00:00
qnx-math.h Add support for the QNX operating system. 2014-01-02 07:04:05 +00:00
regexp-macro-assembler-irregexp-inl.h
regexp-macro-assembler-irregexp.cc Remove use of Isolate::Current in regexp macro assemblers. 2013-06-07 08:38:05 +00:00
regexp-macro-assembler-irregexp.h Remove use of Isolate::Current in regexp macro assemblers. 2013-06-07 08:38:05 +00:00
regexp-macro-assembler-tracer.cc Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
regexp-macro-assembler-tracer.h RegExp macro assembler clean up. 2013-06-06 10:17:07 +00:00
regexp-macro-assembler.cc remove most Isolate::Current asserts 2013-09-05 11:27:22 +00:00
regexp-macro-assembler.h RegExp macro assembler clean up. 2013-06-06 10:17:07 +00:00
regexp-stack.cc remove most Isolate::Current asserts 2013-09-05 11:27:22 +00:00
regexp-stack.h
regexp.js Cosmetic: Add macros for NaN, undefined and Infinity to native js code. 2013-10-17 10:02:45 +00:00
rewriter.cc Enable optimization of functions with generic switches. 2013-12-18 11:44:38 +00:00
rewriter.h
runtime-profiler.cc Refactor the compiling pipeline. 2013-12-23 14:30:35 +00:00
runtime-profiler.h Remove outdated profiler flags 2013-12-06 09:52:40 +00:00
runtime.cc Implement in-heap backing store for typed arrays. 2014-01-16 17:08:45 +00:00
runtime.h Turn Runtime_MigrateInstance into Runtime_TryMigrateInstance 2014-01-14 13:41:09 +00:00
runtime.js Reland v8:18458 "Load the global proxy from the context of the target function." 2014-01-07 10:46:39 +00:00
safepoint-table.cc Allow redirecting disassembly and deoptimization traces into a file. 2013-11-07 16:35:27 +00:00
safepoint-table.h Allow redirecting disassembly and deoptimization traces into a file. 2013-11-07 16:35:27 +00:00
sampler.cc Add support for the QNX operating system. 2014-01-02 07:04:05 +00:00
sampler.h Do not start sampler thread when CpuProfiler is active 2013-08-29 14:03:38 +00:00
scanner-character-streams.cc Fix compilation with clang 2013-12-06 11:45:26 +00:00
scanner-character-streams.h
scanner.cc Unify and fix checkers for duplicate object literal properties. 2013-10-10 11:58:16 +00:00
scanner.h Unify and fix checkers for duplicate object literal properties. 2013-10-10 11:58:16 +00:00
scopeinfo.cc Removed unused --preallocate-message-memory flag. 2013-11-20 12:35:58 +00:00
scopeinfo.h Get rid of static module allocation, do it in code. 2012-11-22 10:25:22 +00:00
scopes.cc Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
scopes.h Add type field to AST expression nodes 2013-06-06 13:28:22 +00:00
serialize.cc Remove the last remnants of the TranscendentalCache. 2013-12-18 10:40:26 +00:00
serialize.h Flush instruction cache for deserialized code objects. 2013-12-16 13:08:24 +00:00
simulator.h
small-pointer-list.h
smart-pointers.h Replace 'operator*' with explicit 'get' method on SmartPointer 2013-12-09 07:41:20 +00:00
snapshot-common.cc Add flag for printing the time it took to deserialize the snapshot. 2013-10-02 11:32:19 +00:00
snapshot-empty.cc Separate Cell and PropertyCell spaces 2013-06-12 15:03:44 +00:00
snapshot.h remove Isolate::Current from most files starting with 's' through 'v' 2013-09-03 11:54:08 +00:00
spaces-inl.h Move old-space allocation tracking into Heap::AllocateRaw. 2013-11-11 17:46:08 +00:00
spaces.cc Reland v8:18458 "Load the global proxy from the context of the target function." 2014-01-07 10:46:39 +00:00
spaces.h Add ability to disable inline bump-pointer allocation. 2013-11-14 15:14:37 +00:00
splay-tree-inl.h Un-revert "Implement simple effect typing for variables" and "Handle switch effects" 2013-08-06 12:57:23 +00:00
splay-tree.h Un-revert "Implement simple effect typing for variables" and "Handle switch effects" 2013-08-06 12:57:23 +00:00
store-buffer-inl.h Out-of-line constant pool on Arm: Stage 2 - Introduce ConstantPoolArray object. 2013-10-14 13:35:06 +00:00
store-buffer.cc Fix selection of popular pages in store buffer. 2014-01-08 09:49:37 +00:00
store-buffer.h Implemented lazy sweeping of new space. 2013-07-11 09:17:03 +00:00
string-search.cc
string-search.h remove latin-1 flag 2013-03-13 20:04:50 +00:00
string-stream.cc Removed unused --preallocate-message-memory flag. 2013-11-20 12:35:58 +00:00
string-stream.h thread isolate for logging calls 2013-09-11 10:59:39 +00:00
string.js Revert "ES6: Implement Object.setPrototypeOf" 2014-01-20 10:59:07 +00:00
strtod.cc Revert new OS and CC detection and related changes since r15923. 2013-07-29 12:12:39 +00:00
strtod.h
stub-cache.cc Remove special charAt and charCodeAt handling in the ICs. 2014-01-17 11:28:22 +00:00
stub-cache.h De-virtualize GenerateNameCheck. 2014-01-20 07:05:23 +00:00
sweeper-thread.cc Make number of available threads isolate-dependent and expose it to ResourceConstraints. 2013-11-19 11:52:47 +00:00
sweeper-thread.h Make number of available threads isolate-dependent and expose it to ResourceConstraints. 2013-11-19 11:52:47 +00:00
symbol.js ES6: Add Object.getOwnPropertySymbols 2014-01-09 15:57:30 +00:00
token.cc
token.h Refactor BinaryOpIC to be able to use different stubs. 2013-12-02 13:14:07 +00:00
transitions-inl.h Cache optimized code for OSR. 2013-12-23 14:42:42 +00:00
transitions.cc remove Isolate::Current from most files starting with 's' through 'v' 2013-09-03 11:54:08 +00:00
transitions.h remove Isolate::Current from most files starting with 's' through 'v' 2013-09-03 11:54:08 +00:00
trig-table.h Reland: Embed trigonometric lookup table. 2013-11-22 08:25:50 +00:00
type-info.cc We no longer need to recover type cells from the oracle. 2014-01-20 09:48:05 +00:00
type-info.h We no longer need to recover type cells from the oracle. 2014-01-20 09:48:05 +00:00
typedarray.js Ensure that length is Smi in TypedArrayFromArrayLike constructor. 2013-11-28 15:22:36 +00:00
types.cc Revert "Implement zone-allocated types" 2014-01-10 15:33:37 +00:00
types.h Revert "Implement zone-allocated types" 2014-01-10 15:33:37 +00:00
typing.cc Get rid of ContextualMode for call ICs. 2014-01-14 16:15:05 +00:00
typing.h Collect type information based on stack allocated values for OSR. 2013-12-18 10:38:58 +00:00
unbound-queue-inl.h Fix data race in v8::internal::UnboundQueue 2013-06-20 06:23:34 +00:00
unbound-queue.h Fix data race in v8::internal::UnboundQueue 2013-06-20 06:23:34 +00:00
unicode-inl.h String:WriteUtf8: Add REPLACE_INVALID_UTF8 option 2014-01-20 09:52:54 +00:00
unicode.cc Keep two empty lines between declarations for cpp files 2013-07-05 09:52:11 +00:00
unicode.h String:WriteUtf8: Add REPLACE_INVALID_UTF8 option 2014-01-20 09:52:54 +00:00
unique.h Improve check elimination with branch sensitivity on HCompareObjectEqAndBranch. 2013-12-19 17:42:21 +00:00
uri.h Make assertion scopes thread safe. 2013-06-03 15:32:22 +00:00
uri.js Move global code for builtins into setup functions. 2013-04-11 12:15:25 +00:00
utils-inl.h
utils.cc Replace OS::MemCopy with OS::MemMove (just as fast but more flexible). 2013-04-16 12:30:51 +00:00
utils.h Use std:: on symbols declared in C++-style C headers. 2014-01-14 09:57:05 +00:00
v8-counters.cc Add support for tracking NotExectuted/ExecutedOnceCodeAge's when --track_gc_object_stats flag is set. 2013-11-06 09:29:09 +00:00
v8-counters.h Remove the last remnants of the TranscendentalCache. 2013-12-18 10:40:26 +00:00
v8.cc Various extension-related cleanup and simplifications. 2014-01-17 10:52:00 +00:00
v8.h Reland "Implement Math.random() purely in JavaScript" plus fixes. 2013-11-22 11:35:39 +00:00
v8checks.h Various API-related simplifications. 2014-01-14 09:37:45 +00:00
v8conversions.cc Continues Latin-1 support. All tests pass with ENABLE_LATIN_1 flag. 2013-01-09 15:47:53 +00:00
v8conversions.h Delete unused TypeInfo class 2013-12-20 13:33:20 +00:00
v8dll-main.cc Fix compilation with recent MinGW64 versions. 2013-08-28 08:35:04 +00:00
v8globals.h Remove CALL_AS_FUNCTION and CALL_AS_METHOD. 2014-01-14 14:36:24 +00:00
v8memory.h Generators save and restore stack handlers 2013-05-08 08:08:23 +00:00
v8natives.js Revert "ES6: Implement Object.setPrototypeOf" 2014-01-20 10:59:07 +00:00
v8threads.cc Remove preemption thread and API 2013-11-21 13:47:37 +00:00
v8threads.h Remove preemption thread and API 2013-11-21 13:47:37 +00:00
v8utils.cc Replace OS::MemCopy with OS::MemMove (just as fast but more flexible). 2013-04-16 12:30:51 +00:00
v8utils.h MIPS: Faster memcpy. 2013-12-06 16:23:49 +00:00
variables.cc Renamed "symbols" to "internalized strings" throughout the code base, 2013-02-28 17:03:34 +00:00
variables.h Renamed "symbols" to "internalized strings" throughout the code base, 2013-02-28 17:03:34 +00:00
version.cc Prepare push to trunk. Now working on version 3.24.20. 2014-01-20 07:57:07 +00:00
version.h
vm-state-inl.h Fix call stack sampling for the case when native callback invokes JS function 2013-07-23 15:01:38 +00:00
vm-state.h Fix call stack sampling for the case when native callback invokes JS function 2013-07-23 15:01:38 +00:00
win32-headers.h Cleanup Mutex and related classes. 2013-08-29 09:58:30 +00:00
win32-math.cc Make v8 compile on VS2013. 2013-09-17 15:26:18 +00:00
win32-math.h Make v8 compile on VS2013. 2013-09-17 15:26:18 +00:00
zone-inl.h Un-revert "Implement simple effect typing for variables" and "Handle switch effects" 2013-08-06 12:57:23 +00:00
zone.cc Use unsigned integer arithmetic in Zone::NewExpand. 2014-01-13 13:00:09 +00:00
zone.h revert thread isolate in PreallocatedStorageAllocationPolicy 2013-09-02 11:39:23 +00:00