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

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

Issue 7979003: Merge svn revision 9331 to the 3.4 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.4
Patch Set: Created 9 years, 3 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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 2152 matching lines...) Expand 10 before | Expand all | Expand 10 after
2163 LInstruction* MarkAsCall( 2163 LInstruction* MarkAsCall(
2164 LInstruction* instr, 2164 LInstruction* instr,
2165 HInstruction* hinstr, 2165 HInstruction* hinstr,
2166 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); 2166 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY);
2167 LInstruction* MarkAsSaveDoubles(LInstruction* instr); 2167 LInstruction* MarkAsSaveDoubles(LInstruction* instr);
2168 2168
2169 LInstruction* SetInstructionPendingDeoptimizationEnvironment( 2169 LInstruction* SetInstructionPendingDeoptimizationEnvironment(
2170 LInstruction* instr, int ast_id); 2170 LInstruction* instr, int ast_id);
2171 void ClearInstructionPendingDeoptimizationEnvironment(); 2171 void ClearInstructionPendingDeoptimizationEnvironment();
2172 2172
2173 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env); 2173 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env,
2174 int* argument_index_accumulator);
2174 2175
2175 void VisitInstruction(HInstruction* current); 2176 void VisitInstruction(HInstruction* current);
2176 2177
2177 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); 2178 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block);
2178 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); 2179 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr);
2179 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); 2180 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr);
2180 LInstruction* DoArithmeticD(Token::Value op, 2181 LInstruction* DoArithmeticD(Token::Value op,
2181 HArithmeticBinaryOperation* instr); 2182 HArithmeticBinaryOperation* instr);
2182 LInstruction* DoArithmeticT(Token::Value op, 2183 LInstruction* DoArithmeticT(Token::Value op,
2183 HArithmeticBinaryOperation* instr); 2184 HArithmeticBinaryOperation* instr);
(...skipping 13 matching lines...) Expand all
2197 2198
2198 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2199 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2199 }; 2200 };
2200 2201
2201 #undef DECLARE_HYDROGEN_ACCESSOR 2202 #undef DECLARE_HYDROGEN_ACCESSOR
2202 #undef DECLARE_CONCRETE_INSTRUCTION 2203 #undef DECLARE_CONCRETE_INSTRUCTION
2203 2204
2204 } } // namespace v8::internal 2205 } } // namespace v8::internal
2205 2206
2206 #endif // V8_ARM_LITHIUM_ARM_H_ 2207 #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