| 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 DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 
|  | 103                                         Label* map_check); | 
| 102 | 104 | 
| 103   // Parallel move support. | 105   // Parallel move support. | 
| 104   void DoParallelMove(LParallelMove* move); | 106   void DoParallelMove(LParallelMove* move); | 
| 105 | 107 | 
| 106   // Emit frame translation commands for an environment. | 108   // Emit frame translation commands for an environment. | 
| 107   void WriteTranslation(LEnvironment* environment, Translation* translation); | 109   void WriteTranslation(LEnvironment* environment, Translation* translation); | 
| 108 | 110 | 
| 109   // Declare methods that deal with the individual node types. | 111   // Declare methods that deal with the individual node types. | 
| 110 #define DECLARE_DO(type) void Do##type(L##type* node); | 112 #define DECLARE_DO(type) void Do##type(L##type* node); | 
| 111   LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) | 113   LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) | 
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 302  private: | 304  private: | 
| 303   LCodeGen* codegen_; | 305   LCodeGen* codegen_; | 
| 304   Label entry_; | 306   Label entry_; | 
| 305   Label exit_; | 307   Label exit_; | 
| 306   Label* external_exit_; | 308   Label* external_exit_; | 
| 307 }; | 309 }; | 
| 308 | 310 | 
| 309 } }  // namespace v8::internal | 311 } }  // namespace v8::internal | 
| 310 | 312 | 
| 311 #endif  // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 313 #endif  // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 
| OLD | NEW | 
|---|