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

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

Issue 6529024: X64 Crankshaft: Implement InstanceOf and InstanceOfKnownGlobal (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/x64/code-stubs-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 DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, 93 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr);
94 Label* map_check);
95 94
96 // Parallel move support. 95 // Parallel move support.
97 void DoParallelMove(LParallelMove* move); 96 void DoParallelMove(LParallelMove* move);
98 97
99 // Emit frame translation commands for an environment. 98 // Emit frame translation commands for an environment.
100 void WriteTranslation(LEnvironment* environment, Translation* translation); 99 void WriteTranslation(LEnvironment* environment, Translation* translation);
101 100
102 // Declare methods that deal with the individual node types. 101 // Declare methods that deal with the individual node types.
103 #define DECLARE_DO(type) void Do##type(L##type* node); 102 #define DECLARE_DO(type) void Do##type(L##type* node);
104 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) 103 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO)
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 private: 275 private:
277 LCodeGen* codegen_; 276 LCodeGen* codegen_;
278 Label entry_; 277 Label entry_;
279 Label exit_; 278 Label exit_;
280 Label* external_exit_; 279 Label* external_exit_;
281 }; 280 };
282 281
283 } } // namespace v8::internal 282 } } // namespace v8::internal
284 283
285 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ 284 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/x64/code-stubs-x64.cc ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698