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 12221064: Implement many KeyedStoreStubs using Crankshaft (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Final review feedback 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 | « src/arm/code-stubs-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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 bool NeedsEagerFrame() const { 81 bool NeedsEagerFrame() const {
82 return GetStackSlotCount() > 0 || 82 return GetStackSlotCount() > 0 ||
83 info()->is_non_deferred_calling() || 83 info()->is_non_deferred_calling() ||
84 !info()->IsStub(); 84 !info()->IsStub();
85 } 85 }
86 bool NeedsDeferredFrame() const { 86 bool NeedsDeferredFrame() const {
87 return !NeedsEagerFrame() && info()->is_deferred_calling(); 87 return !NeedsEagerFrame() && info()->is_deferred_calling();
88 } 88 }
89 89
90 LinkRegisterStatus GetLinkRegisterState() const {
91 return frame_is_built_ ? kLRHasBeenSaved : kLRHasNotBeenSaved;
92 }
93
90 // Support for converting LOperands to assembler types. 94 // Support for converting LOperands to assembler types.
91 // LOperand must be a register. 95 // LOperand must be a register.
92 Register ToRegister(LOperand* op) const; 96 Register ToRegister(LOperand* op) const;
93 97
94 // LOperand is loaded into scratch, unless already a register. 98 // LOperand is loaded into scratch, unless already a register.
95 Register EmitLoadRegister(LOperand* op, Register scratch); 99 Register EmitLoadRegister(LOperand* op, Register scratch);
96 100
97 // LOperand must be a double register. 101 // LOperand must be a double register.
98 DwVfpRegister ToDoubleRegister(LOperand* op) const; 102 DwVfpRegister ToDoubleRegister(LOperand* op) const;
99 103
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 LCodeGen* codegen_; 507 LCodeGen* codegen_;
504 Label entry_; 508 Label entry_;
505 Label exit_; 509 Label exit_;
506 Label* external_exit_; 510 Label* external_exit_;
507 int instruction_index_; 511 int instruction_index_;
508 }; 512 };
509 513
510 } } // namespace v8::internal 514 } } // namespace v8::internal
511 515
512 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 516 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698