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