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

Side by Side Diff: include/v8.h

Issue 1027283004: [es6] do not add caller/arguments to ES6 function definitions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove unneeded bits Created 5 years, 9 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/bootstrapper.cc » ('j') | src/bootstrapper.cc » ('J')
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 6604 matching lines...) Expand 10 before | Expand all | Expand 10 after
6615 static const int kHeapObjectMapOffset = 0; 6615 static const int kHeapObjectMapOffset = 0;
6616 static const int kMapInstanceTypeAndBitFieldOffset = 6616 static const int kMapInstanceTypeAndBitFieldOffset =
6617 1 * kApiPointerSize + kApiIntSize; 6617 1 * kApiPointerSize + kApiIntSize;
6618 static const int kStringResourceOffset = 3 * kApiPointerSize; 6618 static const int kStringResourceOffset = 3 * kApiPointerSize;
6619 6619
6620 static const int kOddballKindOffset = 3 * kApiPointerSize; 6620 static const int kOddballKindOffset = 3 * kApiPointerSize;
6621 static const int kForeignAddressOffset = kApiPointerSize; 6621 static const int kForeignAddressOffset = kApiPointerSize;
6622 static const int kJSObjectHeaderSize = 3 * kApiPointerSize; 6622 static const int kJSObjectHeaderSize = 3 * kApiPointerSize;
6623 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize; 6623 static const int kFixedArrayHeaderSize = 2 * kApiPointerSize;
6624 static const int kContextHeaderSize = 2 * kApiPointerSize; 6624 static const int kContextHeaderSize = 2 * kApiPointerSize;
6625 static const int kContextEmbedderDataIndex = 76; 6625 static const int kContextEmbedderDataIndex = 78;
6626 static const int kFullStringRepresentationMask = 0x07; 6626 static const int kFullStringRepresentationMask = 0x07;
6627 static const int kStringEncodingMask = 0x4; 6627 static const int kStringEncodingMask = 0x4;
6628 static const int kExternalTwoByteRepresentationTag = 0x02; 6628 static const int kExternalTwoByteRepresentationTag = 0x02;
6629 static const int kExternalOneByteRepresentationTag = 0x06; 6629 static const int kExternalOneByteRepresentationTag = 0x06;
6630 6630
6631 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize; 6631 static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize;
6632 static const int kAmountOfExternalAllocatedMemoryOffset = 6632 static const int kAmountOfExternalAllocatedMemoryOffset =
6633 4 * kApiPointerSize; 6633 4 * kApiPointerSize;
6634 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset = 6634 static const int kAmountOfExternalAllocatedMemoryAtLastGlobalGCOffset =
6635 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size; 6635 kAmountOfExternalAllocatedMemoryOffset + kApiInt64Size;
(...skipping 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after
7975 */ 7975 */
7976 7976
7977 7977
7978 } // namespace v8 7978 } // namespace v8
7979 7979
7980 7980
7981 #undef TYPE_CHECK 7981 #undef TYPE_CHECK
7982 7982
7983 7983
7984 #endif // V8_H_ 7984 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/bootstrapper.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698