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

Side by Side Diff: src/x64/lithium-codegen-x64.h

Issue 141363005: A64: Synchronize with r15204. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 11 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/x64/ic-x64.cc ('k') | src/x64/lithium-codegen-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 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, 132 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
133 Label* map_check); 133 Label* map_check);
134 134
135 void DoCheckMapCommon(Register reg, Handle<Map> map, LInstruction* instr); 135 void DoCheckMapCommon(Register reg, Handle<Map> map, LInstruction* instr);
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 // Emit frame translation commands for an environment. 141 // Emit frame translation commands for an environment.
142 void WriteTranslation(LEnvironment* environment, 142 void WriteTranslation(LEnvironment* environment, Translation* translation);
143 Translation* translation,
144 int* arguments_index,
145 int* arguments_count);
146 143
147 // Declare methods that deal with the individual node types. 144 // Declare methods that deal with the individual node types.
148 #define DECLARE_DO(type) void Do##type(L##type* node); 145 #define DECLARE_DO(type) void Do##type(L##type* node);
149 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) 146 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO)
150 #undef DECLARE_DO 147 #undef DECLARE_DO
151 148
152 private: 149 private:
153 enum Status { 150 enum Status {
154 UNUSED, 151 UNUSED,
155 GENERATING, 152 GENERATING,
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, 243 void RegisterEnvironmentForDeoptimization(LEnvironment* environment,
247 Safepoint::DeoptMode mode); 244 Safepoint::DeoptMode mode);
248 void DeoptimizeIf(Condition cc, 245 void DeoptimizeIf(Condition cc,
249 LEnvironment* environment, 246 LEnvironment* environment,
250 Deoptimizer::BailoutType bailout_type); 247 Deoptimizer::BailoutType bailout_type);
251 void DeoptimizeIf(Condition cc, LEnvironment* environment); 248 void DeoptimizeIf(Condition cc, LEnvironment* environment);
252 void SoftDeoptimize(LEnvironment* environment); 249 void SoftDeoptimize(LEnvironment* environment);
253 void AddToTranslation(Translation* translation, 250 void AddToTranslation(Translation* translation,
254 LOperand* op, 251 LOperand* op,
255 bool is_tagged, 252 bool is_tagged,
256 bool is_uint32, 253 bool is_uint32);
257 bool arguments_known,
258 int arguments_index,
259 int arguments_count);
260 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); 254 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code);
261 void PopulateDeoptimizationData(Handle<Code> code); 255 void PopulateDeoptimizationData(Handle<Code> code);
262 int DefineDeoptimizationLiteral(Handle<Object> literal); 256 int DefineDeoptimizationLiteral(Handle<Object> literal);
263 257
264 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); 258 void PopulateDeoptimizationLiteralsWithInlinedFunctions();
265 259
266 Register ToRegister(int index) const; 260 Register ToRegister(int index) const;
267 XMMRegister ToDoubleRegister(int index) const; 261 XMMRegister ToDoubleRegister(int index) const;
268 Operand BuildFastArrayOperand( 262 Operand BuildFastArrayOperand(
269 LOperand* elements_pointer, 263 LOperand* elements_pointer,
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 LCodeGen* codegen_; 425 LCodeGen* codegen_;
432 Label entry_; 426 Label entry_;
433 Label exit_; 427 Label exit_;
434 Label* external_exit_; 428 Label* external_exit_;
435 int instruction_index_; 429 int instruction_index_;
436 }; 430 };
437 431
438 } } // namespace v8::internal 432 } } // namespace v8::internal
439 433
440 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ 434 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/x64/ic-x64.cc ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698