OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1003 } | 1003 } |
1004 | 1004 |
1005 | 1005 |
1006 THREADED_TEST(SimpleCallback) { | 1006 THREADED_TEST(SimpleCallback) { |
1007 TestSimpleCallback(SimpleDirectCallback); | 1007 TestSimpleCallback(SimpleDirectCallback); |
1008 TestSimpleCallback(SimpleIndirectCallback); | 1008 TestSimpleCallback(SimpleIndirectCallback); |
1009 TestSimpleCallback(SimpleCallback); | 1009 TestSimpleCallback(SimpleCallback); |
1010 } | 1010 } |
1011 | 1011 |
1012 | 1012 |
| 1013 template<typename T> |
| 1014 void FastReturnValueCallback(const v8::FunctionCallbackInfo<v8::Value>& info); |
| 1015 |
| 1016 // constant return values |
| 1017 static const int32_t kFastReturnValueInt32 = 471; |
| 1018 static const uint32_t kFastReturnValueUint32 = 571; |
| 1019 static const float kFastReturnValueFloat = 1.3; |
| 1020 static const double kFastReturnValueDouble = 2.7; |
| 1021 // variable return values |
| 1022 static bool fast_return_value_bool = false; |
| 1023 static bool fast_return_value_void_is_null = false; |
| 1024 |
| 1025 template<> |
| 1026 void FastReturnValueCallback<int32_t>( |
| 1027 const v8::FunctionCallbackInfo<v8::Value>& info) { |
| 1028 info.GetReturnValue().Set(info.GetIsolate(), kFastReturnValueInt32); |
| 1029 } |
| 1030 |
| 1031 template<> |
| 1032 void FastReturnValueCallback<uint32_t>( |
| 1033 const v8::FunctionCallbackInfo<v8::Value>& info) { |
| 1034 info.GetReturnValue().Set(info.GetIsolate(), kFastReturnValueUint32); |
| 1035 } |
| 1036 |
| 1037 template<> |
| 1038 void FastReturnValueCallback<float>( |
| 1039 const v8::FunctionCallbackInfo<v8::Value>& info) { |
| 1040 info.GetReturnValue().Set(info.GetIsolate(), kFastReturnValueFloat); |
| 1041 } |
| 1042 |
| 1043 template<> |
| 1044 void FastReturnValueCallback<double>( |
| 1045 const v8::FunctionCallbackInfo<v8::Value>& info) { |
| 1046 info.GetReturnValue().Set(info.GetIsolate(), kFastReturnValueDouble); |
| 1047 } |
| 1048 |
| 1049 template<> |
| 1050 void FastReturnValueCallback<bool>( |
| 1051 const v8::FunctionCallbackInfo<v8::Value>& info) { |
| 1052 info.GetReturnValue().Set(info.GetIsolate(), fast_return_value_bool); |
| 1053 } |
| 1054 |
| 1055 template<> |
| 1056 void FastReturnValueCallback<void>( |
| 1057 const v8::FunctionCallbackInfo<v8::Value>& info) { |
| 1058 if (fast_return_value_void_is_null) { |
| 1059 info.GetReturnValue().SetNull(info.GetIsolate()); |
| 1060 } else { |
| 1061 info.GetReturnValue().SetUndefined(info.GetIsolate()); |
| 1062 } |
| 1063 } |
| 1064 |
| 1065 template<typename T> |
| 1066 Handle<Value> TestFastReturnValues() { |
| 1067 LocalContext env; |
| 1068 v8::HandleScope scope(env->GetIsolate()); |
| 1069 v8::Handle<v8::ObjectTemplate> object_template = v8::ObjectTemplate::New(); |
| 1070 v8::FunctionCallback callback = &FastReturnValueCallback<T>; |
| 1071 object_template->Set("callback", v8::FunctionTemplate::New(callback)); |
| 1072 v8::Local<v8::Object> object = object_template->NewInstance(); |
| 1073 (*env)->Global()->Set(v8_str("callback_object"), object); |
| 1074 return scope.Close(CompileRun("callback_object.callback()")); |
| 1075 } |
| 1076 |
| 1077 THREADED_TEST(FastReturnValues) { |
| 1078 v8::HandleScope scope(v8::Isolate::GetCurrent()); |
| 1079 v8::Handle<v8::Value> value; |
| 1080 // check int_32 |
| 1081 value = TestFastReturnValues<int32_t>(); |
| 1082 CHECK(value->IsInt32()); |
| 1083 CHECK_EQ(kFastReturnValueInt32, value->Int32Value()); |
| 1084 // check uint32_t |
| 1085 value = TestFastReturnValues<uint32_t>(); |
| 1086 CHECK(value->IsInt32()); |
| 1087 CHECK_EQ(kFastReturnValueUint32, value->Int32Value()); |
| 1088 // check float |
| 1089 value = TestFastReturnValues<float>(); |
| 1090 CHECK(value->IsNumber()); |
| 1091 CHECK_EQ(kFastReturnValueFloat, value->ToNumber()->Value()); |
| 1092 // check double |
| 1093 value = TestFastReturnValues<double>(); |
| 1094 CHECK(value->IsNumber()); |
| 1095 CHECK_EQ(kFastReturnValueDouble, value->ToNumber()->Value()); |
| 1096 // check bool values |
| 1097 for (int i = 0; i < 2; i++) { |
| 1098 fast_return_value_bool = i == 0; |
| 1099 value = TestFastReturnValues<bool>(); |
| 1100 CHECK(value->IsBoolean()); |
| 1101 CHECK_EQ(fast_return_value_bool, value->ToBoolean()->Value()); |
| 1102 } |
| 1103 // check oddballs |
| 1104 for (int i = 0; i < 2; i++) { |
| 1105 fast_return_value_void_is_null = i == 0; |
| 1106 value = TestFastReturnValues<void>(); |
| 1107 if (fast_return_value_void_is_null) { |
| 1108 CHECK(value->IsNull()); |
| 1109 } else { |
| 1110 CHECK(value->IsUndefined()); |
| 1111 } |
| 1112 } |
| 1113 } |
| 1114 |
| 1115 |
1013 THREADED_TEST(FunctionTemplateSetLength) { | 1116 THREADED_TEST(FunctionTemplateSetLength) { |
1014 LocalContext env; | 1117 LocalContext env; |
1015 v8::HandleScope scope(env->GetIsolate()); | 1118 v8::HandleScope scope(env->GetIsolate()); |
1016 { | 1119 { |
1017 Local<v8::FunctionTemplate> fun_templ = v8::FunctionTemplate::New( | 1120 Local<v8::FunctionTemplate> fun_templ = v8::FunctionTemplate::New( |
1018 handle_call, Handle<v8::Value>(), Handle<v8::Signature>(), 23); | 1121 handle_call, Handle<v8::Value>(), Handle<v8::Signature>(), 23); |
1019 Local<Function> fun = fun_templ->GetFunction(); | 1122 Local<Function> fun = fun_templ->GetFunction(); |
1020 env->Global()->Set(v8_str("obj"), fun); | 1123 env->Global()->Set(v8_str("obj"), fun); |
1021 Local<Script> script = v8_compile("obj.length"); | 1124 Local<Script> script = v8_compile("obj.length"); |
1022 CHECK_EQ(23, script->Run()->Int32Value()); | 1125 CHECK_EQ(23, script->Run()->Int32Value()); |
(...skipping 18137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
19160 i::Semaphore* sem_; | 19263 i::Semaphore* sem_; |
19161 volatile int sem_value_; | 19264 volatile int sem_value_; |
19162 }; | 19265 }; |
19163 | 19266 |
19164 | 19267 |
19165 THREADED_TEST(SemaphoreInterruption) { | 19268 THREADED_TEST(SemaphoreInterruption) { |
19166 ThreadInterruptTest().RunTest(); | 19269 ThreadInterruptTest().RunTest(); |
19167 } | 19270 } |
19168 | 19271 |
19169 #endif // WIN32 | 19272 #endif // WIN32 |
OLD | NEW |