OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #if V8_TARGET_ARCH_X64 | 5 #if V8_TARGET_ARCH_X64 |
6 | 6 |
7 #include "src/base/bits.h" | 7 #include "src/base/bits.h" |
8 #include "src/base/division-by-constant.h" | 8 #include "src/base/division-by-constant.h" |
9 #include "src/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
(...skipping 3922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3933 Check(not_equal, kOperandIsASmiAndNotABoundFunction); | 3933 Check(not_equal, kOperandIsASmiAndNotABoundFunction); |
3934 Push(object); | 3934 Push(object); |
3935 CmpObjectType(object, JS_BOUND_FUNCTION_TYPE, object); | 3935 CmpObjectType(object, JS_BOUND_FUNCTION_TYPE, object); |
3936 Pop(object); | 3936 Pop(object); |
3937 Check(equal, kOperandIsNotABoundFunction); | 3937 Check(equal, kOperandIsNotABoundFunction); |
3938 } | 3938 } |
3939 } | 3939 } |
3940 | 3940 |
3941 void MacroAssembler::AssertGeneratorObject(Register object) { | 3941 void MacroAssembler::AssertGeneratorObject(Register object) { |
3942 if (emit_debug_code()) { | 3942 if (emit_debug_code()) { |
3943 Label ok; | |
3943 testb(object, Immediate(kSmiTagMask)); | 3944 testb(object, Immediate(kSmiTagMask)); |
3944 Check(not_equal, kOperandIsASmiAndNotAGeneratorObject); | 3945 Check(not_equal, kOperandIsASmiAndNotAGeneratorObject); |
3946 | |
3945 Push(object); | 3947 Push(object); |
3946 CmpObjectType(object, JS_GENERATOR_OBJECT_TYPE, object); | 3948 CmpObjectType(object, JS_GENERATOR_OBJECT_TYPE, object); |
caitp
2017/01/10 04:13:42
Need to alter these assertions in order to reuse t
| |
3947 Pop(object); | 3949 Pop(object); |
3950 j(equal, &ok, Label::kNear); | |
3951 | |
3952 Push(object); | |
3953 CmpObjectType(object, JS_ASYNC_GENERATOR_OBJECT_TYPE, object); | |
3954 Pop(object); | |
3948 Check(equal, kOperandIsNotAGeneratorObject); | 3955 Check(equal, kOperandIsNotAGeneratorObject); |
3956 | |
3957 bind(&ok); | |
3949 } | 3958 } |
3950 } | 3959 } |
3951 | 3960 |
3952 void MacroAssembler::AssertReceiver(Register object) { | 3961 void MacroAssembler::AssertReceiver(Register object) { |
3953 if (emit_debug_code()) { | 3962 if (emit_debug_code()) { |
3954 testb(object, Immediate(kSmiTagMask)); | 3963 testb(object, Immediate(kSmiTagMask)); |
3955 Check(not_equal, kOperandIsASmiAndNotAReceiver); | 3964 Check(not_equal, kOperandIsASmiAndNotAReceiver); |
3956 Push(object); | 3965 Push(object); |
3957 STATIC_ASSERT(LAST_TYPE == LAST_JS_RECEIVER_TYPE); | 3966 STATIC_ASSERT(LAST_TYPE == LAST_JS_RECEIVER_TYPE); |
3958 CmpObjectType(object, FIRST_JS_RECEIVER_TYPE, object); | 3967 CmpObjectType(object, FIRST_JS_RECEIVER_TYPE, object); |
(...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5297 movl(rax, dividend); | 5306 movl(rax, dividend); |
5298 shrl(rax, Immediate(31)); | 5307 shrl(rax, Immediate(31)); |
5299 addl(rdx, rax); | 5308 addl(rdx, rax); |
5300 } | 5309 } |
5301 | 5310 |
5302 | 5311 |
5303 } // namespace internal | 5312 } // namespace internal |
5304 } // namespace v8 | 5313 } // namespace v8 |
5305 | 5314 |
5306 #endif // V8_TARGET_ARCH_X64 | 5315 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |