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

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

Issue 8983027: Rollback 10331: Make sure transitioned arrays efficiently call builtin Array functions (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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/objects.h ('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 2012 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
11 // with the distribution. 11 // with the distribution.
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 // Deferred code support. 95 // Deferred code support.
96 void DoDeferredNumberTagD(LNumberTagD* instr); 96 void DoDeferredNumberTagD(LNumberTagD* instr);
97 void DoDeferredTaggedToI(LTaggedToI* instr); 97 void DoDeferredTaggedToI(LTaggedToI* instr);
98 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); 98 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr);
99 void DoDeferredStackCheck(LStackCheck* instr); 99 void DoDeferredStackCheck(LStackCheck* instr);
100 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); 100 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr);
101 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); 101 void DoDeferredStringCharFromCode(LStringCharFromCode* instr);
102 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, 102 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
103 Label* map_check); 103 Label* map_check);
104 104
105 void DoCheckMapCommon(Register reg, Handle<Map> map, 105 // Parallel move support.
106 CompareMapMode mode, LEnvironment* env);
107
108 // Parallel move support.
109 void DoParallelMove(LParallelMove* move); 106 void DoParallelMove(LParallelMove* move);
110 void DoGap(LGap* instr); 107 void DoGap(LGap* instr);
111 108
112 // Emit frame translation commands for an environment. 109 // Emit frame translation commands for an environment.
113 void WriteTranslation(LEnvironment* environment, Translation* translation); 110 void WriteTranslation(LEnvironment* environment, Translation* translation);
114 111
115 // Declare methods that deal with the individual node types. 112 // Declare methods that deal with the individual node types.
116 #define DECLARE_DO(type) void Do##type(L##type* node); 113 #define DECLARE_DO(type) void Do##type(L##type* node);
117 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) 114 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO)
118 #undef DECLARE_DO 115 #undef DECLARE_DO
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 LCodeGen* codegen_; 385 LCodeGen* codegen_;
389 Label entry_; 386 Label entry_;
390 Label exit_; 387 Label exit_;
391 Label* external_exit_; 388 Label* external_exit_;
392 int instruction_index_; 389 int instruction_index_;
393 }; 390 };
394 391
395 } } // namespace v8::internal 392 } } // namespace v8::internal
396 393
397 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_ 394 #endif // V8_X64_LITHIUM_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/objects.h ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698