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

Side by Side Diff: src/x64/code-stubs-x64.cc

Issue 240053010: Return Object* instead of MaybeObject* from runtime calls. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix string allocation Created 6 years, 8 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
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 2684 matching lines...) Expand 10 before | Expand all | Expand 10 after
2695 // Jump to a faked try block that does the invoke, with a faked catch 2695 // Jump to a faked try block that does the invoke, with a faked catch
2696 // block that sets the pending exception. 2696 // block that sets the pending exception.
2697 __ jmp(&invoke); 2697 __ jmp(&invoke);
2698 __ bind(&handler_entry); 2698 __ bind(&handler_entry);
2699 handler_offset_ = handler_entry.pos(); 2699 handler_offset_ = handler_entry.pos();
2700 // Caught exception: Store result (exception) in the pending exception 2700 // Caught exception: Store result (exception) in the pending exception
2701 // field in the JSEnv and return a failure sentinel. 2701 // field in the JSEnv and return a failure sentinel.
2702 ExternalReference pending_exception(Isolate::kPendingExceptionAddress, 2702 ExternalReference pending_exception(Isolate::kPendingExceptionAddress,
2703 isolate); 2703 isolate);
2704 __ Store(pending_exception, rax); 2704 __ Store(pending_exception, rax);
2705 __ Move(rax, Failure::Exception(), Assembler::RelocInfoNone()); 2705 __ LoadRoot(rax, Heap::kExceptionRootIndex);
2706 __ jmp(&exit); 2706 __ jmp(&exit);
2707 2707
2708 // Invoke: Link this frame into the handler chain. There's only one 2708 // Invoke: Link this frame into the handler chain. There's only one
2709 // handler block in this code object, so its index is 0. 2709 // handler block in this code object, so its index is 0.
2710 __ bind(&invoke); 2710 __ bind(&invoke);
2711 __ PushTryHandler(StackHandler::JS_ENTRY, 0); 2711 __ PushTryHandler(StackHandler::JS_ENTRY, 0);
2712 2712
2713 // Clear any pending exceptions. 2713 // Clear any pending exceptions.
2714 __ LoadRoot(rax, Heap::kTheHoleValueRootIndex); 2714 __ LoadRoot(rax, Heap::kTheHoleValueRootIndex);
2715 __ Store(pending_exception, rax); 2715 __ Store(pending_exception, rax);
(...skipping 2312 matching lines...) Expand 10 before | Expand all | Expand 10 after
5028 return_value_operand, 5028 return_value_operand,
5029 NULL); 5029 NULL);
5030 } 5030 }
5031 5031
5032 5032
5033 #undef __ 5033 #undef __
5034 5034
5035 } } // namespace v8::internal 5035 } } // namespace v8::internal
5036 5036
5037 #endif // V8_TARGET_ARCH_X64 5037 #endif // V8_TARGET_ARCH_X64
OLDNEW
« src/runtime.cc ('K') | « src/stub-cache.cc ('k') | src/x64/regexp-macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698