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

Unified Diff: src/types.h

Issue 1424333002: [turbofan] Added the RoundInt64ToFloat64 instruction to TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@BufferedRawMachineAssemblerTester
Patch Set: Created 5 years, 2 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
Index: src/types.h
diff --git a/src/types.h b/src/types.h
index f78755e09e59ecbbd42d455913f3eeacc182fd8e..3ef3315582e96ef0d7160cca8152ce15d90312c3 100644
--- a/src/types.h
+++ b/src/types.h
@@ -362,6 +362,10 @@ class TypeImpl : public Config::Base {
PROPER_BITSET_TYPE_LIST(DEFINE_TYPE_CONSTRUCTOR)
#undef DEFINE_TYPE_CONSTRUCTOR
+ static TypeImpl* Signed64() { return Internal(); }
Benedikt Meurer 2015/10/30 09:42:08 Please don't add these helpers here. That's just c
ahaas 2015/11/02 10:35:37 Done. I removed Type::Signed64 again and instead u
+
+ static TypeHandle Signed64(Region* region) { return Internal(region); }
+
static TypeImpl* SignedSmall() {
return BitsetType::New(BitsetType::SignedSmall());
}

Powered by Google App Engine
This is Rietveld 408576698