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

Side by Side Diff: src/arm/code-stubs-arm.cc

Issue 16925008: Generate StoreGlobal stubs with Hydrogen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix numeric constant compares Created 7 years, 5 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
« no previous file with comments | « no previous file | src/arm/lithium-gap-resolver-arm.cc » ('j') | src/code-stubs.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 } 219 }
220 220
221 221
222 void InternalArrayNArgumentsConstructorStub::InitializeInterfaceDescriptor( 222 void InternalArrayNArgumentsConstructorStub::InitializeInterfaceDescriptor(
223 Isolate* isolate, 223 Isolate* isolate,
224 CodeStubInterfaceDescriptor* descriptor) { 224 CodeStubInterfaceDescriptor* descriptor) {
225 InitializeInternalArrayConstructorDescriptor(isolate, descriptor, -1); 225 InitializeInternalArrayConstructorDescriptor(isolate, descriptor, -1);
226 } 226 }
227 227
228 228
229 void StoreGlobalStub::InitializeInterfaceDescriptor(
230 Isolate* isolate,
231 CodeStubInterfaceDescriptor* descriptor) {
232 static Register registers[] = { r1, r2, r0 };
233 descriptor->register_param_count_ = 3;
234 descriptor->register_params_ = registers;
235 descriptor->deoptimization_handler_ =
236 FUNCTION_ADDR(StoreIC_MissFromStubFailure);
237 }
238
239
229 #define __ ACCESS_MASM(masm) 240 #define __ ACCESS_MASM(masm)
230 241
231 static void EmitIdenticalObjectComparison(MacroAssembler* masm, 242 static void EmitIdenticalObjectComparison(MacroAssembler* masm,
232 Label* slow, 243 Label* slow,
233 Condition cond); 244 Condition cond);
234 static void EmitSmiNonsmiComparison(MacroAssembler* masm, 245 static void EmitSmiNonsmiComparison(MacroAssembler* masm,
235 Register lhs, 246 Register lhs,
236 Register rhs, 247 Register rhs,
237 Label* lhs_not_nan, 248 Label* lhs_not_nan,
238 Label* slow, 249 Label* slow,
(...skipping 7185 matching lines...) Expand 10 before | Expand all | Expand 10 after
7424 __ bind(&fast_elements_case); 7435 __ bind(&fast_elements_case);
7425 GenerateCase(masm, FAST_ELEMENTS); 7436 GenerateCase(masm, FAST_ELEMENTS);
7426 } 7437 }
7427 7438
7428 7439
7429 #undef __ 7440 #undef __
7430 7441
7431 } } // namespace v8::internal 7442 } } // namespace v8::internal
7432 7443
7433 #endif // V8_TARGET_ARCH_ARM 7444 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-gap-resolver-arm.cc » ('j') | src/code-stubs.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698