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

Side by Side Diff: src/v8globals.h

Issue 7523027: Provisional implementation of stack allocated catch variables. Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « src/scopes.cc ('k') | test/mjsunit/scope-calls-eval.js » ('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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 class OldSpace; 155 class OldSpace;
156 class Property; 156 class Property;
157 class Foreign; 157 class Foreign;
158 class RegExpNode; 158 class RegExpNode;
159 struct RegExpCompileData; 159 struct RegExpCompileData;
160 class RegExpTree; 160 class RegExpTree;
161 class RegExpCompiler; 161 class RegExpCompiler;
162 class RegExpVisitor; 162 class RegExpVisitor;
163 class Scope; 163 class Scope;
164 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo; 164 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo;
165 template<class Allocator = FreeStoreAllocationPolicy> class BlockInfo;
165 class SerializedScopeInfo; 166 class SerializedScopeInfo;
167 class SerializedBlockInfo;
166 class Script; 168 class Script;
167 class Slot; 169 class Slot;
168 class Smi; 170 class Smi;
169 template <typename Config, class Allocator = FreeStoreAllocationPolicy> 171 template <typename Config, class Allocator = FreeStoreAllocationPolicy>
170 class SplayTree; 172 class SplayTree;
171 class Statement; 173 class Statement;
172 class String; 174 class String;
173 class Struct; 175 class Struct;
174 class SwitchStatement; 176 class SwitchStatement;
175 class AstVisitor; 177 class AstVisitor;
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 static const uint32_t kNaNOrInfinityLowerBoundUpper32 = 0x7FF00000; 514 static const uint32_t kNaNOrInfinityLowerBoundUpper32 = 0x7FF00000;
513 515
514 const uint64_t kHoleNanInt64 = 516 const uint64_t kHoleNanInt64 =
515 (static_cast<uint64_t>(kHoleNanUpper32) << 32) | kHoleNanLower32; 517 (static_cast<uint64_t>(kHoleNanUpper32) << 32) | kHoleNanLower32;
516 const uint64_t kLastNonNaNInt64 = 518 const uint64_t kLastNonNaNInt64 =
517 (static_cast<uint64_t>(kNaNOrInfinityLowerBoundUpper32) << 32); 519 (static_cast<uint64_t>(kNaNOrInfinityLowerBoundUpper32) << 32);
518 520
519 } } // namespace v8::internal 521 } } // namespace v8::internal
520 522
521 #endif // V8_V8GLOBALS_H_ 523 #endif // V8_V8GLOBALS_H_
OLDNEW
« no previous file with comments | « src/scopes.cc ('k') | test/mjsunit/scope-calls-eval.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698