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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 void DoDeferredTaggedToI(LTaggedToI* instr); | 124 void DoDeferredTaggedToI(LTaggedToI* instr); |
125 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); | 125 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); |
126 void DoDeferredStackCheck(LStackCheck* instr); | 126 void DoDeferredStackCheck(LStackCheck* instr); |
127 void DoDeferredRandom(LRandom* instr); | 127 void DoDeferredRandom(LRandom* instr); |
128 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); | 128 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
129 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); | 129 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); |
130 void DoDeferredAllocateObject(LAllocateObject* instr); | 130 void DoDeferredAllocateObject(LAllocateObject* instr); |
131 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, | 131 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
132 Label* map_check); | 132 Label* map_check); |
133 | 133 |
134 void DoCheckMapCommon(Register reg, Register scratch, Handle<Map> map, | 134 void DoCheckMapCommon(Register map_reg, Handle<Map> map, |
135 CompareMapMode mode, LEnvironment* env); | 135 CompareMapMode mode, LEnvironment* env); |
136 | 136 |
137 // Parallel move support. | 137 // Parallel move support. |
138 void DoParallelMove(LParallelMove* move); | 138 void DoParallelMove(LParallelMove* move); |
139 void DoGap(LGap* instr); | 139 void DoGap(LGap* instr); |
140 | 140 |
141 MemOperand PrepareKeyedOperand(Register key, | 141 MemOperand PrepareKeyedOperand(Register key, |
142 Register base, | 142 Register base, |
143 bool key_is_constant, | 143 bool key_is_constant, |
144 int constant_key, | 144 int constant_key, |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 LCodeGen* codegen_; | 485 LCodeGen* codegen_; |
486 Label entry_; | 486 Label entry_; |
487 Label exit_; | 487 Label exit_; |
488 Label* external_exit_; | 488 Label* external_exit_; |
489 int instruction_index_; | 489 int instruction_index_; |
490 }; | 490 }; |
491 | 491 |
492 } } // namespace v8::internal | 492 } } // namespace v8::internal |
493 | 493 |
494 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 494 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
OLD | NEW |