OLD | NEW |
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 // Parallel move support. | 143 // Parallel move support. |
144 void DoParallelMove(LParallelMove* move); | 144 void DoParallelMove(LParallelMove* move); |
145 void DoGap(LGap* instr); | 145 void DoGap(LGap* instr); |
146 | 146 |
147 MemOperand PrepareKeyedOperand(Register key, | 147 MemOperand PrepareKeyedOperand(Register key, |
148 Register base, | 148 Register base, |
149 bool key_is_constant, | 149 bool key_is_constant, |
150 int constant_key, | 150 int constant_key, |
151 int element_size, | 151 int element_size, |
152 int shift_size, | 152 int shift_size, |
153 int additional_index, | 153 int base_offset); |
154 int additional_offset); | |
155 | 154 |
156 // Emit frame translation commands for an environment. | 155 // Emit frame translation commands for an environment. |
157 void WriteTranslation(LEnvironment* environment, Translation* translation); | 156 void WriteTranslation(LEnvironment* environment, Translation* translation); |
158 | 157 |
159 // Declare methods that deal with the individual node types. | 158 // Declare methods that deal with the individual node types. |
160 #define DECLARE_DO(type) void Do##type(L##type* node); | 159 #define DECLARE_DO(type) void Do##type(L##type* node); |
161 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) | 160 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) |
162 #undef DECLARE_DO | 161 #undef DECLARE_DO |
163 | 162 |
164 private: | 163 private: |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 LCodeGen* codegen_; | 460 LCodeGen* codegen_; |
462 Label entry_; | 461 Label entry_; |
463 Label exit_; | 462 Label exit_; |
464 Label* external_exit_; | 463 Label* external_exit_; |
465 int instruction_index_; | 464 int instruction_index_; |
466 }; | 465 }; |
467 | 466 |
468 } } // namespace v8::internal | 467 } } // namespace v8::internal |
469 | 468 |
470 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 469 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
OLD | NEW |