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

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

Issue 136403005: Remove CALL_AS_FUNCTION and CALL_AS_METHOD. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Don't store/restore ecx/rcx/r5 given that it doesn't contain callkind anymore Created 6 years, 11 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/ic-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 R1_UNINITIALIZED, 239 R1_UNINITIALIZED,
240 R1_CONTAINS_TARGET 240 R1_CONTAINS_TARGET
241 }; 241 };
242 242
243 // Generate a direct call to a known function. Expects the function 243 // Generate a direct call to a known function. Expects the function
244 // to be in r1. 244 // to be in r1.
245 void CallKnownFunction(Handle<JSFunction> function, 245 void CallKnownFunction(Handle<JSFunction> function,
246 int formal_parameter_count, 246 int formal_parameter_count,
247 int arity, 247 int arity,
248 LInstruction* instr, 248 LInstruction* instr,
249 CallKind call_kind,
250 R1State r1_state); 249 R1State r1_state);
251 250
252 void RecordSafepointWithLazyDeopt(LInstruction* instr, 251 void RecordSafepointWithLazyDeopt(LInstruction* instr,
253 SafepointMode safepoint_mode); 252 SafepointMode safepoint_mode);
254 253
255 void RegisterEnvironmentForDeoptimization(LEnvironment* environment, 254 void RegisterEnvironmentForDeoptimization(LEnvironment* environment,
256 Safepoint::DeoptMode mode); 255 Safepoint::DeoptMode mode);
257 void DeoptimizeIf(Condition condition, 256 void DeoptimizeIf(Condition condition,
258 LEnvironment* environment, 257 LEnvironment* environment,
259 Deoptimizer::BailoutType bailout_type); 258 Deoptimizer::BailoutType bailout_type);
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 LCodeGen* codegen_; 459 LCodeGen* codegen_;
461 Label entry_; 460 Label entry_;
462 Label exit_; 461 Label exit_;
463 Label* external_exit_; 462 Label* external_exit_;
464 int instruction_index_; 463 int instruction_index_;
465 }; 464 };
466 465
467 } } // namespace v8::internal 466 } } // namespace v8::internal
468 467
469 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 468 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/ic-arm.cc ('k') | src/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698