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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); | 147 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); |
148 void DoDeferredStackCheck(LStackCheck* instr); | 148 void DoDeferredStackCheck(LStackCheck* instr); |
149 void DoDeferredRandom(LRandom* instr); | 149 void DoDeferredRandom(LRandom* instr); |
150 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); | 150 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
151 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); | 151 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
152 void DoDeferredAllocateObject(LAllocateObject* instr); | 152 void DoDeferredAllocateObject(LAllocateObject* instr); |
153 void DoDeferredAllocate(LAllocate* instr); | 153 void DoDeferredAllocate(LAllocate* instr); |
154 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 154 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
155 Label* map_check); | 155 Label* map_check); |
156 | 156 |
157 void DoCheckMapCommon(Register map_reg, Handle<Map> map, | 157 void DoCheckMapCommon(Register map_reg, Handle<Map> map, LEnvironment* env); |
158 CompareMapMode mode, LEnvironment* env); | |
159 | 158 |
160 // Parallel move support. | 159 // Parallel move support. |
161 void DoParallelMove(LParallelMove* move); | 160 void DoParallelMove(LParallelMove* move); |
162 void DoGap(LGap* instr); | 161 void DoGap(LGap* instr); |
163 | 162 |
164 MemOperand PrepareKeyedOperand(Register key, | 163 MemOperand PrepareKeyedOperand(Register key, |
165 Register base, | 164 Register base, |
166 bool key_is_constant, | 165 bool key_is_constant, |
167 int constant_key, | 166 int constant_key, |
168 int element_size, | 167 int element_size, |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 LCodeGen* codegen_; | 505 LCodeGen* codegen_; |
507 Label entry_; | 506 Label entry_; |
508 Label exit_; | 507 Label exit_; |
509 Label* external_exit_; | 508 Label* external_exit_; |
510 int instruction_index_; | 509 int instruction_index_; |
511 }; | 510 }; |
512 | 511 |
513 } } // namespace v8::internal | 512 } } // namespace v8::internal |
514 | 513 |
515 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ | 514 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ |
OLD | NEW |