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

Side by Side Diff: src/stub-cache.h

Issue 40100: Fix the 64-bit build. Implicit conversion from string constant to... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 9 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 | « no previous file | src/stub-cache.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 JSObject* object, 355 JSObject* object,
356 int index, 356 int index,
357 Map* transition, 357 Map* transition,
358 Register receiver_reg, 358 Register receiver_reg,
359 Register name_reg, 359 Register name_reg,
360 Register scratch, 360 Register scratch,
361 Label* miss_label); 361 Label* miss_label);
362 static void GenerateLoadMiss(MacroAssembler* masm, Code::Kind kind); 362 static void GenerateLoadMiss(MacroAssembler* masm, Code::Kind kind);
363 363
364 protected: 364 protected:
365 Object* GetCodeWithFlags(Code::Flags flags, char* name); 365 Object* GetCodeWithFlags(Code::Flags flags, const char* name);
366 Object* GetCodeWithFlags(Code::Flags flags, String* name); 366 Object* GetCodeWithFlags(Code::Flags flags, String* name);
367 367
368 MacroAssembler* masm() { return &masm_; } 368 MacroAssembler* masm() { return &masm_; }
369 369
370 private: 370 private:
371 HandleScope scope_; 371 HandleScope scope_;
372 MacroAssembler masm_; 372 MacroAssembler masm_;
373 }; 373 };
374 374
375 375
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 471
472 const ParameterCount& arguments() { return arguments_; } 472 const ParameterCount& arguments() { return arguments_; }
473 473
474 Object* GetCode(PropertyType type, String* name); 474 Object* GetCode(PropertyType type, String* name);
475 }; 475 };
476 476
477 477
478 } } // namespace v8::internal 478 } } // namespace v8::internal
479 479
480 #endif // V8_STUB_CACHE_H_ 480 #endif // V8_STUB_CACHE_H_
OLDNEW
« no previous file with comments | « no previous file | src/stub-cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698