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 2360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2371 return handle(context->number_function()->initial_map()); | 2371 return handle(context->number_function()->initial_map()); |
2372 } else if (type_->Is(Type::Boolean())) { | 2372 } else if (type_->Is(Type::Boolean())) { |
2373 Context* context = current_info()->closure()->context(); | 2373 Context* context = current_info()->closure()->context(); |
2374 context = context->native_context(); | 2374 context = context->native_context(); |
2375 return handle(context->boolean_function()->initial_map()); | 2375 return handle(context->boolean_function()->initial_map()); |
2376 } else if (type_->Is(Type::String())) { | 2376 } else if (type_->Is(Type::String())) { |
2377 Context* context = current_info()->closure()->context(); | 2377 Context* context = current_info()->closure()->context(); |
2378 context = context->native_context(); | 2378 context = context->native_context(); |
2379 return handle(context->string_function()->initial_map()); | 2379 return handle(context->string_function()->initial_map()); |
2380 } else { | 2380 } else { |
2381 return type_->AsClass(); | 2381 return type_->AsClass()->Map(); |
2382 } | 2382 } |
2383 } | 2383 } |
2384 Type* type() const { return type_; } | 2384 Type* type() const { return type_; } |
2385 Handle<String> name() const { return name_; } | 2385 Handle<String> name() const { return name_; } |
2386 | 2386 |
2387 bool IsJSObjectFieldAccessor() { | 2387 bool IsJSObjectFieldAccessor() { |
2388 int offset; // unused | 2388 int offset; // unused |
2389 return Accessors::IsJSObjectFieldAccessor<Type>(type_, name_, &offset); | 2389 return Accessors::IsJSObjectFieldAccessor<Type>(type_, name_, &offset); |
2390 } | 2390 } |
2391 | 2391 |
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2798 } | 2798 } |
2799 | 2799 |
2800 private: | 2800 private: |
2801 HGraphBuilder* builder_; | 2801 HGraphBuilder* builder_; |
2802 }; | 2802 }; |
2803 | 2803 |
2804 | 2804 |
2805 } } // namespace v8::internal | 2805 } } // namespace v8::internal |
2806 | 2806 |
2807 #endif // V8_HYDROGEN_H_ | 2807 #endif // V8_HYDROGEN_H_ |
OLD | NEW |