| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 // chunk contains constructs we cannot handle. Returns true if the | 88 // chunk contains constructs we cannot handle. Returns true if the |
| 89 // code generation attempt succeeded. | 89 // code generation attempt succeeded. |
| 90 bool GenerateCode(); | 90 bool GenerateCode(); |
| 91 | 91 |
| 92 // Finish the code by setting stack height, safepoint, and bailout | 92 // Finish the code by setting stack height, safepoint, and bailout |
| 93 // information on it. | 93 // information on it. |
| 94 void FinishCode(Handle<Code> code); | 94 void FinishCode(Handle<Code> code); |
| 95 | 95 |
| 96 // Deferred code support. | 96 // Deferred code support. |
| 97 void DoDeferredNumberTagD(LNumberTagD* instr); | 97 void DoDeferredNumberTagD(LNumberTagD* instr); |
| 98 void DoDeferredNumberTagI(LNumberTagI* instr); | |
| 99 void DoDeferredTaggedToI(LTaggedToI* instr); | 98 void DoDeferredTaggedToI(LTaggedToI* instr); |
| 100 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); | 99 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); |
| 101 void DoDeferredStackCheck(LGoto* instr); | 100 void DoDeferredStackCheck(LGoto* instr); |
| 102 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 101 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
| 103 Label* map_check); | 102 Label* map_check); |
| 104 | 103 |
| 105 // Parallel move support. | 104 // Parallel move support. |
| 106 void DoParallelMove(LParallelMove* move); | 105 void DoParallelMove(LParallelMove* move); |
| 107 | 106 |
| 108 // Emit frame translation commands for an environment. | 107 // Emit frame translation commands for an environment. |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 private: | 286 private: |
| 288 LCodeGen* codegen_; | 287 LCodeGen* codegen_; |
| 289 Label entry_; | 288 Label entry_; |
| 290 Label exit_; | 289 Label exit_; |
| 291 Label* external_exit_; | 290 Label* external_exit_; |
| 292 }; | 291 }; |
| 293 | 292 |
| 294 } } // namespace v8::internal | 293 } } // namespace v8::internal |
| 295 | 294 |
| 296 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 295 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
| OLD | NEW |