OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 5 #ifndef V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
6 #define V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 6 #define V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 // Clients of this interface shouldn't depend on lots of compiler internals. | 10 // Clients of this interface shouldn't depend on lots of compiler internals. |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 template <typename T> | 382 template <typename T> |
383 Node* BitFieldDecode(Node* word32) { | 383 Node* BitFieldDecode(Node* word32) { |
384 return BitFieldDecode(word32, T::kShift, T::kMask); | 384 return BitFieldDecode(word32, T::kShift, T::kMask); |
385 } | 385 } |
386 | 386 |
387 Node* BitFieldDecode(Node* word32, uint32_t shift, uint32_t mask); | 387 Node* BitFieldDecode(Node* word32, uint32_t shift, uint32_t mask); |
388 | 388 |
389 // Conversions. | 389 // Conversions. |
390 Node* ChangeFloat64ToTagged(Node* value); | 390 Node* ChangeFloat64ToTagged(Node* value); |
391 Node* ChangeInt32ToTagged(Node* value); | 391 Node* ChangeInt32ToTagged(Node* value); |
| 392 Node* ChangeUint32ToTagged(Node* value); |
392 Node* TruncateTaggedToFloat64(Node* context, Node* value); | 393 Node* TruncateTaggedToFloat64(Node* context, Node* value); |
393 Node* TruncateTaggedToWord32(Node* context, Node* value); | 394 Node* TruncateTaggedToWord32(Node* context, Node* value); |
394 | 395 |
395 // Type conversions. | 396 // Type conversions. |
396 // Throws a TypeError for {method_name} if {value} is not coercible to Object, | 397 // Throws a TypeError for {method_name} if {value} is not coercible to Object, |
397 // or returns the {value} converted to a String otherwise. | 398 // or returns the {value} converted to a String otherwise. |
398 Node* ToThisString(Node* context, Node* value, char const* method_name); | 399 Node* ToThisString(Node* context, Node* value, char const* method_name); |
399 | 400 |
400 // String helpers. | 401 // String helpers. |
401 // Load a character from a String (might flatten a ConsString). | 402 // Load a character from a String (might flatten a ConsString). |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 // Map of variables to the list of value nodes that have been added from each | 504 // Map of variables to the list of value nodes that have been added from each |
504 // merge path in their order of merging. | 505 // merge path in their order of merging. |
505 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 506 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
506 }; | 507 }; |
507 | 508 |
508 } // namespace compiler | 509 } // namespace compiler |
509 } // namespace internal | 510 } // namespace internal |
510 } // namespace v8 | 511 } // namespace v8 |
511 | 512 |
512 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 513 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
OLD | NEW |