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

Side by Side Diff: src/full-codegen/s390/full-codegen-s390.cc

Issue 1868173002: Version 5.1.294.1 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@5.1.294
Patch Set: Created 4 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
« no previous file with comments | « src/full-codegen/ppc/full-codegen-ppc.cc ('k') | src/full-codegen/x64/full-codegen-x64.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #if V8_TARGET_ARCH_S390 5 #if V8_TARGET_ARCH_S390
6 6
7 #include "src/ast/scopes.h" 7 #include "src/ast/scopes.h"
8 #include "src/code-factory.h" 8 #include "src/code-factory.h"
9 #include "src/code-stubs.h" 9 #include "src/code-stubs.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after
1341 __ LoadSmiLiteral(r4, Smi::FromInt(expr->literal_index())); 1341 __ LoadSmiLiteral(r4, Smi::FromInt(expr->literal_index()));
1342 __ mov(r3, Operand(constant_properties)); 1342 __ mov(r3, Operand(constant_properties));
1343 int flags = expr->ComputeFlags(); 1343 int flags = expr->ComputeFlags();
1344 __ LoadSmiLiteral(r2, Smi::FromInt(flags)); 1344 __ LoadSmiLiteral(r2, Smi::FromInt(flags));
1345 if (MustCreateObjectLiteralWithRuntime(expr)) { 1345 if (MustCreateObjectLiteralWithRuntime(expr)) {
1346 __ Push(r5, r4, r3, r2); 1346 __ Push(r5, r4, r3, r2);
1347 __ CallRuntime(Runtime::kCreateObjectLiteral); 1347 __ CallRuntime(Runtime::kCreateObjectLiteral);
1348 } else { 1348 } else {
1349 FastCloneShallowObjectStub stub(isolate(), expr->properties_count()); 1349 FastCloneShallowObjectStub stub(isolate(), expr->properties_count());
1350 __ CallStub(&stub); 1350 __ CallStub(&stub);
1351 __ LoadP(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
1352 } 1351 }
1353 PrepareForBailoutForId(expr->CreateLiteralId(), TOS_REG); 1352 PrepareForBailoutForId(expr->CreateLiteralId(), TOS_REG);
1354 1353
1355 // If result_saved is true the result is on top of the stack. If 1354 // If result_saved is true the result is on top of the stack. If
1356 // result_saved is false the result is in r2. 1355 // result_saved is false the result is in r2.
1357 bool result_saved = false; 1356 bool result_saved = false;
1358 1357
1359 AccessorTable accessor_table(zone()); 1358 AccessorTable accessor_table(zone());
1360 int property_index = 0; 1359 int property_index = 0;
1361 for (; property_index < expr->properties()->length(); property_index++) { 1360 for (; property_index < expr->properties()->length(); property_index++) {
(...skipping 2509 matching lines...) Expand 10 before | Expand all | Expand 10 after
3871 DCHECK(kOSRBranchInstruction == br_instr); 3870 DCHECK(kOSRBranchInstruction == br_instr);
3872 3871
3873 DCHECK(interrupt_address == 3872 DCHECK(interrupt_address ==
3874 isolate->builtins()->OnStackReplacement()->entry()); 3873 isolate->builtins()->OnStackReplacement()->entry());
3875 return ON_STACK_REPLACEMENT; 3874 return ON_STACK_REPLACEMENT;
3876 } 3875 }
3877 3876
3878 } // namespace internal 3877 } // namespace internal
3879 } // namespace v8 3878 } // namespace v8
3880 #endif // V8_TARGET_ARCH_S390 3879 #endif // V8_TARGET_ARCH_S390
OLDNEW
« no previous file with comments | « src/full-codegen/ppc/full-codegen-ppc.cc ('k') | src/full-codegen/x64/full-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698