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

Unified Diff: src/interpreter/bytecode-array-builder.h

Issue 2038323002: [interpreter] Filter expression positions at source. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@oth-0060-source-position-testing
Patch Set: Fix expression positions on StackCheck that this CL broke. Created 4 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 side-by-side diff with in-line comments
Download patch
Index: src/interpreter/bytecode-array-builder.h
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h
index 3cdea52aae08488f00109c26786080664407301e..907aa8661d1f9ec0e688d23120b5efe97dbdba18 100644
--- a/src/interpreter/bytecode-array-builder.h
+++ b/src/interpreter/bytecode-array-builder.h
@@ -315,6 +315,9 @@ class BytecodeArrayBuilder final : public ZoneObject {
int operand_index, uint32_t operand_value) const;
bool RegisterIsValid(Register reg, OperandSize reg_size) const;
+ // Test if bytecode needs an expression position to be attached.
+ static bool NeedExpressionPosition(Bytecode bytecode);
Yang 2016/06/08 13:04:54 I wonder whether that should belong in interpreter
oth 2016/06/08 15:04:21 Yes, it could do. The only quirk with this is that
+
// Attach latest source position to |node|.
void AttachSourceInfo(BytecodeNode* node);

Powered by Google App Engine
This is Rietveld 408576698