| 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 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 CompilationInfo* info_; | 702 CompilationInfo* info_; |
| 703 HGraph* const graph_; | 703 HGraph* const graph_; |
| 704 BitVector* allocated_double_registers_; | 704 BitVector* allocated_double_registers_; |
| 705 ZoneList<LInstruction*> instructions_; | 705 ZoneList<LInstruction*> instructions_; |
| 706 ZoneList<LPointerMap*> pointer_maps_; | 706 ZoneList<LPointerMap*> pointer_maps_; |
| 707 ZoneList<Handle<JSFunction> > inlined_closures_; | 707 ZoneList<Handle<JSFunction> > inlined_closures_; |
| 708 }; | 708 }; |
| 709 | 709 |
| 710 | 710 |
| 711 int ElementsKindToShiftSize(ElementsKind elements_kind); | 711 int ElementsKindToShiftSize(ElementsKind elements_kind); |
| 712 int StackSlotOffset(int index); |
| 712 | 713 |
| 713 enum NumberUntagDMode { | 714 enum NumberUntagDMode { |
| 714 NUMBER_CANDIDATE_IS_SMI, | 715 NUMBER_CANDIDATE_IS_SMI, |
| 715 NUMBER_CANDIDATE_IS_SMI_OR_HOLE, | 716 NUMBER_CANDIDATE_IS_SMI_OR_HOLE, |
| 716 NUMBER_CANDIDATE_IS_SMI_CONVERT_HOLE, | 717 NUMBER_CANDIDATE_IS_SMI_CONVERT_HOLE, |
| 717 NUMBER_CANDIDATE_IS_ANY_TAGGED | 718 NUMBER_CANDIDATE_IS_ANY_TAGGED |
| 718 }; | 719 }; |
| 719 | 720 |
| 720 | 721 |
| 721 } } // namespace v8::internal | 722 } } // namespace v8::internal |
| 722 | 723 |
| 723 #endif // V8_LITHIUM_H_ | 724 #endif // V8_LITHIUM_H_ |
| OLD | NEW |