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

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

Issue 9169017: Merge r10374 to the 3.7 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.7
Patch Set: Created 8 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/assembler-arm-inl.h ('k') | src/arm/lithium-gap-resolver-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 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 143
144 StrictModeFlag strict_mode_flag() const { 144 StrictModeFlag strict_mode_flag() const {
145 return info()->is_classic_mode() ? kNonStrictMode : kStrictMode; 145 return info()->is_classic_mode() ? kNonStrictMode : kStrictMode;
146 } 146 }
147 147
148 LChunk* chunk() const { return chunk_; } 148 LChunk* chunk() const { return chunk_; }
149 Scope* scope() const { return scope_; } 149 Scope* scope() const { return scope_; }
150 HGraph* graph() const { return chunk_->graph(); } 150 HGraph* graph() const { return chunk_->graph(); }
151 151
152 Register scratch0() { return r9; } 152 Register scratch0() { return r9; }
153 DwVfpRegister double_scratch0() { return d15; } 153 DwVfpRegister double_scratch0() { return kScratchDoubleReg; }
154 154
155 int GetNextEmittedBlock(int block); 155 int GetNextEmittedBlock(int block);
156 LInstruction* GetNextInstruction(); 156 LInstruction* GetNextInstruction();
157 157
158 void EmitClassOfTest(Label* if_true, 158 void EmitClassOfTest(Label* if_true,
159 Label* if_false, 159 Label* if_false,
160 Handle<String> class_name, 160 Handle<String> class_name,
161 Register input, 161 Register input,
162 Register temporary, 162 Register temporary,
163 Register temporary2); 163 Register temporary2);
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 LCodeGen* codegen_; 418 LCodeGen* codegen_;
419 Label entry_; 419 Label entry_;
420 Label exit_; 420 Label exit_;
421 Label* external_exit_; 421 Label* external_exit_;
422 int instruction_index_; 422 int instruction_index_;
423 }; 423 };
424 424
425 } } // namespace v8::internal 425 } } // namespace v8::internal
426 426
427 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 427 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/assembler-arm-inl.h ('k') | src/arm/lithium-gap-resolver-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698