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

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

Issue 553149: Implement simple fast-path code for functions containing this property stores and global variables. (Closed)
Patch Set: Incorporated codereview comments. Created 10 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
« no previous file with comments | « src/ia32/full-codegen-ia32.cc ('k') | src/x64/fast-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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 // called from spilled code, because they do not leave the virtual frame 623 // called from spilled code, because they do not leave the virtual frame
624 // in a spilled state. 624 // in a spilled state.
625 bool in_spilled_code_; 625 bool in_spilled_code_;
626 626
627 static InlineRuntimeLUT kInlineRuntimeLUT[]; 627 static InlineRuntimeLUT kInlineRuntimeLUT[];
628 628
629 friend class VirtualFrame; 629 friend class VirtualFrame;
630 friend class JumpTarget; 630 friend class JumpTarget;
631 friend class Reference; 631 friend class Reference;
632 friend class Result; 632 friend class Result;
633 friend class FastCodeGenerator;
633 friend class FullCodeGenerator; 634 friend class FullCodeGenerator;
634 friend class FullCodeGenSyntaxChecker; 635 friend class FullCodeGenSyntaxChecker;
635 636
636 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc 637 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc
637 638
638 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); 639 DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
639 }; 640 };
640 641
641 642
642 // Flag that indicates how to generate code for the stub GenericBinaryOpStub. 643 // Flag that indicates how to generate code for the stub GenericBinaryOpStub.
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 Major MajorKey() { return StringCompare; } 814 Major MajorKey() { return StringCompare; }
814 int MinorKey() { return 0; } 815 int MinorKey() { return 0; }
815 816
816 void Generate(MacroAssembler* masm); 817 void Generate(MacroAssembler* masm);
817 }; 818 };
818 819
819 820
820 } } // namespace v8::internal 821 } } // namespace v8::internal
821 822
822 #endif // V8_X64_CODEGEN_X64_H_ 823 #endif // V8_X64_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/ia32/full-codegen-ia32.cc ('k') | src/x64/fast-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698