OLD | NEW |
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 2053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2064 LOperand* string = UseRegisterAtStart(instr->value()); | 2064 LOperand* string = UseRegisterAtStart(instr->value()); |
2065 return DefineAsRegister(new LStringLength(string)); | 2065 return DefineAsRegister(new LStringLength(string)); |
2066 } | 2066 } |
2067 | 2067 |
2068 | 2068 |
2069 LInstruction* LChunkBuilder::DoArrayLiteral(HArrayLiteral* instr) { | 2069 LInstruction* LChunkBuilder::DoArrayLiteral(HArrayLiteral* instr) { |
2070 return MarkAsCall(DefineFixed(new LArrayLiteral, rax), instr); | 2070 return MarkAsCall(DefineFixed(new LArrayLiteral, rax), instr); |
2071 } | 2071 } |
2072 | 2072 |
2073 | 2073 |
2074 LInstruction* LChunkBuilder::DoObjectLiteral(HObjectLiteral* instr) { | 2074 LInstruction* LChunkBuilder::DoObjectLiteralFast(HObjectLiteralFast* instr) { |
2075 return MarkAsCall(DefineFixed(new LObjectLiteral, rax), instr); | 2075 return MarkAsCall(DefineFixed(new LObjectLiteralFast, rax), instr); |
2076 } | 2076 } |
2077 | 2077 |
2078 | 2078 |
| 2079 LInstruction* LChunkBuilder::DoObjectLiteralGeneric( |
| 2080 HObjectLiteralGeneric* instr) { |
| 2081 return MarkAsCall(DefineFixed(new LObjectLiteralGeneric, rax), instr); |
| 2082 } |
| 2083 |
| 2084 |
2079 LInstruction* LChunkBuilder::DoRegExpLiteral(HRegExpLiteral* instr) { | 2085 LInstruction* LChunkBuilder::DoRegExpLiteral(HRegExpLiteral* instr) { |
2080 return MarkAsCall(DefineFixed(new LRegExpLiteral, rax), instr); | 2086 return MarkAsCall(DefineFixed(new LRegExpLiteral, rax), instr); |
2081 } | 2087 } |
2082 | 2088 |
2083 | 2089 |
2084 LInstruction* LChunkBuilder::DoFunctionLiteral(HFunctionLiteral* instr) { | 2090 LInstruction* LChunkBuilder::DoFunctionLiteral(HFunctionLiteral* instr) { |
2085 return MarkAsCall(DefineFixed(new LFunctionLiteral, rax), instr); | 2091 return MarkAsCall(DefineFixed(new LFunctionLiteral, rax), instr); |
2086 } | 2092 } |
2087 | 2093 |
2088 | 2094 |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2230 LOperand* key = UseOrConstantAtStart(instr->key()); | 2236 LOperand* key = UseOrConstantAtStart(instr->key()); |
2231 LOperand* object = UseOrConstantAtStart(instr->object()); | 2237 LOperand* object = UseOrConstantAtStart(instr->object()); |
2232 LIn* result = new LIn(key, object); | 2238 LIn* result = new LIn(key, object); |
2233 return MarkAsCall(DefineFixed(result, rax), instr); | 2239 return MarkAsCall(DefineFixed(result, rax), instr); |
2234 } | 2240 } |
2235 | 2241 |
2236 | 2242 |
2237 } } // namespace v8::internal | 2243 } } // namespace v8::internal |
2238 | 2244 |
2239 #endif // V8_TARGET_ARCH_X64 | 2245 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |