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

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

Issue 6529050: ARM: Remove crankshaft dependency on the generic binary operation stub... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 10 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 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 // chunk contains constructs we cannot handle. Returns true if the 87 // chunk contains constructs we cannot handle. Returns true if the
88 // code generation attempt succeeded. 88 // code generation attempt succeeded.
89 bool GenerateCode(); 89 bool GenerateCode();
90 90
91 // Finish the code by setting stack height, safepoint, and bailout 91 // Finish the code by setting stack height, safepoint, and bailout
92 // information on it. 92 // information on it.
93 void FinishCode(Handle<Code> code); 93 void FinishCode(Handle<Code> code);
94 94
95 // Deferred code support. 95 // Deferred code support.
96 template<int T> 96 template<int T>
97 void DoDeferredGenericBinaryStub(LTemplateInstruction<1, 2, T>* instr, 97 void DoDeferredBinaryOpStub(LTemplateInstruction<1, 2, T>* instr,
98 Token::Value op); 98 Token::Value op);
99 void DoDeferredNumberTagD(LNumberTagD* instr); 99 void DoDeferredNumberTagD(LNumberTagD* instr);
100 void DoDeferredNumberTagI(LNumberTagI* instr); 100 void DoDeferredNumberTagI(LNumberTagI* instr);
101 void DoDeferredTaggedToI(LTaggedToI* instr); 101 void DoDeferredTaggedToI(LTaggedToI* instr);
102 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); 102 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr);
103 void DoDeferredStackCheck(LGoto* instr); 103 void DoDeferredStackCheck(LGoto* instr);
104 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); 104 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr);
105 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, 105 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
106 Label* map_check); 106 Label* map_check);
107 107
108 // Parallel move support. 108 // Parallel move support.
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 private: 323 private:
324 LCodeGen* codegen_; 324 LCodeGen* codegen_;
325 Label entry_; 325 Label entry_;
326 Label exit_; 326 Label exit_;
327 Label* external_exit_; 327 Label* external_exit_;
328 }; 328 };
329 329
330 } } // namespace v8::internal 330 } } // namespace v8::internal
331 331
332 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 332 #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