Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: src/hydrogen.h

Issue 228263005: Implement structural function and array types (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Eps Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/accessors.cc ('k') | src/hydrogen.cc » ('j') | src/types.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/accessors.cc ('k') | src/hydrogen.cc » ('j') | src/types.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698