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

Issue 2677163003: WIP: type profiling. (Closed)

Created:
3 years, 10 months ago by Franzi
Modified:
3 years, 10 months ago
Reviewers:
CC:
v8-reviews_googlegroups.com, rmcilroy
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

WIP: bytecode and runtime time function for type profiling. Generate bytecode to call runtime function for type profile. BUG=v8:5935

Patch Set 1 #

Patch Set 2 : CollectTypeFeedback in VariableDeclaration and reserve feedback slots. #

Patch Set 3 : Pass less variables to runtime. #

Patch Set 4 : Pass a name to the runtime for every variable declaration. #

Patch Set 5 : Rebase. #

Patch Set 6 : TypeOf for assignments and variable proxies. #

Patch Set 7 : Fix bytecode unittest. #

Patch Set 8 : Minor Cleanups. #

Patch Set 9 : Use correct int constant in bytecode graph builder. #

Patch Set 10 : Add slot for type feedback to assignments. #

Patch Set 11 : Pass feedback vector to runtime. #

Patch Set 12 : Fake use feedback :) #

Patch Set 13 : Rebaseline. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+15016 lines, -6005 lines) Patch
M src/ast/ast.h View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -0 lines 0 comments Download
M src/ast/ast.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +3 lines, -0 lines 0 comments Download
M src/compiler/bytecode-graph-builder.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +16 lines, -0 lines 0 comments Download
M src/compiler/js-generic-lowering.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +8 lines, -0 lines 0 comments Download
M src/compiler/js-operator.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -0 lines 0 comments Download
M src/compiler/js-operator.cc View 1 2 3 4 5 6 7 8 9 10 2 chunks +13 lines, -1 line 0 comments Download
M src/compiler/opcodes.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M src/compiler/typer.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +5 lines, -0 lines 0 comments Download
M src/compiler/verifier.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M src/feedback-vector.h View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +8 lines, -2 lines 0 comments Download
M src/feedback-vector.cc View 1 2 3 4 3 chunks +5 lines, -1 line 0 comments Download
M src/feedback-vector-inl.h View 1 2 3 4 2 chunks +3 lines, -1 line 0 comments Download
M src/interpreter/bytecode-array-builder.h View 1 2 3 4 1 chunk +4 lines, -0 lines 0 comments Download
M src/interpreter/bytecode-array-builder.cc View 1 2 3 4 1 chunk +7 lines, -0 lines 0 comments Download
M src/interpreter/bytecode-generator.cc View 1 2 3 4 5 6 7 8 9 10 11 12 5 chunks +32 lines, -0 lines 0 comments Download
M src/interpreter/bytecodes.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M src/interpreter/interpreter.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +13 lines, -0 lines 0 comments Download
M src/objects-printer.cc View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M src/runtime/runtime.h View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M src/runtime/runtime-object.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +38 lines, -0 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ArrayLiterals.golden View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +22 lines, -16 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ArrayLiteralsWide.golden View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +771 lines, -258 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/AssignmentsInBinaryExpression.golden View 1 2 3 4 5 6 7 8 9 10 11 12 8 chunks +147 lines, -65 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/BasicBlockToBoolean.golden View 1 2 3 4 5 6 7 8 9 10 11 12 6 chunks +25 lines, -13 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/BasicLoops.golden View 1 2 3 4 5 6 7 8 9 10 11 12 20 chunks +306 lines, -183 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/BreakableBlocks.golden View 1 2 3 4 5 6 7 8 9 10 11 12 6 chunks +62 lines, -30 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/CallAndSpread.golden View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +9 lines, -6 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/CallLookupSlot.golden View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +10 lines, -8 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ClassAndSuperClass.golden View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +38 lines, -29 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ClassDeclarations.golden View 1 2 3 4 5 6 7 8 9 10 11 12 10 chunks +142 lines, -101 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/CompoundExpressions.golden View 1 2 3 4 5 6 7 8 9 10 11 12 5 chunks +58 lines, -33 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/Conditional.golden View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +6 lines, -3 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ConstVariable.golden View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +29 lines, -15 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ConstVariableContextSlot.golden View 1 2 3 4 5 6 7 8 9 10 11 12 8 chunks +29 lines, -15 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ContextParameters.golden View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +13 lines, -7 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ContextVariables.golden View 1 2 3 4 5 6 7 8 9 10 11 12 5 chunks +1037 lines, -269 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/CountOperators.golden View 1 2 3 4 5 6 7 8 9 10 11 12 11 chunks +110 lines, -57 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/CreateRestParameter.golden View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +18 lines, -9 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/DeadCodeRemoval.golden View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +12 lines, -6 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/DeclareGlobals.golden View 1 2 3 4 5 6 7 8 9 10 11 12 5 chunks +15 lines, -7 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/Delete.golden View 1 2 3 4 5 6 7 8 9 10 11 12 6 chunks +37 lines, -22 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/DoExpression.golden View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +32 lines, -11 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ForIn.golden View 1 2 3 4 5 6 7 8 9 10 11 12 8 chunks +60 lines, -40 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ForOf.golden View 1 2 3 4 5 6 7 8 9 10 11 12 16 chunks +243 lines, -141 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/GenerateTestUndetectable.golden View 1 2 3 4 5 6 7 8 9 10 11 12 8 chunks +120 lines, -56 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/Generators.golden View 1 2 3 4 5 6 7 8 9 10 11 12 18 chunks +95 lines, -60 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/GlobalCompoundExpressions.golden View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +12 lines, -8 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/HeapNumberConstants.golden View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +785 lines, -264 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/IfConditions.golden View 1 2 3 4 5 6 7 8 9 10 11 12 8 chunks +811 lines, -279 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/IntegerConstants.golden View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +12 lines, -6 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/JumpsRequiringConstantWideOperands.golden View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +950 lines, -322 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/LetVariable.golden View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +32 lines, -17 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/LetVariableContextSlot.golden View 1 2 3 4 5 6 7 8 9 10 11 12 8 chunks +31 lines, -16 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/LogicalExpressions.golden View 1 2 3 4 5 6 7 8 9 10 11 12 12 chunks +633 lines, -56 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/LookupSlot.golden View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +6 lines, -4 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/LookupSlotInEval.golden View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +10 lines, -6 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/LookupSlotWideInEval.golden View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +3090 lines, -1034 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/Modules.golden View 1 2 3 4 5 6 7 8 9 10 11 12 48 chunks +153 lines, -90 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/NewAndSpread.golden View 1 2 3 4 5 6 7 8 9 10 11 12 7 chunks +59 lines, -41 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ObjectLiterals.golden View 1 2 3 4 5 6 7 8 9 10 11 12 10 chunks +52 lines, -31 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ObjectLiteralsWide.golden View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +770 lines, -257 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/OuterContextVariables.golden View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +6 lines, -3 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/Parameters.golden View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +12 lines, -6 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/PrimitiveExpressions.golden View 1 2 3 4 5 6 7 8 9 10 11 12 13 chunks +89 lines, -50 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/PropertyLoads.golden View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +1036 lines, -648 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/PropertyStores.golden View 1 2 3 4 5 6 7 8 9 10 11 12 9 chunks +1321 lines, -795 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/RegExpLiteralsWide.golden View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +771 lines, -258 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/RemoveRedundantLdar.golden View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +33 lines, -18 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/StoreGlobal.golden View 1 2 3 4 5 6 7 8 9 10 11 12 8 chunks +30 lines, -18 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/StringConstants.golden View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +12 lines, -6 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/SuperCallAndSpread.golden View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +32 lines, -28 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/Switch.golden View 1 2 3 4 5 6 7 8 9 10 11 12 9 chunks +357 lines, -149 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/ThisFunction.golden View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +10 lines, -4 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/Throw.golden View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +7 lines, -4 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/TryCatch.golden View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +16 lines, -9 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/TryFinally.golden View 1 2 3 4 5 6 7 8 9 10 11 12 9 chunks +52 lines, -27 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/Typeof.golden View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +6 lines, -3 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/UnaryOperators.golden View 1 2 3 4 5 6 7 8 9 10 11 12 7 chunks +64 lines, -37 lines 0 comments Download
M test/cctest/interpreter/bytecode_expectations/WideRegisters.golden View 1 2 3 4 5 6 7 8 9 10 11 12 7 chunks +83 lines, -46 lines 0 comments Download
A test/mjsunit/debug-collect-type-profile.js View 1 2 3 4 5 6 7 8 9 1 chunk +51 lines, -0 lines 0 comments Download
M test/unittests/interpreter/bytecode-array-builder-unittest.cc View 1 2 3 4 5 6 2 chunks +8 lines, -0 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 59 (59 generated)
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-06 15:42:51 UTC) #1
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/1
3 years, 10 months ago (2017-02-06 15:42:55 UTC) #2
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-06 15:48:04 UTC) #3
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux64_gyp_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_gyp_rel_ng/builds/12526)
3 years, 10 months ago (2017-02-06 15:48:05 UTC) #4
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-16 10:29:48 UTC) #5
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/60001
3 years, 10 months ago (2017-02-16 10:29:59 UTC) #6
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-16 10:31:09 UTC) #7
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux64_asan_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_asan_rel_ng/builds/17402) v8_mac_rel_ng on ...
3 years, 10 months ago (2017-02-16 10:31:10 UTC) #8
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-16 15:26:26 UTC) #9
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/80001
3 years, 10 months ago (2017-02-16 15:26:32 UTC) #10
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-16 15:36:17 UTC) #11
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux64_gyp_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_gyp_rel_ng/builds/13199)
3 years, 10 months ago (2017-02-16 15:36:18 UTC) #12
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-17 09:20:46 UTC) #13
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/120001
3 years, 10 months ago (2017-02-17 09:20:52 UTC) #14
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-17 09:21:19 UTC) #15
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/120001
3 years, 10 months ago (2017-02-17 09:21:22 UTC) #16
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-17 09:27:21 UTC) #17
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux64_gyp_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_gyp_rel_ng/builds/13247)
3 years, 10 months ago (2017-02-17 09:27:22 UTC) #18
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-17 09:56:51 UTC) #19
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/130001
3 years, 10 months ago (2017-02-17 09:57:00 UTC) #20
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-17 10:01:50 UTC) #21
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux64_gyp_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_gyp_rel_ng/builds/13250)
3 years, 10 months ago (2017-02-17 10:01:51 UTC) #22
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-17 12:00:42 UTC) #23
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/150001
3 years, 10 months ago (2017-02-17 12:00:51 UTC) #24
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-17 12:27:53 UTC) #25
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
3 years, 10 months ago (2017-02-17 12:27:54 UTC) #26
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-17 14:14:15 UTC) #27
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/170001
3 years, 10 months ago (2017-02-17 14:14:21 UTC) #28
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-17 14:21:11 UTC) #29
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux64_gyp_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_gyp_rel_ng/builds/13280)
3 years, 10 months ago (2017-02-17 14:21:12 UTC) #30
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-17 14:52:09 UTC) #31
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/190001
3 years, 10 months ago (2017-02-17 14:52:19 UTC) #32
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-17 14:59:30 UTC) #33
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux64_gyp_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_gyp_rel_ng/builds/13286)
3 years, 10 months ago (2017-02-17 14:59:31 UTC) #34
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-17 15:05:18 UTC) #35
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/210001
3 years, 10 months ago (2017-02-17 15:05:22 UTC) #36
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-17 15:23:52 UTC) #37
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux64_asan_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_asan_rel_ng/builds/17524) v8_linux64_asan_rel_ng_triggered on ...
3 years, 10 months ago (2017-02-17 15:23:53 UTC) #38
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-20 09:40:07 UTC) #39
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/230001
3 years, 10 months ago (2017-02-20 09:40:19 UTC) #40
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-20 09:41:49 UTC) #41
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux64_asan_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_asan_rel_ng/builds/17591) v8_linux64_avx2_rel_ng on ...
3 years, 10 months ago (2017-02-20 09:41:51 UTC) #42
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-20 09:51:48 UTC) #43
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/240001
3 years, 10 months ago (2017-02-20 09:51:58 UTC) #44
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-20 09:53:48 UTC) #45
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_android_arm_compile_rel on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_android_arm_compile_rel/builds/32894) v8_linux_arm64_rel_ng on ...
3 years, 10 months ago (2017-02-20 09:53:49 UTC) #46
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-20 09:58:37 UTC) #47
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/260001
3 years, 10 months ago (2017-02-20 09:58:48 UTC) #48
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-20 10:00:38 UTC) #49
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_android_arm_compile_rel on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_android_arm_compile_rel/builds/32895) v8_linux_mips64el_compile_rel on ...
3 years, 10 months ago (2017-02-20 10:00:39 UTC) #50
Franzi
The CQ bit was checked by franzih@chromium.org to run a CQ dry run
3 years, 10 months ago (2017-02-20 10:35:59 UTC) #51
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2677163003/280001
3 years, 10 months ago (2017-02-20 10:36:10 UTC) #52
Franzi
Patchset #15 (id:260001) has been deleted
3 years, 10 months ago (2017-02-20 10:37:22 UTC) #53
Franzi
Patchset #15 (id:280001) has been deleted
3 years, 10 months ago (2017-02-20 10:38:27 UTC) #54
Franzi
Patchset #14 (id:240001) has been deleted
3 years, 10 months ago (2017-02-20 10:38:40 UTC) #55
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux64_avx2_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_avx2_rel_ng/builds/17221) v8_linux64_rel_ng on ...
3 years, 10 months ago (2017-02-20 10:38:41 UTC) #56
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
3 years, 10 months ago (2017-02-20 10:40:20 UTC) #57
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux_gcc_compile_rel on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux_gcc_compile_rel/builds/31442) v8_linux_verify_csa_rel_ng on ...
3 years, 10 months ago (2017-02-20 10:40:22 UTC) #58
Franzi
3 years, 10 months ago (2017-02-20 10:50:31 UTC) #59
Description was changed from

==========
WIP: bytecode and runtime time function for type profiling.

Generate bytecode to call runtime function for type profile.

BUG=v8:5935
==========

to

==========
WIP: bytecode and runtime time function for type profiling.

Generate bytecode to call runtime function for type profile.

BUG=v8:5935
==========

Powered by Google App Engine
This is Rietveld 408576698