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

Side by Side Diff: src/x64/macro-assembler-x64.h

Issue 96573002: Revert r18131 and r18139 "Clean up in the CallStubCompiler". (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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/stub-cache.cc ('k') | src/x64/macro-assembler-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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 CallKind call_kind); 364 CallKind call_kind);
365 365
366 // Invoke the JavaScript function in the given register. Changes the 366 // Invoke the JavaScript function in the given register. Changes the
367 // current context to the context in the function before invoking. 367 // current context to the context in the function before invoking.
368 void InvokeFunction(Register function, 368 void InvokeFunction(Register function,
369 const ParameterCount& actual, 369 const ParameterCount& actual,
370 InvokeFlag flag, 370 InvokeFlag flag,
371 const CallWrapper& call_wrapper, 371 const CallWrapper& call_wrapper,
372 CallKind call_kind); 372 CallKind call_kind);
373 373
374 void InvokeFunction(Register function,
375 const ParameterCount& expected,
376 const ParameterCount& actual,
377 InvokeFlag flag,
378 const CallWrapper& call_wrapper,
379 CallKind call_kind);
380
381 void InvokeFunction(Handle<JSFunction> function, 374 void InvokeFunction(Handle<JSFunction> function,
382 const ParameterCount& expected, 375 const ParameterCount& expected,
383 const ParameterCount& actual, 376 const ParameterCount& actual,
384 InvokeFlag flag, 377 InvokeFlag flag,
385 const CallWrapper& call_wrapper, 378 const CallWrapper& call_wrapper,
386 CallKind call_kind); 379 CallKind call_kind);
387 380
388 // Invoke specified builtin JavaScript function. Adds an entry to 381 // Invoke specified builtin JavaScript function. Adds an entry to
389 // the unresolved list if the name does not resolve. 382 // the unresolved list if the name does not resolve.
390 void InvokeBuiltin(Builtins::JavaScript id, 383 void InvokeBuiltin(Builtins::JavaScript id,
(...skipping 1228 matching lines...) Expand 10 before | Expand all | Expand 10 after
1619 masm->popfq(); \ 1612 masm->popfq(); \
1620 } \ 1613 } \
1621 masm-> 1614 masm->
1622 #else 1615 #else
1623 #define ACCESS_MASM(masm) masm-> 1616 #define ACCESS_MASM(masm) masm->
1624 #endif 1617 #endif
1625 1618
1626 } } // namespace v8::internal 1619 } } // namespace v8::internal
1627 1620
1628 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1621 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/stub-cache.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698