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

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

Issue 11238016: Consolidated all the key store/load classes in the Hydrogen and Lithium (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Last batch of comment response, formatting issues. Created 8 years, 1 month 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/hydrogen-instructions.cc ('k') | src/ia32/lithium-codegen-ia32.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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 LEnvironment* env); 333 LEnvironment* env);
334 334
335 // Emits optimized code to deep-copy the contents of statically known 335 // Emits optimized code to deep-copy the contents of statically known
336 // object graphs (e.g. object literal boilerplate). 336 // object graphs (e.g. object literal boilerplate).
337 void EmitDeepCopy(Handle<JSObject> object, 337 void EmitDeepCopy(Handle<JSObject> object,
338 Register result, 338 Register result,
339 Register source, 339 Register source,
340 int* offset); 340 int* offset);
341 341
342 void EnsureSpaceForLazyDeopt(); 342 void EnsureSpaceForLazyDeopt();
343 void DoLoadKeyedExternalArray(LLoadKeyed* instr);
344 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr);
345 void DoLoadKeyedFixedArray(LLoadKeyed* instr);
346 void DoStoreKeyedExternalArray(LStoreKeyed* instr);
347 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr);
348 void DoStoreKeyedFixedArray(LStoreKeyed* instr);
343 349
344 // Emits code for pushing either a tagged constant, a (non-double) 350 // Emits code for pushing either a tagged constant, a (non-double)
345 // register, or a stack slot operand. 351 // register, or a stack slot operand.
346 void EmitPushTaggedOperand(LOperand* operand); 352 void EmitPushTaggedOperand(LOperand* operand);
347 353
348 Zone* zone_; 354 Zone* zone_;
349 LPlatformChunk* const chunk_; 355 LPlatformChunk* const chunk_;
350 MacroAssembler* const masm_; 356 MacroAssembler* const masm_;
351 CompilationInfo* const info_; 357 CompilationInfo* const info_;
352 358
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 LCodeGen* codegen_; 431 LCodeGen* codegen_;
426 Label entry_; 432 Label entry_;
427 Label exit_; 433 Label exit_;
428 Label* external_exit_; 434 Label* external_exit_;
429 int instruction_index_; 435 int instruction_index_;
430 }; 436 };
431 437
432 } } // namespace v8::internal 438 } } // namespace v8::internal
433 439
434 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 440 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698