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

Unified Diff: src/compiler/code-assembler.cc

Issue 2802003003: [builtins] Speed up TypedArrayInitialize in CodeStubAssembler (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « src/compiler/code-assembler.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/code-assembler.cc
diff --git a/src/compiler/code-assembler.cc b/src/compiler/code-assembler.cc
index 45fdcf56cb04eefa7e72a2c5ca6dca221b512f36..60e0c6f9b76e3473d6ca16363089d09ffc6f0584 100644
--- a/src/compiler/code-assembler.cc
+++ b/src/compiler/code-assembler.cc
@@ -758,6 +758,17 @@ void CodeAssembler::Switch(Node* index, Label* default_label,
labels, case_count);
}
+bool CodeAssembler::UnalignedLoadSupported(const MachineType& machineType,
+ uint8_t alignment) const {
+ return raw_assembler()->machine()->UnalignedLoadSupported(machineType,
+ alignment);
+}
+bool CodeAssembler::UnalignedStoreSupported(const MachineType& machineType,
+ uint8_t alignment) const {
+ return raw_assembler()->machine()->UnalignedStoreSupported(machineType,
+ alignment);
+}
+
// RawMachineAssembler delegate helpers:
Isolate* CodeAssembler::isolate() const { return raw_assembler()->isolate(); }
« no previous file with comments | « src/compiler/code-assembler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698