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

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

Issue 197643008: Macro assembler functions for pretenure call new. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | « src/arm/macro-assembler-arm.cc ('k') | src/ia32/macro-assembler-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 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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 542
543 // Abort execution if argument is a smi, enabled via --debug-code. 543 // Abort execution if argument is a smi, enabled via --debug-code.
544 void AssertNotSmi(Register object); 544 void AssertNotSmi(Register object);
545 545
546 // Abort execution if argument is not a string, enabled via --debug-code. 546 // Abort execution if argument is not a string, enabled via --debug-code.
547 void AssertString(Register object); 547 void AssertString(Register object);
548 548
549 // Abort execution if argument is not a name, enabled via --debug-code. 549 // Abort execution if argument is not a name, enabled via --debug-code.
550 void AssertName(Register object); 550 void AssertName(Register object);
551 551
552 // Abort execution if argument is not undefined or an AllocationSite, enabled
553 // via --debug-code.
554 void AssertUndefinedOrAllocationSite(Register object);
555
552 // --------------------------------------------------------------------------- 556 // ---------------------------------------------------------------------------
553 // Exception handling 557 // Exception handling
554 558
555 // Push a new try handler and link it into try handler chain. 559 // Push a new try handler and link it into try handler chain.
556 void PushTryHandler(StackHandler::Kind kind, int handler_index); 560 void PushTryHandler(StackHandler::Kind kind, int handler_index);
557 561
558 // Unlink the stack handler on top of the stack from the try handler chain. 562 // Unlink the stack handler on top of the stack from the try handler chain.
559 void PopTryHandler(); 563 void PopTryHandler();
560 564
561 // Throw to the top handler in the try hander chain. 565 // Throw to the top handler in the try hander chain.
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after
1121 } \ 1125 } \
1122 masm-> 1126 masm->
1123 #else 1127 #else
1124 #define ACCESS_MASM(masm) masm-> 1128 #define ACCESS_MASM(masm) masm->
1125 #endif 1129 #endif
1126 1130
1127 1131
1128 } } // namespace v8::internal 1132 } } // namespace v8::internal
1129 1133
1130 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ 1134 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/ia32/macro-assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698