OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 } | 77 } |
78 | 78 |
79 Effects EnterEffects() { | 79 Effects EnterEffects() { |
80 store_ = store_.Push(); | 80 store_ = store_.Push(); |
81 return store_.Top(); | 81 return store_.Top(); |
82 } | 82 } |
83 void ExitEffects() { store_ = store_.Pop(); } | 83 void ExitEffects() { store_ = store_.Pop(); } |
84 | 84 |
85 int variable_index(Variable* var) { | 85 int variable_index(Variable* var) { |
86 return var->IsStackLocal() ? var->index() : | 86 return var->IsStackLocal() ? var->index() : |
87 var->IsParameter() ? -var->index() : kNoVar; | 87 var->IsParameter() ? -var->index() - 1 : kNoVar; |
88 } | 88 } |
89 | 89 |
90 void VisitDeclarations(ZoneList<Declaration*>* declarations); | 90 void VisitDeclarations(ZoneList<Declaration*>* declarations); |
91 void VisitStatements(ZoneList<Statement*>* statements); | 91 void VisitStatements(ZoneList<Statement*>* statements); |
92 | 92 |
93 #define DECLARE_VISIT(type) virtual void Visit##type(type* node); | 93 #define DECLARE_VISIT(type) virtual void Visit##type(type* node); |
94 AST_NODE_LIST(DECLARE_VISIT) | 94 AST_NODE_LIST(DECLARE_VISIT) |
95 #undef DECLARE_VISIT | 95 #undef DECLARE_VISIT |
96 | 96 |
97 DISALLOW_COPY_AND_ASSIGN(AstTyper); | 97 DISALLOW_COPY_AND_ASSIGN(AstTyper); |
98 }; | 98 }; |
99 | 99 |
100 } } // namespace v8::internal | 100 } } // namespace v8::internal |
101 | 101 |
102 #endif // V8_TYPING_H_ | 102 #endif // V8_TYPING_H_ |
OLD | NEW |