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

Side by Side Diff: src/x64/lithium-codegen-x64.cc

Issue 6240012: Optimize calls to object literal properties that are initialized with a funct... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: added x64 and arm code. Created 9 years, 10 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
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 1863 matching lines...) Expand 10 before | Expand all | Expand 10 after
1874 void LCodeGen::DoArrayLiteral(LArrayLiteral* instr) { 1874 void LCodeGen::DoArrayLiteral(LArrayLiteral* instr) {
1875 Abort("Unimplemented: %s", "DoArrayLiteral"); 1875 Abort("Unimplemented: %s", "DoArrayLiteral");
1876 } 1876 }
1877 1877
1878 1878
1879 void LCodeGen::DoObjectLiteral(LObjectLiteral* instr) { 1879 void LCodeGen::DoObjectLiteral(LObjectLiteral* instr) {
1880 Abort("Unimplemented: %s", "DoObjectLiteral"); 1880 Abort("Unimplemented: %s", "DoObjectLiteral");
1881 } 1881 }
1882 1882
1883 1883
1884 void LCodeGen::DoToFastProperties(LToFastProperties* instr) {
1885 Abort("Unimplemented: %s", "DoToFastProperties");
1886 }
1887
1888
1884 void LCodeGen::DoRegExpLiteral(LRegExpLiteral* instr) { 1889 void LCodeGen::DoRegExpLiteral(LRegExpLiteral* instr) {
1885 Abort("Unimplemented: %s", "DoRegExpLiteral"); 1890 Abort("Unimplemented: %s", "DoRegExpLiteral");
1886 } 1891 }
1887 1892
1888 1893
1889 void LCodeGen::DoFunctionLiteral(LFunctionLiteral* instr) { 1894 void LCodeGen::DoFunctionLiteral(LFunctionLiteral* instr) {
1890 Abort("Unimplemented: %s", "DoFunctionLiteral"); 1895 Abort("Unimplemented: %s", "DoFunctionLiteral");
1891 } 1896 }
1892 1897
1893 1898
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
2012 2017
2013 void LCodeGen::DoOsrEntry(LOsrEntry* instr) { 2018 void LCodeGen::DoOsrEntry(LOsrEntry* instr) {
2014 Abort("Unimplemented: %s", "DoOsrEntry"); 2019 Abort("Unimplemented: %s", "DoOsrEntry");
2015 } 2020 }
2016 2021
2017 #undef __ 2022 #undef __
2018 2023
2019 } } // namespace v8::internal 2024 } } // namespace v8::internal
2020 2025
2021 #endif // V8_TARGET_ARCH_X64 2026 #endif // V8_TARGET_ARCH_X64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698