diff options
| author | Teng-Hui Zhu <ztenghui@google.com> | 2010-11-09 16:16:48 -0800 |
|---|---|---|
| committer | Teng-Hui Zhu <ztenghui@google.com> | 2010-11-15 17:07:50 -0800 |
| commit | 3e5fa29ddb82551500b118e9bf37af3966277b70 (patch) | |
| tree | a74a16cc186a742dd182289692dfbe9ce1c3c5d4 /src/full-codegen.cc | |
| parent | 5913587db4c6bab03d97bfe44b06289fd6d7270d (diff) | |
| download | android_external_v8-3e5fa29ddb82551500b118e9bf37af3966277b70.tar.gz android_external_v8-3e5fa29ddb82551500b118e9bf37af3966277b70.tar.bz2 android_external_v8-3e5fa29ddb82551500b118e9bf37af3966277b70.zip | |
Update V8 to r5780 as required by WebKit r71558
Change-Id: Ie3936550b99967a13755930d0dac0a59c3562625
Diffstat (limited to 'src/full-codegen.cc')
| -rw-r--r-- | src/full-codegen.cc | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/full-codegen.cc b/src/full-codegen.cc index 97987c27..c770e189 100644 --- a/src/full-codegen.cc +++ b/src/full-codegen.cc @@ -563,9 +563,10 @@ void FullCodeGenerator::SetStatementPosition(int pos) { } -void FullCodeGenerator::SetSourcePosition(int pos) { +void FullCodeGenerator::SetSourcePosition( + int pos, PositionRecordingType recording_type) { if (FLAG_debug_info && pos != RelocInfo::kNoPosition) { - masm_->RecordPosition(pos); + masm_->positions_recorder()->RecordPosition(pos, recording_type); } } @@ -1225,13 +1226,6 @@ int FullCodeGenerator::TryCatch::Exit(int stack_depth) { } -void FullCodeGenerator::EmitRegExpCloneResult(ZoneList<Expression*>* args) { - ASSERT(args->length() == 1); - VisitForStackValue(args->at(0)); - __ CallRuntime(Runtime::kRegExpCloneResult, 1); - context()->Plug(result_register()); -} - #undef __ |
