| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 void DoDeferredNumberTagU(LNumberTagU* instr); | 125 void DoDeferredNumberTagU(LNumberTagU* instr); |
| 126 void DoDeferredTaggedToI(LTaggedToI* instr); | 126 void DoDeferredTaggedToI(LTaggedToI* instr); |
| 127 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); | 127 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); |
| 128 void DoDeferredStackCheck(LStackCheck* instr); | 128 void DoDeferredStackCheck(LStackCheck* instr); |
| 129 void DoDeferredRandom(LRandom* instr); | 129 void DoDeferredRandom(LRandom* instr); |
| 130 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); | 130 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
| 131 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); | 131 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
| 132 void DoDeferredAllocate(LAllocate* instr); | 132 void DoDeferredAllocate(LAllocate* instr); |
| 133 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 133 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
| 134 Label* map_check); | 134 Label* map_check); |
| 135 | 135 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object); |
| 136 void DoCheckMapCommon(Register reg, Handle<Map> map, LInstruction* instr); | |
| 137 | 136 |
| 138 // Parallel move support. | 137 // Parallel move support. |
| 139 void DoParallelMove(LParallelMove* move); | 138 void DoParallelMove(LParallelMove* move); |
| 140 void DoGap(LGap* instr); | 139 void DoGap(LGap* instr); |
| 141 | 140 |
| 142 // Emit frame translation commands for an environment. | 141 // Emit frame translation commands for an environment. |
| 143 void WriteTranslation(LEnvironment* environment, Translation* translation); | 142 void WriteTranslation(LEnvironment* environment, Translation* translation); |
| 144 | 143 |
| 145 // Declare methods that deal with the individual node types. | 144 // Declare methods that deal with the individual node types. |
| 146 #define DECLARE_DO(type) void Do##type(L##type* node); | 145 #define DECLARE_DO(type) void Do##type(L##type* node); |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 LCodeGen* codegen_; | 434 LCodeGen* codegen_; |
| 436 Label entry_; | 435 Label entry_; |
| 437 Label exit_; | 436 Label exit_; |
| 438 Label* external_exit_; | 437 Label* external_exit_; |
| 439 int instruction_index_; | 438 int instruction_index_; |
| 440 }; | 439 }; |
| 441 | 440 |
| 442 } } // namespace v8::internal | 441 } } // namespace v8::internal |
| 443 | 442 |
| 444 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 443 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
| OLD | NEW |