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

Side by Side Diff: src/x64/lithium-x64.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 | « src/version.cc ('k') | src/x64/lithium-x64.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 2135 matching lines...) Expand 10 before | Expand all | Expand 10 after
2146 LInstruction* MarkAsCall( 2146 LInstruction* MarkAsCall(
2147 LInstruction* instr, 2147 LInstruction* instr,
2148 HInstruction* hinstr, 2148 HInstruction* hinstr,
2149 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY); 2149 CanDeoptimize can_deoptimize = CANNOT_DEOPTIMIZE_EAGERLY);
2150 LInstruction* MarkAsSaveDoubles(LInstruction* instr); 2150 LInstruction* MarkAsSaveDoubles(LInstruction* instr);
2151 2151
2152 LInstruction* SetInstructionPendingDeoptimizationEnvironment( 2152 LInstruction* SetInstructionPendingDeoptimizationEnvironment(
2153 LInstruction* instr, int ast_id); 2153 LInstruction* instr, int ast_id);
2154 void ClearInstructionPendingDeoptimizationEnvironment(); 2154 void ClearInstructionPendingDeoptimizationEnvironment();
2155 2155
2156 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env); 2156 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env,
2157 int* argument_index_accumulator);
2157 2158
2158 void VisitInstruction(HInstruction* current); 2159 void VisitInstruction(HInstruction* current);
2159 2160
2160 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block); 2161 void DoBasicBlock(HBasicBlock* block, HBasicBlock* next_block);
2161 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr); 2162 LInstruction* DoBit(Token::Value op, HBitwiseBinaryOperation* instr);
2162 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr); 2163 LInstruction* DoShift(Token::Value op, HBitwiseBinaryOperation* instr);
2163 LInstruction* DoArithmeticD(Token::Value op, 2164 LInstruction* DoArithmeticD(Token::Value op,
2164 HArithmeticBinaryOperation* instr); 2165 HArithmeticBinaryOperation* instr);
2165 LInstruction* DoArithmeticT(Token::Value op, 2166 LInstruction* DoArithmeticT(Token::Value op,
2166 HArithmeticBinaryOperation* instr); 2167 HArithmeticBinaryOperation* instr);
(...skipping 13 matching lines...) Expand all
2180 2181
2181 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2182 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2182 }; 2183 };
2183 2184
2184 #undef DECLARE_HYDROGEN_ACCESSOR 2185 #undef DECLARE_HYDROGEN_ACCESSOR
2185 #undef DECLARE_CONCRETE_INSTRUCTION 2186 #undef DECLARE_CONCRETE_INSTRUCTION
2186 2187
2187 } } // namespace v8::int 2188 } } // namespace v8::int
2188 2189
2189 #endif // V8_X64_LITHIUM_X64_H_ 2190 #endif // V8_X64_LITHIUM_X64_H_
OLDNEW
« no previous file with comments | « src/version.cc ('k') | src/x64/lithium-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698