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

Side by Side Diff: src/ia32/codegen-ia32.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/full-codegen.cc ('k') | src/ia32/fast-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 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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after
626 // called from spilled code, because they do not leave the virtual frame 626 // called from spilled code, because they do not leave the virtual frame
627 // in a spilled state. 627 // in a spilled state.
628 bool in_spilled_code_; 628 bool in_spilled_code_;
629 629
630 static InlineRuntimeLUT kInlineRuntimeLUT[]; 630 static InlineRuntimeLUT kInlineRuntimeLUT[];
631 631
632 friend class VirtualFrame; 632 friend class VirtualFrame;
633 friend class JumpTarget; 633 friend class JumpTarget;
634 friend class Reference; 634 friend class Reference;
635 friend class Result; 635 friend class Result;
636 friend class FastCodeGenerator;
636 friend class FullCodeGenerator; 637 friend class FullCodeGenerator;
637 friend class FullCodeGenSyntaxChecker; 638 friend class FullCodeGenSyntaxChecker;
638 639
639 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc 640 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc
640 641
641 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); 642 DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
642 }; 643 };
643 644
644 645
645 // Flag that indicates how to generate code for the stub GenericBinaryOpStub. 646 // Flag that indicates how to generate code for the stub GenericBinaryOpStub.
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 Major MajorKey() { return StringCompare; } 820 Major MajorKey() { return StringCompare; }
820 int MinorKey() { return 0; } 821 int MinorKey() { return 0; }
821 822
822 void Generate(MacroAssembler* masm); 823 void Generate(MacroAssembler* masm);
823 }; 824 };
824 825
825 826
826 } } // namespace v8::internal 827 } } // namespace v8::internal
827 828
828 #endif // V8_IA32_CODEGEN_IA32_H_ 829 #endif // V8_IA32_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/full-codegen.cc ('k') | src/ia32/fast-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698