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

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

Issue 6469052: x64: Implement regexp literals and string CharCodeAt in lithium backend. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressing comments. 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/x64/assembler-x64.cc ('k') | src/x64/lithium-codegen-x64.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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 // Finish the code by setting stack height, safepoint, and bailout 84 // Finish the code by setting stack height, safepoint, and bailout
85 // information on it. 85 // information on it.
86 void FinishCode(Handle<Code> code); 86 void FinishCode(Handle<Code> code);
87 87
88 // Deferred code support. 88 // Deferred code support.
89 void DoDeferredNumberTagD(LNumberTagD* instr); 89 void DoDeferredNumberTagD(LNumberTagD* instr);
90 void DoDeferredTaggedToI(LTaggedToI* instr); 90 void DoDeferredTaggedToI(LTaggedToI* instr);
91 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); 91 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr);
92 void DoDeferredStackCheck(LGoto* instr); 92 void DoDeferredStackCheck(LGoto* instr);
93 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr);
93 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr); 94 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr);
94 95
95 // Parallel move support. 96 // Parallel move support.
96 void DoParallelMove(LParallelMove* move); 97 void DoParallelMove(LParallelMove* move);
97 98
98 // Emit frame translation commands for an environment. 99 // Emit frame translation commands for an environment.
99 void WriteTranslation(LEnvironment* environment, Translation* translation); 100 void WriteTranslation(LEnvironment* environment, Translation* translation);
100 101
101 // Declare methods that deal with the individual node types. 102 // Declare methods that deal with the individual node types.
102 #define DECLARE_DO(type) void Do##type(L##type* node); 103 #define DECLARE_DO(type) void Do##type(L##type* node);
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 private: 276 private:
276 LCodeGen* codegen_; 277 LCodeGen* codegen_;
277 Label entry_; 278 Label entry_;
278 Label exit_; 279 Label exit_;
279 Label* external_exit_; 280 Label* external_exit_;
280 }; 281 };
281 282
282 } } // namespace v8::internal 283 } } // namespace v8::internal
283 284
284 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ 285 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/x64/assembler-x64.cc ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698