OLD | NEW |
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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 } | 388 } |
389 | 389 |
390 | 390 |
391 Handle<Type> TypeFeedbackOracle::UnaryType(TypeFeedbackId id) { | 391 Handle<Type> TypeFeedbackOracle::UnaryType(TypeFeedbackId id) { |
392 Handle<Object> object = GetInfo(id); | 392 Handle<Object> object = GetInfo(id); |
393 if (!object->IsCode()) { | 393 if (!object->IsCode()) { |
394 return handle(Type::None(), isolate()); | 394 return handle(Type::None(), isolate()); |
395 } | 395 } |
396 Handle<Code> code = Handle<Code>::cast(object); | 396 Handle<Code> code = Handle<Code>::cast(object); |
397 ASSERT(code->is_unary_op_stub()); | 397 ASSERT(code->is_unary_op_stub()); |
398 return UnaryOpStub(code->extra_ic_state()).GetType(isolate()); | 398 return UnaryOpIC::TypeInfoToType( |
| 399 static_cast<UnaryOpIC::TypeInfo>(code->unary_op_type()), isolate()); |
399 } | 400 } |
400 | 401 |
401 | 402 |
402 void TypeFeedbackOracle::BinaryType(TypeFeedbackId id, | 403 void TypeFeedbackOracle::BinaryType(TypeFeedbackId id, |
403 Handle<Type>* left, | 404 Handle<Type>* left, |
404 Handle<Type>* right, | 405 Handle<Type>* right, |
405 Handle<Type>* result, | 406 Handle<Type>* result, |
406 Maybe<int>* fixed_right_arg) { | 407 Maybe<int>* fixed_right_arg) { |
407 Handle<Object> object = GetInfo(id); | 408 Handle<Object> object = GetInfo(id); |
408 if (!object->IsCode()) { | 409 if (!object->IsCode()) { |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
690 MaybeObject* maybe_result = dictionary_->AtNumberPut(IdToKey(ast_id), target); | 691 MaybeObject* maybe_result = dictionary_->AtNumberPut(IdToKey(ast_id), target); |
691 USE(maybe_result); | 692 USE(maybe_result); |
692 #ifdef DEBUG | 693 #ifdef DEBUG |
693 Object* result = NULL; | 694 Object* result = NULL; |
694 // Dictionary has been allocated with sufficient size for all elements. | 695 // Dictionary has been allocated with sufficient size for all elements. |
695 ASSERT(maybe_result->ToObject(&result)); | 696 ASSERT(maybe_result->ToObject(&result)); |
696 ASSERT(*dictionary_ == result); | 697 ASSERT(*dictionary_ == result); |
697 #endif | 698 #endif |
698 } | 699 } |
699 | 700 |
700 | |
701 Representation Representation::FromType(TypeInfo info) { | |
702 if (info.IsUninitialized()) return Representation::None(); | |
703 // TODO(verwaest): Return Smi rather than Integer32. | |
704 if (info.IsSmi()) return Representation::Integer32(); | |
705 if (info.IsInteger32()) return Representation::Integer32(); | |
706 if (info.IsDouble()) return Representation::Double(); | |
707 if (info.IsNumber()) return Representation::Double(); | |
708 return Representation::Tagged(); | |
709 } | |
710 | |
711 | |
712 } } // namespace v8::internal | 701 } } // namespace v8::internal |
OLD | NEW |