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

Side by Side Diff: src/objects.h

Issue 10417030: Decoupling MarkDescriptorArray as much as possible from the ContentArray. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressing comments Created 8 years, 7 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 2456 matching lines...) Expand 10 before | Expand all | Expand 10 after
2467 2467
2468 // Initialize or change the enum cache, 2468 // Initialize or change the enum cache,
2469 // using the supplied storage for the small "bridge". 2469 // using the supplied storage for the small "bridge".
2470 void SetEnumCache(FixedArray* bridge_storage, 2470 void SetEnumCache(FixedArray* bridge_storage,
2471 FixedArray* new_cache, 2471 FixedArray* new_cache,
2472 Object* new_index_cache); 2472 Object* new_index_cache);
2473 2473
2474 // Accessors for fetching instance descriptor at descriptor number. 2474 // Accessors for fetching instance descriptor at descriptor number.
2475 inline String* GetKey(int descriptor_number); 2475 inline String* GetKey(int descriptor_number);
2476 inline Object* GetValue(int descriptor_number); 2476 inline Object* GetValue(int descriptor_number);
2477 inline Object** GetValueSlot(int descriptor_number);
2477 inline PropertyDetails GetDetails(int descriptor_number); 2478 inline PropertyDetails GetDetails(int descriptor_number);
2479
2480 inline Object* RawGetValue(int descriptor_number);
2481 inline PropertyDetails RawGetDetails(int descriptor_number);
2482
2478 inline PropertyType GetType(int descriptor_number); 2483 inline PropertyType GetType(int descriptor_number);
2479 inline int GetFieldIndex(int descriptor_number); 2484 inline int GetFieldIndex(int descriptor_number);
2480 inline JSFunction* GetConstantFunction(int descriptor_number); 2485 inline JSFunction* GetConstantFunction(int descriptor_number);
2481 inline Object* GetCallbacksObject(int descriptor_number); 2486 inline Object* GetCallbacksObject(int descriptor_number);
2482 inline AccessorDescriptor* GetCallbacks(int descriptor_number); 2487 inline AccessorDescriptor* GetCallbacks(int descriptor_number);
2483 inline bool IsProperty(int descriptor_number); 2488 inline bool IsProperty(int descriptor_number);
2484 inline bool IsTransitionOnly(int descriptor_number); 2489 inline bool IsTransitionOnly(int descriptor_number);
2485 inline bool IsNullDescriptor(int descriptor_number); 2490 inline bool IsNullDescriptor(int descriptor_number);
2486 2491
2492 // WhitenessWitness is used to prove that a specific descriptor array is white
2493 // (unmarked), so incremental write barriers can be skipped because the
2494 // marking invariant cannot be broken and slots pointing into evacuation
2495 // candidates will be discovered when the object is scanned.A witness is
2496 // always stack-allocated right after creating a descriptor array. By
2497 // allocating a witness, incremental marking is globally disabled. The witness
2498 // is then passed along wherever needed to statically prove that the
2499 // descriptor array is known to be white.
2487 class WhitenessWitness { 2500 class WhitenessWitness {
2488 public: 2501 public:
2489 inline explicit WhitenessWitness(DescriptorArray* array); 2502 inline explicit WhitenessWitness(DescriptorArray* array);
2490 inline ~WhitenessWitness(); 2503 inline ~WhitenessWitness();
2491 2504
2492 private: 2505 private:
2493 IncrementalMarking* marking_; 2506 IncrementalMarking* marking_;
2494 }; 2507 };
2495 2508
2496 // Accessor for complete descriptor. 2509 // Accessor for complete descriptor.
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
2643 static inline void NoIncrementalWriteBarrierSwap( 2656 static inline void NoIncrementalWriteBarrierSwap(
2644 FixedArray* array, int first, int second); 2657 FixedArray* array, int first, int second);
2645 2658
2646 // Swap descriptor first and second. 2659 // Swap descriptor first and second.
2647 inline void NoIncrementalWriteBarrierSwapDescriptors( 2660 inline void NoIncrementalWriteBarrierSwapDescriptors(
2648 int first, int second); 2661 int first, int second);
2649 2662
2650 FixedArray* GetContentArray() { 2663 FixedArray* GetContentArray() {
2651 return FixedArray::cast(get(kContentArrayIndex)); 2664 return FixedArray::cast(get(kContentArrayIndex));
2652 } 2665 }
2666 inline FixedArray* RawGetContentArray();
2653 DISALLOW_IMPLICIT_CONSTRUCTORS(DescriptorArray); 2667 DISALLOW_IMPLICIT_CONSTRUCTORS(DescriptorArray);
2654 }; 2668 };
2655 2669
2656 2670
2657 // HashTable is a subclass of FixedArray that implements a hash table 2671 // HashTable is a subclass of FixedArray that implements a hash table
2658 // that uses open addressing and quadratic probing. 2672 // that uses open addressing and quadratic probing.
2659 // 2673 //
2660 // In order for the quadratic probing to work, elements that have not 2674 // In order for the quadratic probing to work, elements that have not
2661 // yet been used and elements that have been deleted are 2675 // yet been used and elements that have been deleted are
2662 // distinguished. Probing continues when deleted elements are 2676 // distinguished. Probing continues when deleted elements are
(...skipping 5984 matching lines...) Expand 10 before | Expand all | Expand 10 after
8647 } else { 8661 } else {
8648 value &= ~(1 << bit_position); 8662 value &= ~(1 << bit_position);
8649 } 8663 }
8650 return value; 8664 return value;
8651 } 8665 }
8652 }; 8666 };
8653 8667
8654 } } // namespace v8::internal 8668 } } // namespace v8::internal
8655 8669
8656 #endif // V8_OBJECTS_H_ 8670 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/mark-compact.cc ('k') | src/objects.cc » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698