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

Side by Side Diff: test/unittests/interpreter/bytecode-array-builder-unittest.cc

Issue 2707873002: Collect type profile for DevTools. (Closed)
Patch Set: Add documentation and sprinkle consts around. Created 3 years, 9 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/ast/scopes.h" 7 #include "src/ast/scopes.h"
8 #include "src/interpreter/bytecode-array-builder.h" 8 #include "src/interpreter/bytecode-array-builder.h"
9 #include "src/interpreter/bytecode-array-iterator.h" 9 #include "src/interpreter/bytecode-array-iterator.h"
10 #include "src/interpreter/bytecode-label.h" 10 #include "src/interpreter/bytecode-label.h"
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 scorecard[Bytecodes::ToByte(Bytecode::kSubSmi)] = 1; 434 scorecard[Bytecodes::ToByte(Bytecode::kSubSmi)] = 1;
435 scorecard[Bytecodes::ToByte(Bytecode::kBitwiseAndSmi)] = 1; 435 scorecard[Bytecodes::ToByte(Bytecode::kBitwiseAndSmi)] = 1;
436 scorecard[Bytecodes::ToByte(Bytecode::kBitwiseOrSmi)] = 1; 436 scorecard[Bytecodes::ToByte(Bytecode::kBitwiseOrSmi)] = 1;
437 scorecard[Bytecodes::ToByte(Bytecode::kShiftLeftSmi)] = 1; 437 scorecard[Bytecodes::ToByte(Bytecode::kShiftLeftSmi)] = 1;
438 scorecard[Bytecodes::ToByte(Bytecode::kShiftRightSmi)] = 1; 438 scorecard[Bytecodes::ToByte(Bytecode::kShiftRightSmi)] = 1;
439 scorecard[Bytecodes::ToByte(Bytecode::kTestUndetectable)] = 1; 439 scorecard[Bytecodes::ToByte(Bytecode::kTestUndetectable)] = 1;
440 scorecard[Bytecodes::ToByte(Bytecode::kTestUndefined)] = 1; 440 scorecard[Bytecodes::ToByte(Bytecode::kTestUndefined)] = 1;
441 scorecard[Bytecodes::ToByte(Bytecode::kTestNull)] = 1; 441 scorecard[Bytecodes::ToByte(Bytecode::kTestNull)] = 1;
442 } 442 }
443 443
444 if (!FLAG_type_profile) {
445 // Bytecode for CollectTypeProfile is only emitted when
446 // Type Information for DevTools is turned on.
447 scorecard[Bytecodes::ToByte(Bytecode::kCollectTypeProfile)] = 1;
448 }
449
444 // Check return occurs at the end and only once in the BytecodeArray. 450 // Check return occurs at the end and only once in the BytecodeArray.
445 CHECK_EQ(final_bytecode, Bytecode::kReturn); 451 CHECK_EQ(final_bytecode, Bytecode::kReturn);
446 CHECK_EQ(scorecard[Bytecodes::ToByte(final_bytecode)], 1); 452 CHECK_EQ(scorecard[Bytecodes::ToByte(final_bytecode)], 1);
447 453
448 #define CHECK_BYTECODE_PRESENT(Name, ...) \ 454 #define CHECK_BYTECODE_PRESENT(Name, ...) \
449 /* Check Bytecode is marked in scorecard, unless it's a debug break */ \ 455 /* Check Bytecode is marked in scorecard, unless it's a debug break */ \
450 if (!Bytecodes::IsDebugBreak(Bytecode::k##Name)) { \ 456 if (!Bytecodes::IsDebugBreak(Bytecode::k##Name)) { \
451 CHECK_GE(scorecard[Bytecodes::ToByte(Bytecode::k##Name)], 1); \ 457 CHECK_GE(scorecard[Bytecodes::ToByte(Bytecode::k##Name)], 1); \
452 } 458 }
453 BYTECODE_LIST(CHECK_BYTECODE_PRESENT) 459 BYTECODE_LIST(CHECK_BYTECODE_PRESENT)
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 iterator.Advance(); 782 iterator.Advance();
777 } 783 }
778 CHECK_EQ(iterator.current_bytecode(), Bytecode::kReturn); 784 CHECK_EQ(iterator.current_bytecode(), Bytecode::kReturn);
779 iterator.Advance(); 785 iterator.Advance();
780 CHECK(iterator.done()); 786 CHECK(iterator.done());
781 } 787 }
782 788
783 } // namespace interpreter 789 } // namespace interpreter
784 } // namespace internal 790 } // namespace internal
785 } // namespace v8 791 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698