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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); | 141 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); |
142 void DoDeferredStackCheck(LStackCheck* instr); | 142 void DoDeferredStackCheck(LStackCheck* instr); |
143 void DoDeferredRandom(LRandom* instr); | 143 void DoDeferredRandom(LRandom* instr); |
144 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); | 144 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
145 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); | 145 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
146 void DoDeferredAllocateObject(LAllocateObject* instr); | 146 void DoDeferredAllocateObject(LAllocateObject* instr); |
147 void DoDeferredAllocate(LAllocate* instr); | 147 void DoDeferredAllocate(LAllocate* instr); |
148 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 148 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
149 Label* map_check); | 149 Label* map_check); |
150 | 150 |
151 void DoCheckMapCommon(Register reg, Handle<Map> map, | 151 void DoCheckMapCommon(Register reg, Handle<Map> map, LInstruction* instr); |
152 CompareMapMode mode, LInstruction* instr); | |
153 | 152 |
154 // Parallel move support. | 153 // Parallel move support. |
155 void DoParallelMove(LParallelMove* move); | 154 void DoParallelMove(LParallelMove* move); |
156 void DoGap(LGap* instr); | 155 void DoGap(LGap* instr); |
157 | 156 |
158 // Emit frame translation commands for an environment. | 157 // Emit frame translation commands for an environment. |
159 void WriteTranslation(LEnvironment* environment, | 158 void WriteTranslation(LEnvironment* environment, |
160 Translation* translation, | 159 Translation* translation, |
161 int* arguments_index, | 160 int* arguments_index, |
162 int* arguments_count); | 161 int* arguments_count); |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 LCodeGen* codegen_; | 484 LCodeGen* codegen_; |
486 Label entry_; | 485 Label entry_; |
487 Label exit_; | 486 Label exit_; |
488 Label* external_exit_; | 487 Label* external_exit_; |
489 int instruction_index_; | 488 int instruction_index_; |
490 }; | 489 }; |
491 | 490 |
492 } } // namespace v8::internal | 491 } } // namespace v8::internal |
493 | 492 |
494 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ | 493 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ |
OLD | NEW |