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

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

Issue 6368009: ARM: Implement StringLength and StringCharCodeAt in the lithium-arm (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address comments Created 9 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 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 void DoDeferredGenericBinaryStub(LBinaryOperation* instr, Token::Value op); 96 void DoDeferredGenericBinaryStub(LBinaryOperation* instr, Token::Value op);
97 void DoDeferredNumberTagD(LNumberTagD* instr); 97 void DoDeferredNumberTagD(LNumberTagD* instr);
98 void DoDeferredNumberTagI(LNumberTagI* instr); 98 void DoDeferredNumberTagI(LNumberTagI* instr);
99 void DoDeferredTaggedToI(LTaggedToI* instr); 99 void DoDeferredTaggedToI(LTaggedToI* instr);
100 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); 100 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr);
101 void DoDeferredStackCheck(LGoto* instr); 101 void DoDeferredStackCheck(LGoto* instr);
102 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr);
102 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, 103 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
103 Label* map_check); 104 Label* map_check);
104 105
105 // Parallel move support. 106 // Parallel move support.
106 void DoParallelMove(LParallelMove* move); 107 void DoParallelMove(LParallelMove* move);
107 108
108 // Emit frame translation commands for an environment. 109 // Emit frame translation commands for an environment.
109 void WriteTranslation(LEnvironment* environment, Translation* translation); 110 void WriteTranslation(LEnvironment* environment, Translation* translation);
110 111
111 // Declare methods that deal with the individual node types. 112 // Declare methods that deal with the individual node types.
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 private: 304 private:
304 LCodeGen* codegen_; 305 LCodeGen* codegen_;
305 Label entry_; 306 Label entry_;
306 Label exit_; 307 Label exit_;
307 Label* external_exit_; 308 Label* external_exit_;
308 }; 309 };
309 310
310 } } // namespace v8::internal 311 } } // namespace v8::internal
311 312
312 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 313 #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