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

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

Issue 549108: Rename the toplevel code generator from "Fast" to "Full". It was... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 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/ia32/fast-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 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 // called from spilled code, because they do not leave the virtual frame 604 // called from spilled code, because they do not leave the virtual frame
605 // in a spilled state. 605 // in a spilled state.
606 bool in_spilled_code_; 606 bool in_spilled_code_;
607 607
608 static InlineRuntimeLUT kInlineRuntimeLUT[]; 608 static InlineRuntimeLUT kInlineRuntimeLUT[];
609 609
610 friend class VirtualFrame; 610 friend class VirtualFrame;
611 friend class JumpTarget; 611 friend class JumpTarget;
612 friend class Reference; 612 friend class Reference;
613 friend class Result; 613 friend class Result;
614 friend class FastCodeGenerator; 614 friend class FullCodeGenerator;
615 friend class CodeGenSelector; 615 friend class FullCodeGenSyntaxChecker;
616 616
617 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc 617 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc
618 618
619 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); 619 DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
620 }; 620 };
621 621
622 622
623 // Flag that indicates how to generate code for the stub GenericBinaryOpStub. 623 // Flag that indicates how to generate code for the stub GenericBinaryOpStub.
624 enum GenericBinaryFlags { 624 enum GenericBinaryFlags {
625 NO_GENERIC_BINARY_FLAGS = 0, 625 NO_GENERIC_BINARY_FLAGS = 0,
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 Major MajorKey() { return StringCompare; } 761 Major MajorKey() { return StringCompare; }
762 int MinorKey() { return 0; } 762 int MinorKey() { return 0; }
763 763
764 void Generate(MacroAssembler* masm); 764 void Generate(MacroAssembler* masm);
765 }; 765 };
766 766
767 767
768 } } // namespace v8::internal 768 } } // namespace v8::internal
769 769
770 #endif // V8_X64_CODEGEN_X64_H_ 770 #endif // V8_X64_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/ia32/fast-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