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 scratch, Handle<Map> map, |
danno
2012/12/07 10:47:11
can you please rename this to map_reg here and els
| |
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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
479 LCodeGen* codegen_; | 479 LCodeGen* codegen_; |
480 Label entry_; | 480 Label entry_; |
481 Label exit_; | 481 Label exit_; |
482 Label* external_exit_; | 482 Label* external_exit_; |
483 int instruction_index_; | 483 int instruction_index_; |
484 }; | 484 }; |
485 | 485 |
486 } } // namespace v8::internal | 486 } } // namespace v8::internal |
487 | 487 |
488 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ | 488 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ |
OLD | NEW |