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

Side by Side Diff: src/hydrogen.h

Issue 237963016: Revert "Implement structural function and array types" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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/arm64/stub-cache-arm64.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »
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 2362 matching lines...) Expand 10 before | Expand all | Expand 10 after
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()->Map(); 2383 return type_->AsClass();
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
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_
OLDNEW
« no previous file with comments | « src/arm64/stub-cache-arm64.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698