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

Side by Side Diff: src/code-stubs.h

Issue 7860011: Rename SmartPointer to SmartArrayPointer. (Closed) Base URL: git://github.com/v8/v8.git@bleeding_edge
Patch Set: rebase it again to get more fixes Created 9 years, 3 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/ast.cc ('k') | src/code-stubs.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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 174
175 // BinaryOpStub needs to override this. 175 // BinaryOpStub needs to override this.
176 virtual int GetCodeKind(); 176 virtual int GetCodeKind();
177 177
178 // BinaryOpStub needs to override this. 178 // BinaryOpStub needs to override this.
179 virtual InlineCacheState GetICState() { 179 virtual InlineCacheState GetICState() {
180 return UNINITIALIZED; 180 return UNINITIALIZED;
181 } 181 }
182 182
183 // Returns a name for logging/debugging purposes. 183 // Returns a name for logging/debugging purposes.
184 SmartPointer<const char> GetName(); 184 SmartArrayPointer<const char> GetName();
185 virtual void PrintName(StringStream* stream) { 185 virtual void PrintName(StringStream* stream) {
186 stream->Add("%s", MajorName(MajorKey(), false)); 186 stream->Add("%s", MajorName(MajorKey(), false));
187 } 187 }
188 188
189 // Returns whether the code generated for this stub needs to be allocated as 189 // Returns whether the code generated for this stub needs to be allocated as
190 // a fixed (non-moveable) code object. 190 // a fixed (non-moveable) code object.
191 virtual bool NeedsImmovableCode() { return false; } 191 virtual bool NeedsImmovableCode() { return false; }
192 192
193 // Computes the key based on major and minor. 193 // Computes the key based on major and minor.
194 uint32_t GetKey() { 194 uint32_t GetKey() {
(...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 bool result); 958 bool result);
959 void GenerateTypeTransition(MacroAssembler* masm); 959 void GenerateTypeTransition(MacroAssembler* masm);
960 960
961 Register tos_; 961 Register tos_;
962 Types types_; 962 Types types_;
963 }; 963 };
964 964
965 } } // namespace v8::internal 965 } } // namespace v8::internal
966 966
967 #endif // V8_CODE_STUBS_H_ 967 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « src/ast.cc ('k') | src/code-stubs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698