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

Side by Side Diff: src/full-codegen/full-codegen.h

Issue 2944013002: Remove TypeFeedbackId parameters from assembler and full-code. (Closed)
Patch Set: REBASE+fixes. Created 3 years, 6 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/arm/full-codegen-arm.cc ('k') | src/full-codegen/full-codegen.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 // 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 #ifndef V8_FULL_CODEGEN_FULL_CODEGEN_H_ 5 #ifndef V8_FULL_CODEGEN_FULL_CODEGEN_H_
6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_ 6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/assert-scope.h" 9 #include "src/assert-scope.h"
10 #include "src/ast/ast.h" 10 #include "src/ast/ast.h"
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 FeedbackSlot slot); 476 FeedbackSlot slot);
477 477
478 void EmitSetHomeObjectAccumulator(Expression* initializer, int offset, 478 void EmitSetHomeObjectAccumulator(Expression* initializer, int offset,
479 FeedbackSlot slot); 479 FeedbackSlot slot);
480 480
481 // Platform-specific code for loading a slot to a register. 481 // Platform-specific code for loading a slot to a register.
482 void EmitLoadSlot(Register destination, FeedbackSlot slot); 482 void EmitLoadSlot(Register destination, FeedbackSlot slot);
483 // Platform-specific code for pushing a slot to the stack. 483 // Platform-specific code for pushing a slot to the stack.
484 void EmitPushSlot(FeedbackSlot slot); 484 void EmitPushSlot(FeedbackSlot slot);
485 485
486 void CallIC(Handle<Code> code, 486 void CallIC(Handle<Code> code);
487 TypeFeedbackId id = TypeFeedbackId::None());
488 487
489 void CallLoadIC(FeedbackSlot slot, Handle<Object> name); 488 void CallLoadIC(FeedbackSlot slot, Handle<Object> name);
490 enum StoreICKind { kStoreNamed, kStoreOwn, kStoreGlobal }; 489 enum StoreICKind { kStoreNamed, kStoreOwn, kStoreGlobal };
491 void CallStoreIC(FeedbackSlot slot, Handle<Object> name, 490 void CallStoreIC(FeedbackSlot slot, Handle<Object> name,
492 StoreICKind store_ic_kind = kStoreNamed); 491 StoreICKind store_ic_kind = kStoreNamed);
493 void CallKeyedStoreIC(FeedbackSlot slot); 492 void CallKeyedStoreIC(FeedbackSlot slot);
494 493
495 void SetFunctionPosition(FunctionLiteral* fun); 494 void SetFunctionPosition(FunctionLiteral* fun);
496 void SetReturnPosition(FunctionLiteral* fun); 495 void SetReturnPosition(FunctionLiteral* fun);
497 496
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 Address start_; 859 Address start_;
861 Address instruction_start_; 860 Address instruction_start_;
862 uint32_t length_; 861 uint32_t length_;
863 }; 862 };
864 863
865 864
866 } // namespace internal 865 } // namespace internal
867 } // namespace v8 866 } // namespace v8
868 867
869 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ 868 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/full-codegen/arm/full-codegen-arm.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698