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

Side by Side Diff: src/arm/lithium-codegen-arm.h

Issue 30023005: Handle constants in new space on arm by making macro-assembler smarter. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Refresh patch set. Created 7 years, 2 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 | « src/arm/full-codegen-arm.cc ('k') | src/arm/lithium-codegen-arm.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 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 239
240 // Generate a direct call to a known function. Expects the function 240 // Generate a direct call to a known function. Expects the function
241 // to be in r1. 241 // to be in r1.
242 void CallKnownFunction(Handle<JSFunction> function, 242 void CallKnownFunction(Handle<JSFunction> function,
243 int formal_parameter_count, 243 int formal_parameter_count,
244 int arity, 244 int arity,
245 LInstruction* instr, 245 LInstruction* instr,
246 CallKind call_kind, 246 CallKind call_kind,
247 R1State r1_state); 247 R1State r1_state);
248 248
249 void LoadHeapObject(Register result, Handle<HeapObject> object);
250
251 void RecordSafepointWithLazyDeopt(LInstruction* instr, 249 void RecordSafepointWithLazyDeopt(LInstruction* instr,
252 SafepointMode safepoint_mode); 250 SafepointMode safepoint_mode);
253 251
254 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, 252 void RegisterEnvironmentForDeoptimization(LEnvironment* environment,
255 Safepoint::DeoptMode mode); 253 Safepoint::DeoptMode mode);
256 void DeoptimizeIf(Condition condition, 254 void DeoptimizeIf(Condition condition,
257 LEnvironment* environment, 255 LEnvironment* environment,
258 Deoptimizer::BailoutType bailout_type); 256 Deoptimizer::BailoutType bailout_type);
259 void DeoptimizeIf(Condition condition, LEnvironment* environment); 257 void DeoptimizeIf(Condition condition, LEnvironment* environment);
260 void ApplyCheckIf(Condition condition, LBoundsCheck* check); 258 void ApplyCheckIf(Condition condition, LBoundsCheck* check);
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 LCodeGen* codegen_; 452 LCodeGen* codegen_;
455 Label entry_; 453 Label entry_;
456 Label exit_; 454 Label exit_;
457 Label* external_exit_; 455 Label* external_exit_;
458 int instruction_index_; 456 int instruction_index_;
459 }; 457 };
460 458
461 } } // namespace v8::internal 459 } } // namespace v8::internal
462 460
463 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 461 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/full-codegen-arm.cc ('k') | src/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698