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

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

Issue 66693002: Do not add values to HGraph in Lithium. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 | « no previous file | src/arm/lithium-arm.cc » ('j') | src/lithium.cc » ('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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 V(ConstantT) \ 84 V(ConstantT) \
85 V(Context) \ 85 V(Context) \
86 V(DateField) \ 86 V(DateField) \
87 V(DebugBreak) \ 87 V(DebugBreak) \
88 V(DeclareGlobals) \ 88 V(DeclareGlobals) \
89 V(Deoptimize) \ 89 V(Deoptimize) \
90 V(DivI) \ 90 V(DivI) \
91 V(DoubleToI) \ 91 V(DoubleToI) \
92 V(DoubleToSmi) \ 92 V(DoubleToSmi) \
93 V(Drop) \ 93 V(Drop) \
94 V(Dummy) \
94 V(DummyUse) \ 95 V(DummyUse) \
95 V(ElementsKind) \ 96 V(ElementsKind) \
96 V(ForInCacheArray) \ 97 V(ForInCacheArray) \
97 V(ForInPrepareMap) \ 98 V(ForInPrepareMap) \
98 V(FunctionLiteral) \ 99 V(FunctionLiteral) \
99 V(GetCachedArrayIndex) \ 100 V(GetCachedArrayIndex) \
100 V(GlobalObject) \ 101 V(GlobalObject) \
101 V(GlobalReceiver) \ 102 V(GlobalReceiver) \
102 V(Goto) \ 103 V(Goto) \
103 V(HasCachedArrayIndexAndBranch) \ 104 V(HasCachedArrayIndexAndBranch) \
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 void set_gap_instructions_size(int gap_instructions_size) { 418 void set_gap_instructions_size(int gap_instructions_size) {
418 gap_instructions_size_ = gap_instructions_size; 419 gap_instructions_size_ = gap_instructions_size;
419 } 420 }
420 int gap_instructions_size() { return gap_instructions_size_; } 421 int gap_instructions_size() { return gap_instructions_size_; }
421 422
422 private: 423 private:
423 int gap_instructions_size_; 424 int gap_instructions_size_;
424 }; 425 };
425 426
426 427
428 class LDummy V8_FINAL : public LTemplateInstruction<1, 0, 0> {
429 public:
430 explicit LDummy() { }
431 DECLARE_CONCRETE_INSTRUCTION(Dummy, "dummy")
432 };
433
434
427 class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> { 435 class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> {
428 public: 436 public:
429 explicit LDummyUse(LOperand* value) { 437 explicit LDummyUse(LOperand* value) {
430 inputs_[0] = value; 438 inputs_[0] = value;
431 } 439 }
432 DECLARE_CONCRETE_INSTRUCTION(DummyUse, "dummy-use") 440 DECLARE_CONCRETE_INSTRUCTION(DummyUse, "dummy-use")
433 }; 441 };
434 442
435 443
436 class LDeoptimize V8_FINAL : public LTemplateInstruction<0, 0, 0> { 444 class LDeoptimize V8_FINAL : public LTemplateInstruction<0, 0, 0> {
(...skipping 2474 matching lines...) Expand 10 before | Expand all | Expand 10 after
2911 2919
2912 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2920 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2913 }; 2921 };
2914 2922
2915 #undef DECLARE_HYDROGEN_ACCESSOR 2923 #undef DECLARE_HYDROGEN_ACCESSOR
2916 #undef DECLARE_CONCRETE_INSTRUCTION 2924 #undef DECLARE_CONCRETE_INSTRUCTION
2917 2925
2918 } } // namespace v8::internal 2926 } } // namespace v8::internal
2919 2927
2920 #endif // V8_ARM_LITHIUM_ARM_H_ 2928 #endif // V8_ARM_LITHIUM_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-arm.cc » ('j') | src/lithium.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698