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

Unified Diff: runtime/lib/integers.cc

Issue 23645003: Esoteric bit operations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | « no previous file | runtime/lib/integers.dart » ('j') | runtime/lib/integers.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/integers.cc
diff --git a/runtime/lib/integers.cc b/runtime/lib/integers.cc
index 5be23af2fea9dbcd0f8a48ea9d524ea1cfc778ac..e54d1ebacc48ffd438c412e9684dafb66b526df3 100644
--- a/runtime/lib/integers.cc
+++ b/runtime/lib/integers.cc
@@ -35,6 +35,43 @@ static bool CheckInteger(const Integer& i) {
}
+static int bitLength(uint64_t value) {
srdjan 2013/09/06 15:35:34 s/bitLength/BitLength/ (Dart vs C++ style)
sra1 2013/09/06 22:11:57 Done.
+ // TODO(sra): Use (64 - __builtin_clzll(value));
+ int result = 0;
+ uint32_t value32;
+ if (value >= (static_cast<uint64_t>(1) << 32)) {
srdjan 2013/09/06 15:35:34 You can use Utils::IsUint(32, value), also for the
sra1 2013/09/06 22:11:57 Done.
+ result += 32;
+ value32 = static_cast<uint32_t>(value >> 32);
+ } else {
+ value32 = static_cast<uint32_t>(value);
+ }
+ if (value32 >= (1 << 16)) {
+ result += 16;
+ value32 >>= 16;
+ }
+ if (value32 >= (1 << 8)) {
+ result += 8;
+ value32 >>= 8;
+ }
+ if (value32 >= (1 << 4)) {
+ result += 4;
+ value32 >>= 4;
+ }
+ if (value32 >= (1 << 2)) {
+ result += 2;
+ value32 >>= 2;
+ }
+ if (value32 >= (1 << 1)) {
+ result += 1;
+ value32 >>= 1;
+ }
+ if (value32 >= 1) {
+ result += 1;
+ }
+ return result;
+}
+
+
DEFINE_NATIVE_ENTRY(Integer_bitAndFromInteger, 2) {
const Integer& right = Integer::CheckedHandle(arguments->NativeArgAt(0));
GET_NON_NULL_NATIVE_ARGUMENT(Integer, left, arguments->NativeArgAt(1));
@@ -327,6 +364,21 @@ DEFINE_NATIVE_ENTRY(Smi_bitNegate, 1) {
}
+DEFINE_NATIVE_ENTRY(Smi_bitLength, 1) {
+ const Smi& operand = Smi::CheckedHandle(arguments->NativeArgAt(0));
+ if (FLAG_trace_intrinsified_natives) {
+ OS::Print("Smi_bitLength: %s\n", operand.ToCString());
+ }
+ int64_t value = operand.AsInt64Value();
+ value ^= value >> (8 * sizeof(value) - 1); // flip bits if negative.
+
+ intptr_t result = bitLength(value);
+
+ ASSERT(Smi::IsValid(result));
+ return Smi::New(result);
+}
+
+
// Mint natives.
DEFINE_NATIVE_ENTRY(Mint_bitNegate, 1) {
@@ -340,6 +392,22 @@ DEFINE_NATIVE_ENTRY(Mint_bitNegate, 1) {
}
+DEFINE_NATIVE_ENTRY(Mint_bitLength, 1) {
+ const Mint& operand = Mint::CheckedHandle(arguments->NativeArgAt(0));
+ ASSERT(CheckInteger(operand));
+ if (FLAG_trace_intrinsified_natives) {
+ OS::Print("Mint_bitLength: %s\n", operand.ToCString());
+ }
+ int64_t value = operand.AsInt64Value();
+ value ^= value >> (8 * sizeof(value) - 1); // flip bits if negative.
+
+ intptr_t result = bitLength(value);
+
+ ASSERT(Smi::IsValid(result));
+ return Smi::New(result);
+}
+
+
DEFINE_NATIVE_ENTRY(Mint_shlFromInt, 2) {
// Use the preallocated out of memory exception to avoid calling
// into dart code or allocating any code.
@@ -362,6 +430,12 @@ DEFINE_NATIVE_ENTRY(Bigint_bitNegate, 1) {
}
+DEFINE_NATIVE_ENTRY(Bigint_bitLength, 1) {
+ const Bigint& value = Bigint::CheckedHandle(arguments->NativeArgAt(0));
+ return Integer::New(BigintOperations::BitLength(value));
+}
+
+
DEFINE_NATIVE_ENTRY(Bigint_shlFromInt, 2) {
// Use the preallocated out of memory exception to avoid calling
// into dart code or allocating any code.
« no previous file with comments | « no previous file | runtime/lib/integers.dart » ('j') | runtime/lib/integers.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698