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

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

Issue 6682025: Crankshaft support for StringCharFromCode. (Closed)
Patch Set: Ports Created 9 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
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 // information on it. 88 // information on it.
89 void FinishCode(Handle<Code> code); 89 void FinishCode(Handle<Code> code);
90 90
91 // Deferred code support. 91 // Deferred code support.
92 void DoDeferredNumberTagD(LNumberTagD* instr); 92 void DoDeferredNumberTagD(LNumberTagD* instr);
93 void DoDeferredNumberTagI(LNumberTagI* instr); 93 void DoDeferredNumberTagI(LNumberTagI* instr);
94 void DoDeferredTaggedToI(LTaggedToI* instr); 94 void DoDeferredTaggedToI(LTaggedToI* instr);
95 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); 95 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr);
96 void DoDeferredStackCheck(LGoto* instr); 96 void DoDeferredStackCheck(LGoto* instr);
97 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); 97 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr);
98 void DoDeferredStringCharFromCode(LStringCharFromCode* instr);
98 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, 99 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
99 Label* map_check); 100 Label* map_check);
100 101
101 // Parallel move support. 102 // Parallel move support.
102 void DoParallelMove(LParallelMove* move); 103 void DoParallelMove(LParallelMove* move);
103 104
104 // Emit frame translation commands for an environment. 105 // Emit frame translation commands for an environment.
105 void WriteTranslation(LEnvironment* environment, Translation* translation); 106 void WriteTranslation(LEnvironment* environment, Translation* translation);
106 107
107 void EnsureRelocSpaceForDeoptimization(); 108 void EnsureRelocSpaceForDeoptimization();
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 private: 302 private:
302 LCodeGen* codegen_; 303 LCodeGen* codegen_;
303 Label entry_; 304 Label entry_;
304 Label exit_; 305 Label exit_;
305 Label* external_exit_; 306 Label* external_exit_;
306 }; 307 };
307 308
308 } } // namespace v8::internal 309 } } // namespace v8::internal
309 310
310 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 311 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698