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-codegen-arm.h

Issue 12335132: Fix materialization of arguments objects with unknown values. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments by Sven Panne. Created 7 years, 9 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-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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 SafepointMode safepoint_mode); 272 SafepointMode safepoint_mode);
273 273
274 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, 274 void RegisterEnvironmentForDeoptimization(LEnvironment* environment,
275 Safepoint::DeoptMode mode); 275 Safepoint::DeoptMode mode);
276 void DeoptimizeIf(Condition cc, LEnvironment* environment); 276 void DeoptimizeIf(Condition cc, LEnvironment* environment);
277 277
278 void AddToTranslation(Translation* translation, 278 void AddToTranslation(Translation* translation,
279 LOperand* op, 279 LOperand* op,
280 bool is_tagged, 280 bool is_tagged,
281 bool is_uint32, 281 bool is_uint32,
282 bool arguments_known,
282 int arguments_index, 283 int arguments_index,
283 int arguments_count); 284 int arguments_count);
284 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code); 285 void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code);
285 void PopulateDeoptimizationData(Handle<Code> code); 286 void PopulateDeoptimizationData(Handle<Code> code);
286 int DefineDeoptimizationLiteral(Handle<Object> literal); 287 int DefineDeoptimizationLiteral(Handle<Object> literal);
287 288
288 void PopulateDeoptimizationLiteralsWithInlinedFunctions(); 289 void PopulateDeoptimizationLiteralsWithInlinedFunctions();
289 290
290 Register ToRegister(int index) const; 291 Register ToRegister(int index) const;
291 DwVfpRegister ToDoubleRegister(int index) const; 292 DwVfpRegister ToDoubleRegister(int index) const;
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 LCodeGen* codegen_; 504 LCodeGen* codegen_;
504 Label entry_; 505 Label entry_;
505 Label exit_; 506 Label exit_;
506 Label* external_exit_; 507 Label* external_exit_;
507 int instruction_index_; 508 int instruction_index_;
508 }; 509 };
509 510
510 } } // namespace v8::internal 511 } } // namespace v8::internal
511 512
512 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 513 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698