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

Unified Diff: src/ia32/assembler-ia32.h

Issue 488006: Revert keyed load cache probing in generated code.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 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/heap.cc ('k') | src/ia32/ic-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ia32/assembler-ia32.h
===================================================================
--- src/ia32/assembler-ia32.h (revision 3445)
+++ src/ia32/assembler-ia32.h (working copy)
@@ -230,7 +230,6 @@
times_4 = 2,
times_8 = 3,
times_pointer_size = times_4,
- two_times_pointer_size = times_8,
times_half_pointer_size = times_2
};
@@ -273,17 +272,6 @@
RelocInfo::EXTERNAL_REFERENCE);
}
- static Operand StaticArray(Register index,
- ScaleFactor scale,
- const ExternalReference& arr,
- int32_t disp) {
- return Operand(index,
- scale,
- reinterpret_cast<int32_t>(arr.address() + disp),
- RelocInfo::EXTERNAL_REFERENCE);
- }
-
-
// Returns true if this Operand is a wrapper for the specified register.
bool is_reg(Register reg) const;
« no previous file with comments | « src/heap.cc ('k') | src/ia32/ic-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698