| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 // information on it. | 92 // information on it. |
| 93 void FinishCode(Handle<Code> code); | 93 void FinishCode(Handle<Code> code); |
| 94 | 94 |
| 95 // Deferred code support. | 95 // Deferred code support. |
| 96 void DoDeferredGenericBinaryStub(LBinaryOperation* instr, Token::Value op); | 96 void DoDeferredGenericBinaryStub(LBinaryOperation* instr, Token::Value op); |
| 97 void DoDeferredNumberTagD(LNumberTagD* instr); | 97 void DoDeferredNumberTagD(LNumberTagD* instr); |
| 98 void DoDeferredNumberTagI(LNumberTagI* instr); | 98 void DoDeferredNumberTagI(LNumberTagI* instr); |
| 99 void DoDeferredTaggedToI(LTaggedToI* instr); | 99 void DoDeferredTaggedToI(LTaggedToI* instr); |
| 100 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); | 100 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); |
| 101 void DoDeferredStackCheck(LGoto* instr); | 101 void DoDeferredStackCheck(LGoto* instr); |
| 102 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
| 102 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 103 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
| 103 Label* map_check); | 104 Label* map_check); |
| 104 | 105 |
| 105 // Parallel move support. | 106 // Parallel move support. |
| 106 void DoParallelMove(LParallelMove* move); | 107 void DoParallelMove(LParallelMove* move); |
| 107 | 108 |
| 108 // Emit frame translation commands for an environment. | 109 // Emit frame translation commands for an environment. |
| 109 void WriteTranslation(LEnvironment* environment, Translation* translation); | 110 void WriteTranslation(LEnvironment* environment, Translation* translation); |
| 110 | 111 |
| 111 // Declare methods that deal with the individual node types. | 112 // Declare methods that deal with the individual node types. |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 private: | 304 private: |
| 304 LCodeGen* codegen_; | 305 LCodeGen* codegen_; |
| 305 Label entry_; | 306 Label entry_; |
| 306 Label exit_; | 307 Label exit_; |
| 307 Label* external_exit_; | 308 Label* external_exit_; |
| 308 }; | 309 }; |
| 309 | 310 |
| 310 } } // namespace v8::internal | 311 } } // namespace v8::internal |
| 311 | 312 |
| 312 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 313 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| OLD | NEW |