OLD | NEW |
1 // Copyright 2017 the V8 project authors. All rights reserved. | 1 // Copyright 2017 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 #include "src/interpreter/interpreter-intrinsics-generator.h" | 5 #include "src/interpreter/interpreter-intrinsics-generator.h" |
6 | 6 |
7 #include "src/allocation.h" | 7 #include "src/allocation.h" |
8 #include "src/builtins/builtins.h" | 8 #include "src/builtins/builtins.h" |
9 #include "src/code-factory.h" | 9 #include "src/code-factory.h" |
10 #include "src/frames.h" | 10 #include "src/frames.h" |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 Node* IntrinsicsGenerator::IsJSProxy(Node* input, Node* arg_count, | 190 Node* IntrinsicsGenerator::IsJSProxy(Node* input, Node* arg_count, |
191 Node* context) { | 191 Node* context) { |
192 return IsInstanceType(input, JS_PROXY_TYPE); | 192 return IsInstanceType(input, JS_PROXY_TYPE); |
193 } | 193 } |
194 | 194 |
195 Node* IntrinsicsGenerator::IsTypedArray(Node* input, Node* arg_count, | 195 Node* IntrinsicsGenerator::IsTypedArray(Node* input, Node* arg_count, |
196 Node* context) { | 196 Node* context) { |
197 return IsInstanceType(input, JS_TYPED_ARRAY_TYPE); | 197 return IsInstanceType(input, JS_TYPED_ARRAY_TYPE); |
198 } | 198 } |
199 | 199 |
| 200 Node* IntrinsicsGenerator::IsJSMap(Node* input, Node* arg_count, |
| 201 Node* context) { |
| 202 return IsInstanceType(input, JS_MAP_TYPE); |
| 203 } |
| 204 |
| 205 Node* IntrinsicsGenerator::IsJSMapIterator(Node* input, Node* arg_count, |
| 206 Node* context) { |
| 207 return IsInstanceType(input, JS_MAP_ITERATOR_TYPE); |
| 208 } |
| 209 |
| 210 Node* IntrinsicsGenerator::IsJSSet(Node* input, Node* arg_count, |
| 211 Node* context) { |
| 212 return IsInstanceType(input, JS_SET_TYPE); |
| 213 } |
| 214 |
| 215 Node* IntrinsicsGenerator::IsJSSetIterator(Node* input, Node* arg_count, |
| 216 Node* context) { |
| 217 return IsInstanceType(input, JS_SET_ITERATOR_TYPE); |
| 218 } |
| 219 |
| 220 Node* IntrinsicsGenerator::IsJSWeakMap(Node* input, Node* arg_count, |
| 221 Node* context) { |
| 222 return IsInstanceType(input, JS_WEAK_MAP_TYPE); |
| 223 } |
| 224 |
| 225 Node* IntrinsicsGenerator::IsJSWeakSet(Node* input, Node* arg_count, |
| 226 Node* context) { |
| 227 return IsInstanceType(input, JS_WEAK_SET_TYPE); |
| 228 } |
| 229 |
200 Node* IntrinsicsGenerator::IsSmi(Node* input, Node* arg_count, Node* context) { | 230 Node* IntrinsicsGenerator::IsSmi(Node* input, Node* arg_count, Node* context) { |
201 // TODO(ishell): Use SelectBooleanConstant here. | 231 // TODO(ishell): Use SelectBooleanConstant here. |
202 InterpreterAssembler::Variable return_value(assembler_, | 232 InterpreterAssembler::Variable return_value(assembler_, |
203 MachineRepresentation::kTagged); | 233 MachineRepresentation::kTagged); |
204 InterpreterAssembler::Label if_smi(assembler_), if_not_smi(assembler_), | 234 InterpreterAssembler::Label if_smi(assembler_), if_not_smi(assembler_), |
205 end(assembler_); | 235 end(assembler_); |
206 | 236 |
207 Node* arg = __ LoadRegister(input); | 237 Node* arg = __ LoadRegister(input); |
208 | 238 |
209 __ Branch(__ TaggedIsSmi(arg), &if_smi, &if_not_smi); | 239 __ Branch(__ TaggedIsSmi(arg), &if_smi, &if_not_smi); |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 Node* comparison = __ Word32Equal(actual, __ Int32Constant(expected)); | 422 Node* comparison = __ Word32Equal(actual, __ Int32Constant(expected)); |
393 __ GotoIf(comparison, &match); | 423 __ GotoIf(comparison, &match); |
394 __ Abort(kWrongArgumentCountForInvokeIntrinsic); | 424 __ Abort(kWrongArgumentCountForInvokeIntrinsic); |
395 __ Goto(&match); | 425 __ Goto(&match); |
396 __ Bind(&match); | 426 __ Bind(&match); |
397 } | 427 } |
398 | 428 |
399 } // namespace interpreter | 429 } // namespace interpreter |
400 } // namespace internal | 430 } // namespace internal |
401 } // namespace v8 | 431 } // namespace v8 |
OLD | NEW |