Delete unused DescriptorArray::Append with whitenesswitness
BUG= R=yangguo@chromium.org Review URL: https://codereview.chromium.org/501363002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23399 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
2a37ab79ad
commit
5164b9a473
@ -3052,27 +3052,6 @@ void DescriptorArray::Set(int descriptor_number, Descriptor* desc) {
|
||||
}
|
||||
|
||||
|
||||
void DescriptorArray::Append(Descriptor* desc,
|
||||
const WhitenessWitness& witness) {
|
||||
DisallowHeapAllocation no_gc;
|
||||
int descriptor_number = number_of_descriptors();
|
||||
SetNumberOfDescriptors(descriptor_number + 1);
|
||||
Set(descriptor_number, desc, witness);
|
||||
|
||||
uint32_t hash = desc->GetKey()->Hash();
|
||||
|
||||
int insertion;
|
||||
|
||||
for (insertion = descriptor_number; insertion > 0; --insertion) {
|
||||
Name* key = GetSortedKey(insertion - 1);
|
||||
if (key->Hash() <= hash) break;
|
||||
SetSortedKey(insertion, GetSortedKeyIndex(insertion - 1));
|
||||
}
|
||||
|
||||
SetSortedKey(insertion, descriptor_number);
|
||||
}
|
||||
|
||||
|
||||
void DescriptorArray::Append(Descriptor* desc) {
|
||||
DisallowHeapAllocation no_gc;
|
||||
int descriptor_number = number_of_descriptors();
|
||||
|
@ -3484,8 +3484,6 @@ class DescriptorArray: public FixedArray {
|
||||
Descriptor* desc,
|
||||
const WhitenessWitness&);
|
||||
|
||||
inline void Append(Descriptor* desc, const WhitenessWitness&);
|
||||
|
||||
// Swap first and second descriptor.
|
||||
inline void SwapSortedKeys(int first, int second);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user