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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 void DoDeferredNumberTagU(LNumberTagU* instr); | 109 void DoDeferredNumberTagU(LNumberTagU* instr); |
110 void DoDeferredTaggedToI(LTaggedToI* instr, Label* done); | 110 void DoDeferredTaggedToI(LTaggedToI* instr, Label* done); |
111 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); | 111 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); |
112 void DoDeferredStackCheck(LStackCheck* instr); | 112 void DoDeferredStackCheck(LStackCheck* instr); |
113 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); | 113 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
114 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); | 114 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
115 void DoDeferredAllocate(LAllocate* instr); | 115 void DoDeferredAllocate(LAllocate* instr); |
116 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 116 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
117 Label* map_check); | 117 Label* map_check); |
118 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object); | 118 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object); |
119 void DoDeferredLoadMutableDouble(LLoadFieldByIndex* instr, | |
120 Register object, | |
121 Register index); | |
122 | 119 |
123 // Parallel move support. | 120 // Parallel move support. |
124 void DoParallelMove(LParallelMove* move); | 121 void DoParallelMove(LParallelMove* move); |
125 void DoGap(LGap* instr); | 122 void DoGap(LGap* instr); |
126 | 123 |
127 // Emit frame translation commands for an environment. | 124 // Emit frame translation commands for an environment. |
128 void WriteTranslation(LEnvironment* environment, Translation* translation); | 125 void WriteTranslation(LEnvironment* environment, Translation* translation); |
129 | 126 |
130 // Declare methods that deal with the individual node types. | 127 // Declare methods that deal with the individual node types. |
131 #define DECLARE_DO(type) void Do##type(L##type* node); | 128 #define DECLARE_DO(type) void Do##type(L##type* node); |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 Label entry_; | 411 Label entry_; |
415 Label exit_; | 412 Label exit_; |
416 Label done_; | 413 Label done_; |
417 Label* external_exit_; | 414 Label* external_exit_; |
418 int instruction_index_; | 415 int instruction_index_; |
419 }; | 416 }; |
420 | 417 |
421 } } // namespace v8::internal | 418 } } // namespace v8::internal |
422 | 419 |
423 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ | 420 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ |
OLD | NEW |