Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/arm/lithium-arm.h

Issue 21055011: First implementation of allocation elimination in Hydrogen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/arm/lithium-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 2700 matching lines...) Expand 10 before | Expand all | Expand 10 after
2711 2711
2712 // By default we assume that instruction sequences generated for calls 2712 // By default we assume that instruction sequences generated for calls
2713 // cannot deoptimize eagerly and we do not attach environment to this 2713 // cannot deoptimize eagerly and we do not attach environment to this
2714 // instruction. 2714 // instruction.
2715 LInstruction* MarkAsCall( 2715 LInstruction* MarkAsCall(
2716 LInstruction* instr, 2716 LInstruction* instr,
2717 HInstruction* hinstr, 2717 HInstruction* hinstr,
2718 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); 2718 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY);
2719 2719
2720 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env, 2720 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env,
2721 int* argument_index_accumulator); 2721 int* argument_index_accumulator,
2722 ZoneList<HValue*>* objects_to_materialize);
2722 2723
2723 void VisitInstruction(HInstruction* current); 2724 void VisitInstruction(HInstruction* current);
2724 2725
2725 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); 2726 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block);
2726 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); 2727 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr);
2727 LInstruction* DoArithmeticD(Token::Value op, 2728 LInstruction* DoArithmeticD(Token::Value op,
2728 HArithmeticBinaryOperation* instr); 2729 HArithmeticBinaryOperation* instr);
2729 LInstruction* DoArithmeticT(Token::Value op, 2730 LInstruction* DoArithmeticT(Token::Value op,
2730 HArithmeticBinaryOperation* instr); 2731 HArithmeticBinaryOperation* instr);
2731 2732
(...skipping 13 matching lines...) Expand all
2745 2746
2746 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2747 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2747 }; 2748 };
2748 2749
2749 #undef DECLARE_HYDROGEN_ACCESSOR 2750 #undef DECLARE_HYDROGEN_ACCESSOR
2750 #undef DECLARE_CONCRETE_INSTRUCTION 2751 #undef DECLARE_CONCRETE_INSTRUCTION
2751 2752
2752 } } // namespace v8::internal 2753 } } // namespace v8::internal
2753 2754
2754 #endif // V8_ARM_LITHIUM_ARM_H_ 2755 #endif // V8_ARM_LITHIUM_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698