Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(698)

Side by Side Diff: include/v8.h

Issue 1267493006: Remove JSFunctionResultCache. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/bailout-reason.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** \mainpage V8 API Reference Guide 5 /** \mainpage V8 API Reference Guide
6 * 6 *
7 * V8 is Google's open source JavaScript engine. 7 * V8 is Google's open source JavaScript engine.
8 * 8 *
9 * This set of documents provides reference material generated from the 9 * This set of documents provides reference material generated from the
10 * V8 header file, include/v8.h. 10 * V8 header file, include/v8.h.
(...skipping 6895 matching lines...) Expand 10 before | Expand all | Expand 10 after
6906 static const int kHeapObjectMapOffset = 0; 6906 static const int kHeapObjectMapOffset = 0;
6907 static const int kMapInstanceTypeAndBitFieldOffset = 6907 static const int kMapInstanceTypeAndBitFieldOffset =
6908 1 * kApiPointerSize + kApiIntSize; 6908 1 * kApiPointerSize + kApiIntSize;
6909 static const int kStringResourceOffset = 3 * kApiPointerSize; 6909 static const int kStringResourceOffset = 3 * kApiPointerSize;
6910 6910
6911 static const int kOddballKindOffset = 3 * kApiPointerSize; 6911 static const int kOddballKindOffset = 3 * kApiPointerSize;
6912 static const int kForeignAddressOffset = kApiPointerSize; 6912 static const int kForeignAddressOffset = kApiPointerSize;
6913 static const int kJSObjectHeaderSize = 3 * kApiPointerSize; 6913 static const int kJSObjectHeaderSize = 3 * kApiPointerSize;
6914 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize; 6914 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize;
6915 static const int kContextHeaderSize = 2 * kApiPointerSize; 6915 static const int kContextHeaderSize = 2 * kApiPointerSize;
6916 static const int kContextEmbedderDataIndex = 87; 6916 static const int kContextEmbedderDataIndex = 86;
6917 static const int kFullStringRepresentationMask = 0x07; 6917 static const int kFullStringRepresentationMask = 0x07;
6918 static const int kStringEncodingMask = 0x4; 6918 static const int kStringEncodingMask = 0x4;
6919 static const int kExternalTwoByteRepresentationTag = 0x02; 6919 static const int kExternalTwoByteRepresentationTag = 0x02;
6920 static const int kExternalOneByteRepresentationTag = 0x06; 6920 static const int kExternalOneByteRepresentationTag = 0x06;
6921 6921
6922 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize; 6922 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize;
6923 static const int kAmountOfExternalAllocatedMemoryOffset = 6923 static const int kAmountOfExternalAllocatedMemoryOffset =
6924 4 * kApiPointerSize; 6924 4 * kApiPointerSize;
6925 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = 6925 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset =
6926 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; 6926 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size;
(...skipping 1385 matching lines...) Expand 10 before | Expand all | Expand 10 after
8312 */ 8312 */
8313 8313
8314 8314
8315 } // namespace v8 8315 } // namespace v8
8316 8316
8317 8317
8318 #undef TYPE_CHECK 8318 #undef TYPE_CHECK
8319 8319
8320 8320
8321 #endif // V8_H_ 8321 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/bailout-reason.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698