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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 | 123 |
124 // Deferred code support. | 124 // Deferred code support. |
125 void DoDeferredNumberTagD(LNumberTagD* instr); | 125 void DoDeferredNumberTagD(LNumberTagD* instr); |
126 void DoDeferredNumberTagU(LNumberTagU* instr); | 126 void DoDeferredNumberTagU(LNumberTagU* instr); |
127 void DoDeferredTaggedToI(LTaggedToI* instr); | 127 void DoDeferredTaggedToI(LTaggedToI* instr); |
128 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); | 128 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); |
129 void DoDeferredStackCheck(LStackCheck* instr); | 129 void DoDeferredStackCheck(LStackCheck* instr); |
130 void DoDeferredRandom(LRandom* instr); | 130 void DoDeferredRandom(LRandom* instr); |
131 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); | 131 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
132 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); | 132 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
133 void DoDeferredAllocateObject(LAllocateObject* instr); | |
134 void DoDeferredAllocate(LAllocate* instr); | 133 void DoDeferredAllocate(LAllocate* instr); |
135 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 134 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
136 Label* map_check); | 135 Label* map_check); |
137 | 136 |
138 void DoCheckMapCommon(Register reg, Handle<Map> map, LInstruction* instr); | 137 void DoCheckMapCommon(Register reg, Handle<Map> map, LInstruction* instr); |
139 | 138 |
140 // Parallel move support. | 139 // Parallel move support. |
141 void DoParallelMove(LParallelMove* move); | 140 void DoParallelMove(LParallelMove* move); |
142 void DoGap(LGap* instr); | 141 void DoGap(LGap* instr); |
143 | 142 |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 LCodeGen* codegen_; | 435 LCodeGen* codegen_; |
437 Label entry_; | 436 Label entry_; |
438 Label exit_; | 437 Label exit_; |
439 Label* external_exit_; | 438 Label* external_exit_; |
440 int instruction_index_; | 439 int instruction_index_; |
441 }; | 440 }; |
442 | 441 |
443 } } // namespace v8::internal | 442 } } // namespace v8::internal |
444 | 443 |
445 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 444 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
OLD | NEW |