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

Side by Side Diff: src/contexts.h

Issue 7618040: Version 3.5.5. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
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/code-stubs.cc ('k') | src/contexts.cc » ('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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 return map == map->GetHeap()->function_context_map(); 288 return map == map->GetHeap()->function_context_map();
289 } 289 }
290 bool IsCatchContext() { 290 bool IsCatchContext() {
291 Map* map = this->map(); 291 Map* map = this->map();
292 return map == map->GetHeap()->catch_context_map(); 292 return map == map->GetHeap()->catch_context_map();
293 } 293 }
294 bool IsWithContext() { 294 bool IsWithContext() {
295 Map* map = this->map(); 295 Map* map = this->map();
296 return map == map->GetHeap()->with_context_map(); 296 return map == map->GetHeap()->with_context_map();
297 } 297 }
298 bool IsBlockContext() {
299 Map* map = this->map();
300 return map == map->GetHeap()->block_context_map();
301 }
298 302
299 // Tells whether the global context is marked with out of memory. 303 // Tells whether the global context is marked with out of memory.
300 inline bool has_out_of_memory(); 304 inline bool has_out_of_memory();
301 305
302 // Mark the global context with out of memory. 306 // Mark the global context with out of memory.
303 inline void mark_out_of_memory(); 307 inline void mark_out_of_memory();
304 308
305 // The exception holder is the object used as a with object in 309 // The exception holder is the object used as a with object in
306 // the implementation of a catch block. 310 // the implementation of a catch block.
307 bool is_exception_holder(Object* object) { 311 bool is_exception_holder(Object* object) {
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 #ifdef DEBUG 391 #ifdef DEBUG
388 // Bootstrapping-aware type checks. 392 // Bootstrapping-aware type checks.
389 static bool IsBootstrappingOrContext(Object* object); 393 static bool IsBootstrappingOrContext(Object* object);
390 static bool IsBootstrappingOrGlobalObject(Object* object); 394 static bool IsBootstrappingOrGlobalObject(Object* object);
391 #endif 395 #endif
392 }; 396 };
393 397
394 } } // namespace v8::internal 398 } } // namespace v8::internal
395 399
396 #endif // V8_CONTEXTS_H_ 400 #endif // V8_CONTEXTS_H_
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/contexts.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698