Removed a few dead template functions.
R=hpayer@chromium.org Review URL: https://codereview.chromium.org/583833006 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24064 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
4120dd8de2
commit
bea452f2e4
@ -1728,27 +1728,6 @@ class HGraphBuilder {
|
|||||||
bool finished_;
|
bool finished_;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <class A, class P1>
|
|
||||||
void DeoptimizeIf(P1 p1, char* const reason) {
|
|
||||||
IfBuilder builder(this);
|
|
||||||
builder.If<A>(p1);
|
|
||||||
builder.ThenDeopt(reason);
|
|
||||||
}
|
|
||||||
|
|
||||||
template <class A, class P1, class P2>
|
|
||||||
void DeoptimizeIf(P1 p1, P2 p2, const char* reason) {
|
|
||||||
IfBuilder builder(this);
|
|
||||||
builder.If<A>(p1, p2);
|
|
||||||
builder.ThenDeopt(reason);
|
|
||||||
}
|
|
||||||
|
|
||||||
template <class A, class P1, class P2, class P3>
|
|
||||||
void DeoptimizeIf(P1 p1, P2 p2, P3 p3, const char* reason) {
|
|
||||||
IfBuilder builder(this);
|
|
||||||
builder.If<A>(p1, p2, p3);
|
|
||||||
builder.ThenDeopt(reason);
|
|
||||||
}
|
|
||||||
|
|
||||||
HValue* BuildNewElementsCapacity(HValue* old_capacity);
|
HValue* BuildNewElementsCapacity(HValue* old_capacity);
|
||||||
|
|
||||||
class JSArrayBuilder FINAL {
|
class JSArrayBuilder FINAL {
|
||||||
|
Loading…
Reference in New Issue
Block a user