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

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

Issue 11414262: Revert 13105: "Enable stub generation using Hydrogen/Lithium." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years 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/log.cc ('k') | src/objects.h » ('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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 63
64 static void SetFunctionInfo(Handle<JSFunction> fun, 64 static void SetFunctionInfo(Handle<JSFunction> fun,
65 FunctionLiteral* lit, 65 FunctionLiteral* lit,
66 bool is_toplevel, 66 bool is_toplevel,
67 Handle<Script> script); 67 Handle<Script> script);
68 68
69 static bool RecordPositions(MacroAssembler* masm, 69 static bool RecordPositions(MacroAssembler* masm,
70 int pos, 70 int pos,
71 bool right_here = false); 71 bool right_here = false);
72 72
73 DEFINE_AST_VISITOR_SUBCLASS_METHODS();
74
75 private: 73 private:
76 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); 74 DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
77 }; 75 };
78 76
79 77
80 class StringCharLoadGenerator : public AllStatic { 78 class StringCharLoadGenerator : public AllStatic {
81 public: 79 public:
82 // Generates the code for handling different string types and loading the 80 // Generates the code for handling different string types and loading the
83 // indexed character into |result|. We expect |index| as untagged input and 81 // indexed character into |result|. We expect |index| as untagged input and
84 // |result| as untagged output. 82 // |result| as untagged output.
(...skipping 19 matching lines...) Expand all
104 Register temp2, 102 Register temp2,
105 Register temp3); 103 Register temp3);
106 104
107 private: 105 private:
108 DISALLOW_COPY_AND_ASSIGN(MathExpGenerator); 106 DISALLOW_COPY_AND_ASSIGN(MathExpGenerator);
109 }; 107 };
110 108
111 } } // namespace v8::internal 109 } } // namespace v8::internal
112 110
113 #endif // V8_MIPS_CODEGEN_MIPS_H_ 111 #endif // V8_MIPS_CODEGEN_MIPS_H_
OLDNEW
« no previous file with comments | « src/log.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698