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

Side by Side Diff: src/hydrogen.h

Issue 19798002: Faster to number conversion (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix typefeedback on constant replacement Created 7 years, 5 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
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | src/hydrogen.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1111 Representation representation = Representation::Tagged()); 1111 Representation representation = Representation::Tagged());
1112 1112
1113 HStoreNamedField* AddStoreMapConstant(HValue *object, Handle<Map>); 1113 HStoreNamedField* AddStoreMapConstant(HValue *object, Handle<Map>);
1114 1114
1115 HLoadNamedField* AddLoadElements(HValue *object, HValue *typecheck = NULL); 1115 HLoadNamedField* AddLoadElements(HValue *object, HValue *typecheck = NULL);
1116 1116
1117 HLoadNamedField* AddLoadFixedArrayLength(HValue *object); 1117 HLoadNamedField* AddLoadFixedArrayLength(HValue *object);
1118 1118
1119 HValue* AddLoadJSBuiltin(Builtins::JavaScript builtin, HValue* context); 1119 HValue* AddLoadJSBuiltin(Builtins::JavaScript builtin, HValue* context);
1120 1120
1121 void BuildHydrogenBinaryOperation(BinaryOperation* expr);
Jakob Kummerow 2013/07/22 07:43:47 I don't see this defined or used anywhere.
oliv 2013/07/22 13:56:43 Done.
1122
1123 HValue* ConstantToNumber(HValue* value);
Jakob Kummerow 2013/07/22 07:43:47 I don't see this anywhere either.
oliv 2013/07/22 13:56:43 Done.
1124
1125 HValue* TruncateToNumber(HValue* value, Handle<Type>* expected);
1126
1127 void PushAndAdd(HInstruction* instr);
1128
1121 enum SoftDeoptimizeMode { 1129 enum SoftDeoptimizeMode {
1122 MUST_EMIT_SOFT_DEOPT, 1130 MUST_EMIT_SOFT_DEOPT,
1123 CAN_OMIT_SOFT_DEOPT 1131 CAN_OMIT_SOFT_DEOPT
1124 }; 1132 };
1125 1133
1126 void AddSoftDeoptimize(SoftDeoptimizeMode mode = CAN_OMIT_SOFT_DEOPT); 1134 void AddSoftDeoptimize(SoftDeoptimizeMode mode = CAN_OMIT_SOFT_DEOPT);
1127 1135
1128 class IfBuilder { 1136 class IfBuilder {
1129 public: 1137 public:
1130 explicit IfBuilder(HGraphBuilder* builder, 1138 explicit IfBuilder(HGraphBuilder* builder,
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
1659 HBasicBlock* false_block); 1667 HBasicBlock* false_block);
1660 1668
1661 // Visit an argument subexpression and emit a push to the outgoing arguments. 1669 // Visit an argument subexpression and emit a push to the outgoing arguments.
1662 void VisitArgument(Expression* expr); 1670 void VisitArgument(Expression* expr);
1663 1671
1664 void VisitArgumentList(ZoneList<Expression*>* arguments); 1672 void VisitArgumentList(ZoneList<Expression*>* arguments);
1665 1673
1666 // Visit a list of expressions from left to right, each in a value context. 1674 // Visit a list of expressions from left to right, each in a value context.
1667 void VisitExpressions(ZoneList<Expression*>* exprs); 1675 void VisitExpressions(ZoneList<Expression*>* exprs);
1668 1676
1669 void PushAndAdd(HInstruction* instr);
1670
1671 // Remove the arguments from the bailout environment and emit instructions 1677 // Remove the arguments from the bailout environment and emit instructions
1672 // to push them as outgoing parameters. 1678 // to push them as outgoing parameters.
1673 template <class Instruction> HInstruction* PreProcessCall(Instruction* call); 1679 template <class Instruction> HInstruction* PreProcessCall(Instruction* call);
1674 1680
1675 void SetUpScope(Scope* scope); 1681 void SetUpScope(Scope* scope);
1676 virtual void VisitStatements(ZoneList<Statement*>* statements); 1682 virtual void VisitStatements(ZoneList<Statement*>* statements);
1677 1683
1678 #define DECLARE_VISIT(type) virtual void Visit##type(type* node); 1684 #define DECLARE_VISIT(type) virtual void Visit##type(type* node);
1679 AST_NODE_LIST(DECLARE_VISIT) 1685 AST_NODE_LIST(DECLARE_VISIT)
1680 #undef DECLARE_VISIT 1686 #undef DECLARE_VISIT
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
2096 EmbeddedVector<char, 64> filename_; 2102 EmbeddedVector<char, 64> filename_;
2097 HeapStringAllocator string_allocator_; 2103 HeapStringAllocator string_allocator_;
2098 StringStream trace_; 2104 StringStream trace_;
2099 int indent_; 2105 int indent_;
2100 }; 2106 };
2101 2107
2102 2108
2103 } } // namespace v8::internal 2109 } } // namespace v8::internal
2104 2110
2105 #endif // V8_HYDROGEN_H_ 2111 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | src/hydrogen.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698