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

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

Issue 7477045: Tentative implementation of string slices (hidden under the flag --string-slices). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Some more suggested changes. Created 9 years, 3 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 1971 matching lines...) Expand 10 before | Expand all | Expand 10 after
1982 1982
1983 1983
1984 LInstruction* LChunkBuilder::DoStringAdd(HStringAdd* instr) { 1984 LInstruction* LChunkBuilder::DoStringAdd(HStringAdd* instr) {
1985 LOperand* left = UseOrConstantAtStart(instr->left()); 1985 LOperand* left = UseOrConstantAtStart(instr->left());
1986 LOperand* right = UseOrConstantAtStart(instr->right()); 1986 LOperand* right = UseOrConstantAtStart(instr->right());
1987 return MarkAsCall(DefineFixed(new LStringAdd(left, right), rax), instr); 1987 return MarkAsCall(DefineFixed(new LStringAdd(left, right), rax), instr);
1988 } 1988 }
1989 1989
1990 1990
1991 LInstruction* LChunkBuilder::DoStringCharCodeAt(HStringCharCodeAt* instr) { 1991 LInstruction* LChunkBuilder::DoStringCharCodeAt(HStringCharCodeAt* instr) {
1992 LOperand* string = UseRegister(instr->string()); 1992 LOperand* string = UseTempRegister(instr->string());
1993 LOperand* index = UseRegisterOrConstant(instr->index()); 1993 LOperand* index = UseTempRegister(instr->index());
1994 LStringCharCodeAt* result = new LStringCharCodeAt(string, index); 1994 LStringCharCodeAt* result = new LStringCharCodeAt(string, index);
1995 return AssignEnvironment(AssignPointerMap(DefineAsRegister(result))); 1995 return AssignEnvironment(AssignPointerMap(DefineAsRegister(result)));
1996 } 1996 }
1997 1997
1998 1998
1999 LInstruction* LChunkBuilder::DoStringCharFromCode(HStringCharFromCode* instr) { 1999 LInstruction* LChunkBuilder::DoStringCharFromCode(HStringCharFromCode* instr) {
2000 LOperand* char_code = UseRegister(instr->value()); 2000 LOperand* char_code = UseRegister(instr->value());
2001 LStringCharFromCode* result = new LStringCharFromCode(char_code); 2001 LStringCharFromCode* result = new LStringCharFromCode(char_code);
2002 return AssignPointerMap(DefineAsRegister(result)); 2002 return AssignPointerMap(DefineAsRegister(result));
2003 } 2003 }
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
2173 LOperand* key = UseOrConstantAtStart(instr->key()); 2173 LOperand* key = UseOrConstantAtStart(instr->key());
2174 LOperand* object = UseOrConstantAtStart(instr->object()); 2174 LOperand* object = UseOrConstantAtStart(instr->object());
2175 LIn* result = new LIn(key, object); 2175 LIn* result = new LIn(key, object);
2176 return MarkAsCall(DefineFixed(result, rax), instr); 2176 return MarkAsCall(DefineFixed(result, rax), instr);
2177 } 2177 }
2178 2178
2179 2179
2180 } } // namespace v8::internal 2180 } } // namespace v8::internal
2181 2181
2182 #endif // V8_TARGET_ARCH_X64 2182 #endif // V8_TARGET_ARCH_X64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698