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

Side by Side Diff: src/arm/lithium-codegen-arm.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/arm/lithium-arm.cc ('k') | src/arm/lithium-codegen-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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 MemOperand PrepareKeyedOperand(Register key, 164 MemOperand PrepareKeyedOperand(Register key,
165 Register base, 165 Register base,
166 bool key_is_constant, 166 bool key_is_constant,
167 int constant_key, 167 int constant_key,
168 int element_size, 168 int element_size,
169 int shift_size, 169 int shift_size,
170 int additional_index, 170 int additional_index,
171 int additional_offset); 171 int additional_offset);
172 172
173 // Emit frame translation commands for an environment. 173 // Emit frame translation commands for an environment.
174 void WriteTranslation(LEnvironment* environment, 174 void WriteTranslation(LEnvironment* environment, Translation* translation);
175 Translation* translation,
176 int* arguments_index,
177 int* arguments_count);
178 175
179 // Declare methods that deal with the individual node types. 176 // Declare methods that deal with the individual node types.
180 #define DECLARE_DO(type) void Do##type(L##type* node); 177 #define DECLARE_DO(type) void Do##type(L##type* node);
181 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) 178 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO)
182 #undef DECLARE_DO 179 #undef DECLARE_DO
183 180
184 private: 181 private:
185 enum Status { 182 enum Status {
186 UNUSED, 183 UNUSED,
187 GENERATING, 184 GENERATING,
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 Safepoint::DeoptMode mode); 283 Safepoint::DeoptMode mode);
287 void DeoptimizeIf(Condition cc, 284 void DeoptimizeIf(Condition cc,
288 LEnvironment* environment, 285 LEnvironment* environment,
289 Deoptimizer::BailoutType bailout_type); 286 Deoptimizer::BailoutType bailout_type);
290 void DeoptimizeIf(Condition cc, LEnvironment* environment); 287 void DeoptimizeIf(Condition cc, LEnvironment* environment);
291 void SoftDeoptimize(LEnvironment* environment); 288 void SoftDeoptimize(LEnvironment* environment);
292 289
293 void AddToTranslation(Translation* translation, 290 void AddToTranslation(Translation* translation,
294 LOperand* op, 291 LOperand* op,
295 bool is_tagged, 292 bool is_tagged,
296 bool is_uint32, 293 bool is_uint32);
297 bool arguments_known,
298 int arguments_index,
299 int arguments_count);
300 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); 294 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code);
301 void PopulateDeoptimizationData(Handle<Code> code); 295 void PopulateDeoptimizationData(Handle<Code> code);
302 int DefineDeoptimizationLiteral(Handle<Object> literal); 296 int DefineDeoptimizationLiteral(Handle<Object> literal);
303 297
304 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); 298 void PopulateDeoptimizationLiteralsWithInlinedFunctions();
305 299
306 Register ToRegister(int index) const; 300 Register ToRegister(int index) const;
307 DwVfpRegister ToDoubleRegister(int index) const; 301 DwVfpRegister ToDoubleRegister(int index) const;
308 302
309 void EmitIntegerMathAbs(LMathAbs* instr); 303 void EmitIntegerMathAbs(LMathAbs* instr);
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 LCodeGen* codegen_; 490 LCodeGen* codegen_;
497 Label entry_; 491 Label entry_;
498 Label exit_; 492 Label exit_;
499 Label* external_exit_; 493 Label* external_exit_;
500 int instruction_index_; 494 int instruction_index_;
501 }; 495 };
502 496
503 } } // namespace v8::internal 497 } } // namespace v8::internal
504 498
505 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 499 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-arm.cc ('k') | src/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698