OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 GENERATING, | 124 GENERATING, |
125 DONE, | 125 DONE, |
126 ABORTED | 126 ABORTED |
127 }; | 127 }; |
128 | 128 |
129 bool is_unused() const { return status_ == UNUSED; } | 129 bool is_unused() const { return status_ == UNUSED; } |
130 bool is_generating() const { return status_ == GENERATING; } | 130 bool is_generating() const { return status_ == GENERATING; } |
131 bool is_done() const { return status_ == DONE; } | 131 bool is_done() const { return status_ == DONE; } |
132 bool is_aborted() const { return status_ == ABORTED; } | 132 bool is_aborted() const { return status_ == ABORTED; } |
133 | 133 |
134 int strict_mode_flag() const { | 134 StrictModeFlag strict_mode_flag() const { |
135 return info()->is_strict_mode() ? kStrictMode : kNonStrictMode; | 135 return info()->strict_mode_flag(); |
136 } | 136 } |
137 bool dynamic_frame_alignment() const { return dynamic_frame_alignment_; } | 137 bool dynamic_frame_alignment() const { return dynamic_frame_alignment_; } |
138 void set_dynamic_frame_alignment(bool value) { | 138 void set_dynamic_frame_alignment(bool value) { |
139 dynamic_frame_alignment_ = value; | 139 dynamic_frame_alignment_ = value; |
140 } | 140 } |
141 | 141 |
142 LChunk* chunk() const { return chunk_; } | 142 LChunk* chunk() const { return chunk_; } |
143 Scope* scope() const { return scope_; } | 143 Scope* scope() const { return scope_; } |
144 HGraph* graph() const { return chunk_->graph(); } | 144 HGraph* graph() const { return chunk_->graph(); } |
145 | 145 |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 LCodeGen* codegen_; | 377 LCodeGen* codegen_; |
378 Label entry_; | 378 Label entry_; |
379 Label exit_; | 379 Label exit_; |
380 Label* external_exit_; | 380 Label* external_exit_; |
381 int instruction_index_; | 381 int instruction_index_; |
382 }; | 382 }; |
383 | 383 |
384 } } // namespace v8::internal | 384 } } // namespace v8::internal |
385 | 385 |
386 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 386 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
OLD | NEW |