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

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: Created 9 years, 4 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 1973 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 = UseRegister(instr->string());
1993 LOperand* index = UseRegisterOrConstant(instr->index()); 1993 LOperand* index = UseRegisterOrConstant(instr->index());
1994 LStringCharCodeAt* result = new LStringCharCodeAt(string, index); 1994 LOperand* temp = TempRegister();
1995 LStringCharCodeAt* result = new LStringCharCodeAt(string, index, temp);
1995 return AssignEnvironment(AssignPointerMap(DefineAsRegister(result))); 1996 return AssignEnvironment(AssignPointerMap(DefineAsRegister(result)));
1996 } 1997 }
1997 1998
1998 1999
1999 LInstruction* LChunkBuilder::DoStringCharFromCode(HStringCharFromCode* instr) { 2000 LInstruction* LChunkBuilder::DoStringCharFromCode(HStringCharFromCode* instr) {
2000 LOperand* char_code = UseRegister(instr->value()); 2001 LOperand* char_code = UseRegister(instr->value());
2001 LStringCharFromCode* result = new LStringCharFromCode(char_code); 2002 LStringCharFromCode* result = new LStringCharFromCode(char_code);
2002 return AssignPointerMap(DefineAsRegister(result)); 2003 return AssignPointerMap(DefineAsRegister(result));
2003 } 2004 }
2004 2005
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
2173 LOperand* key = UseOrConstantAtStart(instr->key()); 2174 LOperand* key = UseOrConstantAtStart(instr->key());
2174 LOperand* object = UseOrConstantAtStart(instr->object()); 2175 LOperand* object = UseOrConstantAtStart(instr->object());
2175 LIn* result = new LIn(key, object); 2176 LIn* result = new LIn(key, object);
2176 return MarkAsCall(DefineFixed(result, rax), instr); 2177 return MarkAsCall(DefineFixed(result, rax), instr);
2177 } 2178 }
2178 2179
2179 2180
2180 } } // namespace v8::internal 2181 } } // namespace v8::internal
2181 2182
2182 #endif // V8_TARGET_ARCH_X64 2183 #endif // V8_TARGET_ARCH_X64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698