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

Unified Diff: src/messages.cc

Issue 2563613003: Revert of [wasm] Fix location for error in asm.js ToNumber conversion (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « src/messages.h ('k') | src/objects.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/messages.cc
diff --git a/src/messages.cc b/src/messages.cc
index 323b70ac94107e9ccbf438ab78587c9a8d3b61ea..1cb455efb56bcddc01576054648af72c20c13328 100644
--- a/src/messages.cc
+++ b/src/messages.cc
@@ -680,15 +680,6 @@
return isolate_->factory()->null_value();
}
-void AsmJsWasmStackFrame::FromFrameArray(Isolate* isolate,
- Handle<FrameArray> array,
- int frame_ix) {
- DCHECK(array->IsAsmJsWasmFrame(frame_ix));
- WasmStackFrame::FromFrameArray(isolate, array, frame_ix);
- is_at_number_conversion_ =
- array->Flags(frame_ix)->value() & FrameArray::kAsmJsAtNumberConversion;
-}
-
Handle<Object> AsmJsWasmStackFrame::GetReceiver() const {
return isolate_->global_proxy();
}
@@ -720,8 +711,7 @@
isolate_);
DCHECK_LE(0, byte_offset);
return WasmCompiledModule::GetAsmJsSourcePosition(
- compiled_module, wasm_func_index_, static_cast<uint32_t>(byte_offset),
- is_at_number_conversion_);
+ compiled_module, wasm_func_index_, static_cast<uint32_t>(byte_offset));
}
int AsmJsWasmStackFrame::GetLineNumber() {
« no previous file with comments | « src/messages.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698