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

Unified Diff: src/ia32/codegen-ia32.cc

Issue 8569008: Port r10023 to x64 (Add pointer cache field to external string). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: . Created 9 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: src/ia32/codegen-ia32.cc
diff --git a/src/ia32/codegen-ia32.cc b/src/ia32/codegen-ia32.cc
index 58eead772b067f9c5f550b0b53b2d18ba9d90f92..0759bc4787f349d875adadb61947a1ef006e539e 100644
--- a/src/ia32/codegen-ia32.cc
+++ b/src/ia32/codegen-ia32.cc
@@ -563,7 +563,7 @@ void StringCharLoadGenerator::Generate(MacroAssembler* masm,
__ Assert(zero, "external string expected, but not found");
}
__ mov(result, FieldOperand(string, ExternalString::kResourceDataOffset));
- // Assert that the external string has not been finalized yet.
+ // Assert that the data pointer cache is valid.
Lasse Reichstein 2011/11/24 09:21:42 This shouldn't be necessary any more, right? The c
__ test(result, result);
__ j(zero, call_runtime);
Register scratch = string;
« no previous file with comments | « src/ia32/codegen-ia32.h ('k') | src/x64/code-stubs-x64.cc » ('j') | src/x64/codegen-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698