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

Side by Side Diff: src/ia32/virtual-frame-ia32.h

Issue 573009: Change LoadIC interface on ia32 to take arguments in registers. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' 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 | Annotate | Revision Log
« no previous file with comments | « src/ia32/stub-cache-ia32.cc ('k') | src/ia32/virtual-frame-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 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 326
327 #ifdef ENABLE_DEBUGGER_SUPPORT 327 #ifdef ENABLE_DEBUGGER_SUPPORT
328 void DebugBreak(); 328 void DebugBreak();
329 #endif 329 #endif
330 330
331 // Invoke builtin given the number of arguments it expects on (and 331 // Invoke builtin given the number of arguments it expects on (and
332 // removes from) the stack. 332 // removes from) the stack.
333 Result InvokeBuiltin(Builtins::JavaScript id, InvokeFlag flag, int arg_count); 333 Result InvokeBuiltin(Builtins::JavaScript id, InvokeFlag flag, int arg_count);
334 334
335 // Call load IC. Name and receiver are found on top of the frame. 335 // Call load IC. Name and receiver are found on top of the frame.
336 // Receiver is not dropped. 336 // Both are dropped.
337 Result CallLoadIC(RelocInfo::Mode mode); 337 Result CallLoadIC(RelocInfo::Mode mode);
338 338
339 // Call keyed load IC. Key and receiver are found on top of the 339 // Call keyed load IC. Key and receiver are found on top of the
340 // frame. They are not dropped. 340 // frame. They are not dropped.
341 Result CallKeyedLoadIC(RelocInfo::Mode mode); 341 Result CallKeyedLoadIC(RelocInfo::Mode mode);
342 342
343 // Call store IC. Name, value, and receiver are found on top of the 343 // Call store IC. Name, value, and receiver are found on top of the
344 // frame. Receiver is not dropped. 344 // frame. Receiver is not dropped.
345 Result CallStoreIC(); 345 Result CallStoreIC();
346 346
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 bool Equals(VirtualFrame* other); 575 bool Equals(VirtualFrame* other);
576 576
577 // Classes that need raw access to the elements_ array. 577 // Classes that need raw access to the elements_ array.
578 friend class DeferredCode; 578 friend class DeferredCode;
579 friend class JumpTarget; 579 friend class JumpTarget;
580 }; 580 };
581 581
582 } } // namespace v8::internal 582 } } // namespace v8::internal
583 583
584 #endif // V8_IA32_VIRTUAL_FRAME_IA32_H_ 584 #endif // V8_IA32_VIRTUAL_FRAME_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/stub-cache-ia32.cc ('k') | src/ia32/virtual-frame-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698