| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); | 114 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); |
| 115 void DoDeferredStackCheck(LStackCheck* instr); | 115 void DoDeferredStackCheck(LStackCheck* instr); |
| 116 void DoDeferredRandom(LRandom* instr); | 116 void DoDeferredRandom(LRandom* instr); |
| 117 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); | 117 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
| 118 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); | 118 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
| 119 void DoDeferredAllocateObject(LAllocateObject* instr); | 119 void DoDeferredAllocateObject(LAllocateObject* instr); |
| 120 void DoDeferredAllocate(LAllocate* instr); | 120 void DoDeferredAllocate(LAllocate* instr); |
| 121 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 121 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
| 122 Label* map_check); | 122 Label* map_check); |
| 123 | 123 |
| 124 void DoCheckMapCommon(Register reg, Handle<Map> map, | 124 void DoCheckMapCommon(Register reg, Handle<Map> map, LInstruction* instr); |
| 125 CompareMapMode mode, LInstruction* instr); | |
| 126 | 125 |
| 127 // Parallel move support. | 126 // Parallel move support. |
| 128 void DoParallelMove(LParallelMove* move); | 127 void DoParallelMove(LParallelMove* move); |
| 129 void DoGap(LGap* instr); | 128 void DoGap(LGap* instr); |
| 130 | 129 |
| 131 // Emit frame translation commands for an environment. | 130 // Emit frame translation commands for an environment. |
| 132 void WriteTranslation(LEnvironment* environment, | 131 void WriteTranslation(LEnvironment* environment, |
| 133 Translation* translation, | 132 Translation* translation, |
| 134 int* arguments_index, | 133 int* arguments_index, |
| 135 int* arguments_count); | 134 int* arguments_count); |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 LCodeGen* codegen_; | 439 LCodeGen* codegen_; |
| 441 Label entry_; | 440 Label entry_; |
| 442 Label exit_; | 441 Label exit_; |
| 443 Label* external_exit_; | 442 Label* external_exit_; |
| 444 int instruction_index_; | 443 int instruction_index_; |
| 445 }; | 444 }; |
| 446 | 445 |
| 447 } } // namespace v8::internal | 446 } } // namespace v8::internal |
| 448 | 447 |
| 449 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 448 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
| OLD | NEW |