Cleanup unused code from the type oracle.
Review URL: http://codereview.chromium.org/6135004 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6514 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
af81c537b2
commit
d82332ebb7
14
src/ast.cc
14
src/ast.cc
@ -665,19 +665,11 @@ void Call::RecordTypeFeedback(TypeFeedbackOracle* oracle) {
|
||||
}
|
||||
|
||||
|
||||
void BinaryOperation::RecordTypeFeedback(TypeFeedbackOracle* oracle) {
|
||||
TypeInfo left = oracle->BinaryType(this, TypeFeedbackOracle::LEFT);
|
||||
TypeInfo right = oracle->BinaryType(this, TypeFeedbackOracle::RIGHT);
|
||||
is_smi_only_ = left.IsSmi() && right.IsSmi();
|
||||
}
|
||||
|
||||
|
||||
void CompareOperation::RecordTypeFeedback(TypeFeedbackOracle* oracle) {
|
||||
TypeInfo left = oracle->CompareType(this, TypeFeedbackOracle::LEFT);
|
||||
TypeInfo right = oracle->CompareType(this, TypeFeedbackOracle::RIGHT);
|
||||
if (left.IsSmi() && right.IsSmi()) {
|
||||
TypeInfo info = oracle->CompareType(this);
|
||||
if (info.IsSmi()) {
|
||||
compare_type_ = SMI_ONLY;
|
||||
} else if (left.IsNonPrimitive() && right.IsNonPrimitive()) {
|
||||
} else if (info.IsNonPrimitive()) {
|
||||
compare_type_ = OBJECT_ONLY;
|
||||
} else {
|
||||
ASSERT(compare_type_ == NONE);
|
||||
|
@ -1398,7 +1398,7 @@ class BinaryOperation: public Expression {
|
||||
Expression* left,
|
||||
Expression* right,
|
||||
int pos)
|
||||
: op_(op), left_(left), right_(right), pos_(pos), is_smi_only_(false) {
|
||||
: op_(op), left_(left), right_(right), pos_(pos) {
|
||||
ASSERT(Token::IsBinaryOp(op));
|
||||
right_id_ = (op == Token::AND || op == Token::OR)
|
||||
? static_cast<int>(GetNextId())
|
||||
@ -1419,10 +1419,6 @@ class BinaryOperation: public Expression {
|
||||
Expression* right() const { return right_; }
|
||||
int position() const { return pos_; }
|
||||
|
||||
// Type feedback information.
|
||||
void RecordTypeFeedback(TypeFeedbackOracle* oracle);
|
||||
bool IsSmiOnly() const { return is_smi_only_; }
|
||||
|
||||
// Bailout support.
|
||||
int RightId() const { return right_id_; }
|
||||
|
||||
@ -1431,7 +1427,6 @@ class BinaryOperation: public Expression {
|
||||
Expression* left_;
|
||||
Expression* right_;
|
||||
int pos_;
|
||||
bool is_smi_only_;
|
||||
// The short-circuit logical operations have an AST ID for their
|
||||
// right-hand subexpression.
|
||||
int right_id_;
|
||||
|
@ -3390,7 +3390,6 @@ void HGraphBuilder::HandleCompoundAssignment(Assignment* expr) {
|
||||
// We have a second position recorded in the FullCodeGenerator to have
|
||||
// type feedback for the binary operation.
|
||||
BinaryOperation* operation = expr->binary_operation();
|
||||
operation->RecordTypeFeedback(oracle());
|
||||
|
||||
if (var != NULL) {
|
||||
if (!var->is_global() && !var->IsStackAllocated()) {
|
||||
@ -4814,7 +4813,7 @@ HInstruction* HGraphBuilder::BuildBinaryOperation(BinaryOperation* expr,
|
||||
default:
|
||||
UNREACHABLE();
|
||||
}
|
||||
TypeInfo info = oracle()->BinaryType(expr, TypeFeedbackOracle::RESULT);
|
||||
TypeInfo info = oracle()->BinaryType(expr);
|
||||
// If we hit an uninitialized binary op stub we will get type info
|
||||
// for a smi operation. If one of the operands is a constant string
|
||||
// do not generate code assuming it is a smi operation.
|
||||
@ -4965,7 +4964,7 @@ void HGraphBuilder::VisitCompareOperation(CompareOperation* expr) {
|
||||
HValue* left = Pop();
|
||||
Token::Value op = expr->op();
|
||||
|
||||
TypeInfo info = oracle()->CompareType(expr, TypeFeedbackOracle::RESULT);
|
||||
TypeInfo info = oracle()->CompareType(expr);
|
||||
HInstruction* instr = NULL;
|
||||
if (op == Token::INSTANCEOF) {
|
||||
// Check to see if the rhs of the instanceof is a global function not
|
||||
|
@ -171,7 +171,7 @@ bool TypeFeedbackOracle::LoadIsBuiltin(Property* expr, Builtins::Name id) {
|
||||
}
|
||||
|
||||
|
||||
TypeInfo TypeFeedbackOracle::CompareType(CompareOperation* expr, Side side) {
|
||||
TypeInfo TypeFeedbackOracle::CompareType(CompareOperation* expr) {
|
||||
Handle<Object> object = GetElement(map_, expr->position());
|
||||
TypeInfo unknown = TypeInfo::Unknown();
|
||||
if (!object->IsCode()) return unknown;
|
||||
@ -198,7 +198,7 @@ TypeInfo TypeFeedbackOracle::CompareType(CompareOperation* expr, Side side) {
|
||||
}
|
||||
|
||||
|
||||
TypeInfo TypeFeedbackOracle::BinaryType(BinaryOperation* expr, Side side) {
|
||||
TypeInfo TypeFeedbackOracle::BinaryType(BinaryOperation* expr) {
|
||||
Handle<Object> object = GetElement(map_, expr->position());
|
||||
TypeInfo unknown = TypeInfo::Unknown();
|
||||
if (!object->IsCode()) return unknown;
|
||||
|
@ -236,12 +236,6 @@ class CaseClause;
|
||||
|
||||
class TypeFeedbackOracle BASE_EMBEDDED {
|
||||
public:
|
||||
enum Side {
|
||||
LEFT,
|
||||
RIGHT,
|
||||
RESULT
|
||||
};
|
||||
|
||||
TypeFeedbackOracle(Handle<Code> code, Handle<Context> global_context);
|
||||
|
||||
bool LoadIsMonomorphic(Property* expr);
|
||||
@ -261,8 +255,8 @@ class TypeFeedbackOracle BASE_EMBEDDED {
|
||||
bool LoadIsBuiltin(Property* expr, Builtins::Name id);
|
||||
|
||||
// Get type information for arithmetic operations and compares.
|
||||
TypeInfo BinaryType(BinaryOperation* expr, Side side);
|
||||
TypeInfo CompareType(CompareOperation* expr, Side side);
|
||||
TypeInfo BinaryType(BinaryOperation* expr);
|
||||
TypeInfo CompareType(CompareOperation* expr);
|
||||
TypeInfo SwitchType(CaseClause* clause);
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user