| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 // Finish the code by setting stack height, safepoint, and bailout | 69 // Finish the code by setting stack height, safepoint, and bailout |
| 70 // information on it. | 70 // information on it. |
| 71 void FinishCode(Handle<Code> code); | 71 void FinishCode(Handle<Code> code); |
| 72 | 72 |
| 73 // Deferred code support. | 73 // Deferred code support. |
| 74 void DoDeferredNumberTagD(LNumberTagD* instr); | 74 void DoDeferredNumberTagD(LNumberTagD* instr); |
| 75 void DoDeferredNumberTagI(LNumberTagI* instr); | 75 void DoDeferredNumberTagI(LNumberTagI* instr); |
| 76 void DoDeferredTaggedToI(LTaggedToI* instr); | 76 void DoDeferredTaggedToI(LTaggedToI* instr); |
| 77 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); | 77 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); |
| 78 void DoDeferredStackCheck(LGoto* instr); | 78 void DoDeferredStackCheck(LGoto* instr); |
| 79 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
| 80 Label* map_check); |
| 79 | 81 |
| 80 // Parallel move support. | 82 // Parallel move support. |
| 81 void DoParallelMove(LParallelMove* move); | 83 void DoParallelMove(LParallelMove* move); |
| 82 | 84 |
| 83 // Emit frame translation commands for an environment. | 85 // Emit frame translation commands for an environment. |
| 84 void WriteTranslation(LEnvironment* environment, Translation* translation); | 86 void WriteTranslation(LEnvironment* environment, Translation* translation); |
| 85 | 87 |
| 86 // Declare methods that deal with the individual node types. | 88 // Declare methods that deal with the individual node types. |
| 87 #define DECLARE_DO(type) void Do##type(L##type* node); | 89 #define DECLARE_DO(type) void Do##type(L##type* node); |
| 88 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) | 90 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 private: | 275 private: |
| 274 LCodeGen* codegen_; | 276 LCodeGen* codegen_; |
| 275 Label entry_; | 277 Label entry_; |
| 276 Label exit_; | 278 Label exit_; |
| 277 Label* external_exit_; | 279 Label* external_exit_; |
| 278 }; | 280 }; |
| 279 | 281 |
| 280 } } // namespace v8::internal | 282 } } // namespace v8::internal |
| 281 | 283 |
| 282 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 284 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
| OLD | NEW |