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

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

Issue 6248004: ARM: Implement DoInstanceOfKnownGlobal stub (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' 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 DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
103 Label* map_check);
102 104
103 // Parallel move support. 105 // Parallel move support.
104 void DoParallelMove(LParallelMove* move); 106 void DoParallelMove(LParallelMove* move);
105 107
106 // Emit frame translation commands for an environment. 108 // Emit frame translation commands for an environment.
107 void WriteTranslation(LEnvironment* environment, Translation* translation); 109 void WriteTranslation(LEnvironment* environment, Translation* translation);
108 110
109 // Declare methods that deal with the individual node types. 111 // Declare methods that deal with the individual node types.
110 #define DECLARE_DO(type) void Do##type(L##type* node); 112 #define DECLARE_DO(type) void Do##type(L##type* node);
111 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) 113 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO)
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 private: 302 private:
301 LCodeGen* codegen_; 303 LCodeGen* codegen_;
302 Label entry_; 304 Label entry_;
303 Label exit_; 305 Label exit_;
304 Label* external_exit_; 306 Label* external_exit_;
305 }; 307 };
306 308
307 } } // namespace v8::internal 309 } } // namespace v8::internal
308 310
309 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 311 #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