v8/test/cctest/test-feedback-vector.h
ishell 90998947bc Distinction between FeedbackVectorICSlot and FeedbackVectorSlot eliminated.
This CL also allows to use arbitrary number of feedback vector elements for particular slot kind.

Review URL: https://codereview.chromium.org/1370303004

Cr-Commit-Position: refs/heads/master@{#31050}
2015-10-01 13:48:19 +00:00

46 lines
1.2 KiB
C++

// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_TEST_FEEDBACK_VECTOR_H_
#define V8_TEST_FEEDBACK_VECTOR_H_
#include "src/objects.h"
namespace v8 {
namespace internal {
// Helper class that allows to write tests in a slot size independent manner.
// Use helper.slot(X) to get X'th slot identifier.
class FeedbackVectorHelper {
public:
explicit FeedbackVectorHelper(Handle<TypeFeedbackVector> vector)
: vector_(vector) {
int slot_count = vector->Slots();
slots_.reserve(slot_count);
TypeFeedbackMetadataIterator iter(vector);
while (iter.HasNext()) {
FeedbackVectorSlot slot = iter.Next();
slots_.push_back(slot);
}
}
Handle<TypeFeedbackVector> vector() { return vector_; }
// Returns slot identifier by numerical index.
FeedbackVectorSlot slot(int index) const { return slots_[index]; }
// Returns the number of slots in the feedback vector.
int slot_count() const { return static_cast<int>(slots_.size()); }
private:
Handle<TypeFeedbackVector> vector_;
std::vector<FeedbackVectorSlot> slots_;
};
} // namespace internal
} // namespace v8
#endif