Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

v8-private-headers-devel-3.9.13.0-1.15.1 RPM for x86_64

From OpenSuSE 12.1 updates for x86_64

Name: v8-private-headers-devel Distribution: openSUSE 12.1
Version: 3.9.13.0 Vendor: openSUSE
Release: 1.15.1 Build date: Tue Mar 13 15:41:49 2012
Group: Development/Libraries/C and C++ Build host: build09
Size: 2781329 Source RPM: v8-3.9.13.0-1.15.1.src.rpm
Packager: http://bugs.opensuse.org
Url: http://code.google.com/p/v8
Summary: Private Development headers for v8
Special Private Development headers for v8.

Provides

Requires

License

BSD-3-Clause

Changelog

* Sat Mar 03 2012 tittiatcoke@gmail.com
  - Update to 3.9.13.0
    * Add code kind check before preparing for OSR. (issue 1900, 115073)
    * Pass zone explicitly to zone-allocation on x64 and ARM. (issue 1802)
    * Port string construct stub to x64. (issue 849)
    * Performance and stability improvements on all platforms.
* Sat Feb 18 2012 tittiatcoke@gmail.com
  - Update to 3.9.7.0
    * Fixed V8 issues 1878, 1942, 1945 and Chromium issue 113924.
    * Fixed GCC-4.7 warnings.
    * Added Navier-Stokes benchmark.
    * Performance and stability improvements on all platforms.
* Tue Feb 14 2012 tittiatcoke@gmail.com
  - Update to 3.9.6.1
    * Removed unused command line flags
    * Fix template-related linker error. (issue 1936)
    * Allow inlining of functions containing object literals.
      (issue 1322)
    * Add --call-graph-size option to tickprocessor.  (issue 1937)
    * Heap Snapshot maximum size limit is too low for really big
      apps. At the moment the limit is 256MB.
      (Chromium issue 113015)
    * Performance and stability improvements on all platforms.
* Thu Feb 09 2012 tittiatcoke@gmail.com
  - Update to 3.9.4.0
    * Properly initialize element-transitioning array literals on ARM.
      (issue 1930)
    * Bug fixes on all platforms.
* Wed Feb 08 2012 tittiatcoke@gmail.com
  - Update to 3.9.3.0
    * Optionally export metadata with libv8 to enable debuggers to
      inspect V8 state.
    * Add timestamp to --trace-gc output. (issue 1932)
    * Heap profiler reports implicit references.
    * When rethrowing an exception, print the stack trace of its
      original site instead of rethrow site (Chromium issue 60240).
    * Increased size of small stacks from 32k to 64k to avoid hitting
      limits in Chromium (Chromium issue 112843).
* Mon Feb 06 2012 tittiatcoke@gmail.com
  - Update to 3.9.1.0
    * Reduce memory use immediately after starting V8.
    * Fixed memory leak in NativeObjectsExplorer::FindOrAddGroupInfo
      (Chromium issue 112315).
    * Fixed a crash in dev tools (Chromium issue 107996).
    * Added 'dependencies_traverse': 1 to v8 GYP target.
    * Performance and stability improvements on all platforms.
* Sun Jan 29 2012 tittiatcoke@gmail.com
  - Update to 3.8.9.0
    * Flush number string cache on GC (issue 1605).
    * Provide access to function inferred name with
      v8::Function::GetInferredName in V8 public API.
    * Fix building with Clang (issue 1912).
    * Reduce the space used by the stack for the profiling thread.
    * Fix misleading documentation of v8::Locker (issue 542).
    * Introduce readbinary function in d8 to read binary files.
    * Performance and stability improvements on all platforms.
* Wed Jan 25 2012 tittiatcoke@gmail.com
  - Update to 3.8.8.0
    * Limited number of loop iterations in Heap::ReserveSpace
      (Chromium issue 99027).
    * Fixed solaris build (VirtualMemory) (issue 1761).
    * Fixed strict vs. non-strict handling of function proxies in
      higher-order array and string methods.
    * Enabled asynchronous remote debugging with d8 (issue 1691).
* Mon Jan 23 2012 tittiatcoke@gmail.com
  - Update to 3.8.7.1
    * Resolves CVE-2011-5037
    * Ensure that LRandom restores rsi after call to the C function
      on x64.  (Chromium issue http://crbug.com/110509)
    * Fixing include issues on *bsd when building with scons.
      (issue 1897)
    * Provide a switch to specify -fno-strict-aliasing
      (issue 1887)
    * Move WIN32 define from standalone.gypi to common.gypi
      (issue 1760)
    * Fix corner-case in heap size estimation.
      (issue 1893)
    * Fix and enable NEW_NON_STRICT_FAST ArgumentsAccess stub on x64.
      (issue 1903)
    * Performance improvements and bug fixes.
    * Add primitive WebGL array support to d8.
    * Improve heap size estimation (issue 1893).
    * Hash collision DOS workaround extended from string keys
      to numeric keys.
    * Provide an API for iterating through all external strings referenced
      from the JS heap.
    * Adjust position recorded for call expressions. http://crbug.com/109195
    * Fix GC crash related to instanceof. http://crbug.com/109448
    * Fix broken test that assumes that no GC can clear the regexp cache (GC
      can happen at any time due to Crankshaft).
    * Fix handling of bogus receivers for Harmony collections. (issue 1884)
    * Add netbsd support to gyp build.
    * Determine page size at runtime on posix platforms.
    * Ensure that store buffer filtering hash sets are cleared after
      StoreBuffer::Filter.
    * Randomize the seed used for string hashing.  This helps guard against
      CPU-eating DOS attacks against node.js servers.  Based on code from
      Bert Belder.
    * Implement callback when script finishes running in V8 API.
    * Improve performance of Math.min and Math.max for the case of two
      arguments. (issue 1325)
* Mon Jan 09 2012 tittiatcoke@gmail.com
  - Update to 3.8.4.1
    * Performance improvements for large Smi-only arrays.
    * Fixed InternalArrays construction. (issue 1878)
* Sat Dec 31 2011 tittiatcoke@gmail.com
  - Update to 3.8.3
    * Avoid embedding new space objects into code objects in the
      lithium gap resolver. (chromium:108296)
    * Bug fixes and performance optimizations on all platforms.
* Wed Dec 28 2011 tittiatcoke@gmail.com
  - Update to 3.8.2.1
    * Removed exit-time destructors.
    * Set maximum length of FixedArray in terms of elements instead
      an absolute number of bytes.  (Chromium issue 103103)
    * Fixed bug when generating padding to ensure space for lazy
      deoptimization. (issue 1846)
    * Further reduced pause times due to GC.
    * Increase tick interval for the android platform.
    * Fix a bug in the register allocator. (chromium:105112)
    * Fix handling of recompiling code. (chromium:105375, v8:1782)
    * Start incremental marking on idle notification. (v8:1458)
    * Build fixes for various platforms.
    * Fixed handling of arrays in DefineOwnProperty. (issue 1756)
    * Sync parser and preparser on do-while and return statements.
      (issue 1856)
    * Fixed another corner case for DefineOwnProperty on arrays
      (issue 1756).
    * Fixed GCC 4.7 warnings. Patch from Tobias Burnus.
    * Add max optimization flag to v8 gyp build to ensure V8 is
      always built fully optimized in Chrome.
    * MIPS: Bring MIPS to parity with other platforms.
    * Optimizations and stability improvements on all platforms.
* Wed Dec 14 2011 joop.boonen@opensuse.org
  - ARM build fix: Changed ExclusiveArch from arm to %arm
  - Added code to build for hardfp
* Fri Dec 09 2011 coolo@suse.com
  - fix license to be in spdx.org format
* Tue Dec 06 2011 tittiatcoke@gmail.com
  - Update to 3.7.12.6
    * Increase tick interval for the android platform.
    * Fix a bug in the register allocator. (chromium:105112)
    * Fix handling of recompiling code. (chromium:105375, v8:1782)
    * Start incremental marking on idle notification. (v8:1458)
    * Build fixes for various platforms.
    * Various performance improvements.
* Sat Dec 03 2011 tittiatcoke@gmail.com
  - Update to 3.7.11
    * Fixed bug when generating padding to ensure space for lazy
      deoptimization. (issue 1846)
    * Further reduced pause times due to GC.
    * Set maximum length of FixedArray in terms of elements
      instead an absolute number of bytes. (Chromium issue 103103)
    * Stability and performance improvements on all platforms.
    * Removed exit-time destructors.
* Sun Nov 20 2011 tittiatcoke@gmail.com
  - Update to 3.7.8.0
    * Fix missing fast property accessors in heap snapshots.
      (issue 1818)
    * Removed hidden prototype from builtins, i.e., deleting an
      overridden function on builtins will not make the original
      function reappear.
    * Added NetBSD support for scons build.
    * Performance improvements on all platforms.
* Sat Nov 12 2011 tittiatcoke@gmail.com
  - Update to 3.7.6.0
    * Fix Harmony sets and maps to allow null and undefined as keys
      (still hidden behind --harmony flag) (issue 1622).
    * Implement VirtualMemory on FreeBSD to fix build (issue 1807).
    * Enable VFP instructions for Android.
    * Fix error handling in Date.prototype.toISOString (issue 1792).
    * Fixed filtering of store buffer for large object pages.
      (issue 1817)
    * Fixed generated hash function on all platforms.
      (issue 1808)
    * Fixed Heap::Shrink to ensure that it does not free pages that are
      still in use. (Chromium issue 100414)
* Sun Oct 30 2011 tittiatcoke@gmail.com
  - Update to 3.7.3.0
    * Slight deoptimization as a workaround for issue with jslint:
      Issue 1789.
    * Fix bug in deoptimization.  Known issue with jslint:
      Issue 1789.
    * Achieved 33% speedup in debug-mode tests.
    * Removed special casing of calls to RegExp test and exec
      methods with no argument.  Now matches new JSC behaviour.
      crbug.com/75740.
    * Return the empty string on cyclic references in toString
      (ES5 conformance).
    * Fixed bug triggered by JSBeautifier.  crbug.com/100409.
    * Made Math.random state per-context instead of per-process
      issue 864.
    * Fixed stack traces to skip native functions.
    * Make snapshots (new contexts) smaller and faster.
    * Fixed handling of Function.apply for non-array arguments.
    * Fixed evaluation order in defineProperties to match FireFox.
    * Fixed handling of non-object receivers for array builtins,
      crbug.com/100702.
    * Multiple fixes to improve compliance with test262.
    * Fixed compatibility with older Android releases.
    * Fixed compilation with gcc-4.5.3.
    * Improved performance of WriteUtf8, issue 1665.
    * Made native syntax an early error in the preparser.
    * Fixed issues 793 and 893 relating to Function.prototype.bind.
    * Improved let, const, Set and Map support and other Harmony
      features (behind the --harmony flag).
    * Changed evaluation order for > and <= to match ES5 instead
      of ES3.
    * Bug fixes and performance improvements on all platforms.
    * Fixed array handling for Object.defineOwnProperty
      (ES5 conformance).
    * Fixed issue 1757 (string slices of external strings).
    * Fixed issue 1759 (ARM).
    * Added flag --noclever-optimizations to disable some things that
      caused trouble in the past.
    * Added flag --stress-compaction for testing.
    * Added flag --harmony to activate all experimental Harmony features.
* Sun Oct 23 2011 tittiatcoke@gmail.com
  - Update to 3.6.6.4
    * Bugfixes
* Sun Oct 16 2011 tittiatcoke@gmail.com
  - Change the build process for openSUSE >= 12.1 to enable
    building the Python bindings for V8.
    + Create a separate package for the internal src header-files
      required by PyV8
* Sat Oct 01 2011 tittiatcoke@gmail.com
  - Update to 3.6.4.1
    * Bugfixes
* Sat Sep 24 2011 tittiatcoke@gmail.com
  - Update to 3.6.4.0
    + Implemented better support of typed arrays in the d8 shell.
    + Bug fixes and performance improvements on all platforms.
    + Fixed d8's broken readline history.
    + Removed the need for code delete events in CPU profiler
      (Issue 1466).
    + Fixed debugger stepping next with trycatch recursion
      (Issue 1639).
    + Fixing parallel execution in d8 (with -p) and some memory
      leaks.
    + Support for precise stepping in functions compiled before
      debugging was started (step 1).
* Mon Sep 12 2011 tittiatcoke@gmail.com
  - Update to 3.6.2.0
    + Fixed a bug when optimizing named function expression (issue 1647).
    + Fixed a bug when optimizing f.call.apply (issue 1650).
    + Made arguments and caller always be null on native functions
      (issues 1548 and 1643).
    + Fixed issue 1648 (cross-compiling x64 targeting ia32).
    + Fixed issue 371 (d8 printing of strings containing \0).
    + Fixed order of evaluation in arguments to parseInt (issue 1649).
    + Fixed a problem with large heap snapshots in Chrome DevTools
      (issue 1658, chromium issue 89268).
    + Upped default maximum heap size from 512M to 700M.
    + Fixed a bug in abrupt exit from with or catch inside finally.
    + Fixed possible crash in FixedDoubleArray::Initialize() (Chromium
      issue 95113).
    + Fixed a bug in Page::GetRegionMaskForSpan (Chromium issue 94425).
    + Fixed a few clang warnings (which -Werror treated as errors).
    + Performance improvements on all platforms.
    + Added ability to turn profiler on/off in d8.
    + Fixed several crash bugs.
* Fri Sep 02 2011 tittiatcoke@gmail.com
  - Update to 3.5.10.0
    +  Added V8EXPORT attributes for v8::Array::CheckCast and
      v8::Number::CheckCast.
    +  Made a slight API change enabling opting out from null
      termination in String::Write*().
    +  Made FromPropertyDescriptor not trigger inherited setters.
    +  Various bugfixes
* Wed Aug 24 2011 tittiatcoke@gmail.com
  - update to 3.5.7.0
    + Make scanner handle invalid unicode escapes in identifiers correctly.
    + Make regexp flag parsing stricter.
    + Fix several memory leaks.
  - Cleanup of specfile and changelog to prepare for submission to
    Factory
* Mon Aug 22 2011 tittiatcoke@gmail.com
  - Stop building libv8 in debug mode. Chromium doesn't like this
    and starts cpu hogging.
* Fri Aug 19 2011 tittiatcoke@gmail.com
  - Update to 3.5.6.0
    + Fixed issue that could cause crashes when running with --heap-stats.
    + Fixed compilation on Linux 2.6.9 and older.
    + Fixed live-object-list to work with isolates.
    + Fixed memory leaks in zones and isolates.
    + Fixed a performance regression for TypedArrays on x64.
    + Stability improvements on all platforms.
* Tue Aug 16 2011 tittiatcoke@gmail.com
  - Update to 3.5.5.0
    + Fixed bugs involving negative zero and the optimizing compiler.
    + Fixed optimized version of Function.apply(x, arguments). (issue 1592)
    + Eliminated uses of deprecated ARM instructions.
    + Sped up Math.floor by using SSE 4.1 roundsd instruction on ia32.
    + Removed restriction on the size of disassembled code that is printed.
* Sat Aug 06 2011 tittiatcoke@gmail.com
  - Update to 3.5.2.0
* Sat Jul 30 2011 tittiatcoke@gmail.com
  - Update to 3.5.1.0
* Thu Jul 21 2011 tittiatcoke@gmail.com
  - Update to 3.4.13
* Sun Jul 17 2011 tittiatcoke@gmail.com
  - Update to 3.4.12.1
* Mon Jun 20 2011 tittiatcoke@gmail.com
  - Update to 3.4.4.0
* Mon Jun 13 2011 tittiatcoke@gmail.com
  - Update to 3.4.3.0
* Tue May 31 2011 tittiatcoke@gmail.com
  - Update to 3.4.0.1
* Sat May 28 2011 tittiatcoke@gmail.com
  - Update to 3.3.10.1
* Wed May 25 2011 tittiatcoke@gmail.com
  - Update to 3.3.10.0
* Wed May 25 2011 tittiatcoke@gmail.com
  - Update to 3.3.9.3
* Fri May 06 2011 tittiatcoke@gmail.com
  - Update to 3.3.4.0
* Thu Apr 28 2011 tittiatcoke@gmail.com
  - Update to 3.3.2.0
* Fri Apr 22 2011 tittiatcoke@gmail.com
  - Update to 3.3.1.0
* Mon Apr 18 2011 tittiatcoke@gmail.com
  - Update to 3.2.10.0
* Tue Apr 12 2011 tittiatcoke@gmail.com
  - Update to 3.2.9.1
* Fri Apr 08 2011 tittiatcoke@gmail.com
  - Update to 3.2.8.3
* Thu Mar 31 2011 tittiatcoke@gmail.com
  - Update to 3.2.6.0
* Mon Mar 28 2011 tittiatcoke@gmail.com
  - Update to 3.2.5.0
* Fri Mar 18 2011 tittiatcoke@gmail.com
  - Update to 3.2.3.1
* Wed Mar 16 2011 tittiatcoke@gmail.com
  - Update to 3.2.2.1
* Fri Mar 11 2011 tittiatcoke@gmail.com
  - Update to 3.2.1.1
* Wed Mar 09 2011 tittiatcoke@gmail.com
  - Update to 3.2.0.2
* Fri Mar 04 2011 tittiatcoke@gmail.com
  - Update to 3.1.8.0
* Wed Mar 02 2011 tittiatcoke@gmail.com
  - Update to 3.1.7.0
* Sun Feb 27 2011 tittiatcoke@gmail.com
  - Update to 3.1.6.1
* Sun Feb 27 2011 tittiatcoke@gmail.com
  - Update to 3.1.6.0
* Wed Feb 16 2011 tittiatcoke@gmail.com
  - Update to 3.1.5.0
* Thu Jan 20 2011 tittiatcoke@gmail.com
  - Update to 3.0.9.0
* Wed Jan 05 2011 rwooninck@opensuse.org
  - Update to 3.0.6.0
* Tue Dec 21 2010 rwooninck@opensuse.org
  - update to 3.0.4.1
* Fri Dec 17 2010 tittiatcoke@gmail.com
  - Update to 3.0.3.0
* Tue Dec 07 2010 tittiatcoke@gmail.com
  - update to 3.0.0.1
* Wed Dec 01 2010 tittiatcoke@gmail.com
  - update to 2.5.9.1
* Thu Nov 25 2010 tittiatcoke@gmail.com
  - update to 2.5.8.0
    * new package (libv8-2) to follow package specifications.
* Thu Nov 11 2010 tittiatcoke@gmail.com
  - update to 2.5.6.0
* Wed Nov 03 2010 tittiatcoke@gmail.com
  - update to 2.5.3.0
* Wed Oct 27 2010 tittiatcoke@gmail.com
  - Update to 2.5.2.0
* Fri Oct 22 2010 tittiatcoke@gmail.com
  - update to 2.5.1.0
* Fri Oct 15 2010 tittiatcoke@gmail.com
  - Update to 2.4.9.0

Files

/usr/include/v8
/usr/include/v8/accessors.h
/usr/include/v8/allocation-inl.h
/usr/include/v8/allocation.h
/usr/include/v8/api.h
/usr/include/v8/apiutils.h
/usr/include/v8/arguments.h
/usr/include/v8/assembler.h
/usr/include/v8/ast.h
/usr/include/v8/atomicops.h
/usr/include/v8/atomicops_internals_arm_gcc.h
/usr/include/v8/atomicops_internals_mips_gcc.h
/usr/include/v8/atomicops_internals_x86_gcc.h
/usr/include/v8/atomicops_internals_x86_macosx.h
/usr/include/v8/atomicops_internals_x86_msvc.h
/usr/include/v8/bignum-dtoa.h
/usr/include/v8/bignum.h
/usr/include/v8/bootstrapper.h
/usr/include/v8/builtins.h
/usr/include/v8/bytecodes-irregexp.h
/usr/include/v8/cached-powers.h
/usr/include/v8/char-predicates-inl.h
/usr/include/v8/char-predicates.h
/usr/include/v8/checks.h
/usr/include/v8/circular-queue-inl.h
/usr/include/v8/circular-queue.h
/usr/include/v8/code-stubs.h
/usr/include/v8/code.h
/usr/include/v8/codegen.h
/usr/include/v8/compilation-cache.h
/usr/include/v8/compiler-intrinsics.h
/usr/include/v8/compiler.h
/usr/include/v8/contexts.h
/usr/include/v8/conversions-inl.h
/usr/include/v8/conversions.h
/usr/include/v8/counters.h
/usr/include/v8/cpu-profiler-inl.h
/usr/include/v8/cpu-profiler.h
/usr/include/v8/cpu.h
/usr/include/v8/d8-debug.h
/usr/include/v8/d8.h
/usr/include/v8/data-flow.h
/usr/include/v8/dateparser-inl.h
/usr/include/v8/dateparser.h
/usr/include/v8/debug-agent.h
/usr/include/v8/debug.h
/usr/include/v8/deoptimizer.h
/usr/include/v8/disasm.h
/usr/include/v8/disassembler.h
/usr/include/v8/diy-fp.h
/usr/include/v8/double.h
/usr/include/v8/dtoa.h
/usr/include/v8/elements.h
/usr/include/v8/execution.h
/usr/include/v8/factory.h
/usr/include/v8/fast-dtoa.h
/usr/include/v8/fixed-dtoa.h
/usr/include/v8/flag-definitions.h
/usr/include/v8/flags.h
/usr/include/v8/frames-inl.h
/usr/include/v8/frames.h
/usr/include/v8/full-codegen.h
/usr/include/v8/func-name-inferrer.h
/usr/include/v8/gdb-jit.h
/usr/include/v8/global-handles.h
/usr/include/v8/globals.h
/usr/include/v8/handles-inl.h
/usr/include/v8/handles.h
/usr/include/v8/hashmap.h
/usr/include/v8/heap-inl.h
/usr/include/v8/heap-profiler.h
/usr/include/v8/heap.h
/usr/include/v8/hydrogen-instructions.h
/usr/include/v8/hydrogen.h
/usr/include/v8/ic-inl.h
/usr/include/v8/ic.h
/usr/include/v8/incremental-marking-inl.h
/usr/include/v8/incremental-marking.h
/usr/include/v8/inspector.h
/usr/include/v8/interpreter-irregexp.h
/usr/include/v8/isolate-inl.h
/usr/include/v8/isolate.h
/usr/include/v8/json-parser.h
/usr/include/v8/jsregexp.h
/usr/include/v8/list-inl.h
/usr/include/v8/list.h
/usr/include/v8/lithium-allocator-inl.h
/usr/include/v8/lithium-allocator.h
/usr/include/v8/lithium.h
/usr/include/v8/liveedit.h
/usr/include/v8/liveobjectlist-inl.h
/usr/include/v8/liveobjectlist.h
/usr/include/v8/log-inl.h
/usr/include/v8/log-utils.h
/usr/include/v8/log.h
/usr/include/v8/macro-assembler.h
/usr/include/v8/mark-compact-inl.h
/usr/include/v8/mark-compact.h
/usr/include/v8/messages.h
/usr/include/v8/misc-intrinsics.h
/usr/include/v8/natives.h
/usr/include/v8/objects-inl.h
/usr/include/v8/objects-visiting-inl.h
/usr/include/v8/objects-visiting.h
/usr/include/v8/objects.h
/usr/include/v8/parser.h
/usr/include/v8/platform-tls-mac.h
/usr/include/v8/platform-tls-win32.h
/usr/include/v8/platform-tls.h
/usr/include/v8/platform.h
/usr/include/v8/preparse-data-format.h
/usr/include/v8/preparse-data.h
/usr/include/v8/preparser.h
/usr/include/v8/prettyprinter.h
/usr/include/v8/profile-generator-inl.h
/usr/include/v8/profile-generator.h
/usr/include/v8/property-details.h
/usr/include/v8/property.h
/usr/include/v8/regexp-macro-assembler-irregexp-inl.h
/usr/include/v8/regexp-macro-assembler-irregexp.h
/usr/include/v8/regexp-macro-assembler-tracer.h
/usr/include/v8/regexp-macro-assembler.h
/usr/include/v8/regexp-stack.h
/usr/include/v8/rewriter.h
/usr/include/v8/runtime-profiler.h
/usr/include/v8/runtime.h
/usr/include/v8/safepoint-table.h
/usr/include/v8/scanner-character-streams.h
/usr/include/v8/scanner.h
/usr/include/v8/scopeinfo.h
/usr/include/v8/scopes.h
/usr/include/v8/serialize.h
/usr/include/v8/simulator.h
/usr/include/v8/small-pointer-list.h
/usr/include/v8/smart-array-pointer.h
/usr/include/v8/snapshot.h
/usr/include/v8/spaces-inl.h
/usr/include/v8/spaces.h
/usr/include/v8/splay-tree-inl.h
/usr/include/v8/splay-tree.h
/usr/include/v8/store-buffer-inl.h
/usr/include/v8/store-buffer.h
/usr/include/v8/string-search.h
/usr/include/v8/string-stream.h
/usr/include/v8/strtod.h
/usr/include/v8/stub-cache.h
/usr/include/v8/token.h
/usr/include/v8/type-info.h
/usr/include/v8/unbound-queue-inl.h
/usr/include/v8/unbound-queue.h
/usr/include/v8/unicode-inl.h
/usr/include/v8/unicode.h
/usr/include/v8/utils-inl.h
/usr/include/v8/utils.h
/usr/include/v8/v8-counters.h
/usr/include/v8/v8.h
/usr/include/v8/v8checks.h
/usr/include/v8/v8conversions.h
/usr/include/v8/v8globals.h
/usr/include/v8/v8memory.h
/usr/include/v8/v8threads.h
/usr/include/v8/v8utils.h
/usr/include/v8/variables.h
/usr/include/v8/version.h
/usr/include/v8/vm-state-inl.h
/usr/include/v8/vm-state.h
/usr/include/v8/win32-headers.h
/usr/include/v8/win32-math.h
/usr/include/v8/x64
/usr/include/v8/x64/assembler-x64-inl.h
/usr/include/v8/x64/assembler-x64.h
/usr/include/v8/x64/code-stubs-x64.h
/usr/include/v8/x64/codegen-x64.h
/usr/include/v8/x64/frames-x64.h
/usr/include/v8/x64/lithium-codegen-x64.h
/usr/include/v8/x64/lithium-gap-resolver-x64.h
/usr/include/v8/x64/lithium-x64.h
/usr/include/v8/x64/macro-assembler-x64.h
/usr/include/v8/x64/regexp-macro-assembler-x64.h
/usr/include/v8/x64/simulator-x64.h
/usr/include/v8/zone-inl.h
/usr/include/v8/zone.h


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri May 24 03:06:10 2013