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

Unified Diff: runtime/observatory/lib/src/elements/function_view.html

Issue 1439893002: - Annotate instructions that load objects from the ObjectPool or Thread. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/lib/src/elements/function_view.html
diff --git a/runtime/observatory/lib/src/elements/function_view.html b/runtime/observatory/lib/src/elements/function_view.html
index 2119fa8776079e06cbcc32037d30f296951699fd..7e54a3937592026b8f61ad8a93364c0c7324aab1 100644
--- a/runtime/observatory/lib/src/elements/function_view.html
+++ b/runtime/observatory/lib/src/elements/function_view.html
@@ -94,6 +94,18 @@
<div class="memberName">inlinable</div>
<div class="memberValue">{{ function.isInlinable }}</div>
</div>
+ <div class="memberItem">
+ <div class="memberName">intrinsic</div>
+ <div class="memberValue">{{ function.hasIntrinsic }}</div>
+ </div>
+ <div class="memberItem">
+ <div class="memberName">recognized</div>
+ <div class="memberValue">{{ function.isRecognized }}</div>
+ </div>
+ <div class="memberItem">
+ <div class="memberName">native</div>
+ <div class="memberValue">{{ function.isNative }}</div>
+ </div>
<template if="{{ function.name != function.vmName }}">
<div class="memberItem">
<div class="memberName">vm name</div>

Powered by Google App Engine
This is Rietveld 408576698