2007-10-07 19:10:10 +02:00
|
|
|
// tls_test.cc -- test TLS variables for gold, main function
|
|
|
|
|
2008-03-13 22:04:21 +01:00
|
|
|
// Copyright 2006, 2007, 2008 Free Software Foundation, Inc.
|
2007-10-07 19:10:10 +02:00
|
|
|
// Written by Ian Lance Taylor <iant@google.com>.
|
|
|
|
|
|
|
|
// This file is part of gold.
|
|
|
|
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
// MA 02110-1301, USA.
|
|
|
|
|
|
|
|
// This is the main function for the TLS test. See tls_test.cc for
|
|
|
|
// more information.
|
|
|
|
|
|
|
|
#include <cassert>
|
2007-10-08 09:24:21 +02:00
|
|
|
#include <cstdio>
|
2007-10-07 19:10:10 +02:00
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
#include "tls_test.h"
|
|
|
|
|
2007-10-14 05:23:38 +02:00
|
|
|
// We make these macros so the assert() will give useful line-numbers.
|
|
|
|
#define safe_lock(muptr) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
int err = pthread_mutex_lock(muptr); \
|
|
|
|
assert(err == 0); \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define safe_unlock(muptr) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
int err = pthread_mutex_unlock(muptr); \
|
|
|
|
assert(err == 0); \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
2007-10-07 19:10:10 +02:00
|
|
|
struct Mutex_set
|
|
|
|
{
|
|
|
|
pthread_mutex_t mutex1;
|
|
|
|
pthread_mutex_t mutex2;
|
|
|
|
pthread_mutex_t mutex3;
|
|
|
|
};
|
|
|
|
|
|
|
|
Mutex_set mutexes1 = { PTHREAD_MUTEX_INITIALIZER,
|
|
|
|
PTHREAD_MUTEX_INITIALIZER,
|
|
|
|
PTHREAD_MUTEX_INITIALIZER };
|
|
|
|
|
|
|
|
Mutex_set mutexes2 = { PTHREAD_MUTEX_INITIALIZER,
|
|
|
|
PTHREAD_MUTEX_INITIALIZER,
|
|
|
|
PTHREAD_MUTEX_INITIALIZER } ;
|
|
|
|
|
2007-10-08 09:24:21 +02:00
|
|
|
bool failed = false;
|
|
|
|
|
|
|
|
void
|
|
|
|
check(const char* name, bool val)
|
|
|
|
{
|
|
|
|
if (!val)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Test %s failed\n", name);
|
|
|
|
failed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-07 19:10:10 +02:00
|
|
|
// The body of the thread function. This gets a lock on the first
|
|
|
|
// mutex, runs the tests, and then unlocks the second mutex. Then it
|
|
|
|
// locks the third mutex, and the runs the verification test again.
|
|
|
|
|
|
|
|
void*
|
|
|
|
thread_routine(void* arg)
|
|
|
|
{
|
|
|
|
Mutex_set* pms = static_cast<Mutex_set*>(arg);
|
|
|
|
|
|
|
|
// Lock the first mutex.
|
2007-10-14 05:23:38 +02:00
|
|
|
if (pms)
|
|
|
|
safe_lock(&pms->mutex1);
|
2007-10-07 19:10:10 +02:00
|
|
|
|
|
|
|
// Run the tests.
|
2007-10-08 09:24:21 +02:00
|
|
|
check("t1", t1());
|
|
|
|
check("t2", t2());
|
|
|
|
check("t3", t3());
|
|
|
|
check("t4", t4());
|
2007-10-07 19:10:10 +02:00
|
|
|
f5b(f5a());
|
2007-10-08 09:24:21 +02:00
|
|
|
check("t5", t5());
|
2007-10-07 19:10:10 +02:00
|
|
|
f6b(f6a());
|
2007-10-08 09:24:21 +02:00
|
|
|
check("t6", t6());
|
2007-10-12 19:32:20 +02:00
|
|
|
check("t8", t8());
|
|
|
|
check("t9", t9());
|
|
|
|
f10b(f10a());
|
|
|
|
check("t10", t10());
|
2008-04-17 09:12:00 +02:00
|
|
|
check("t11", t11() != 0);
|
2008-08-15 06:57:46 +02:00
|
|
|
check("t12", t12());
|
2007-10-12 19:32:20 +02:00
|
|
|
check("t_last", t_last());
|
2007-10-07 19:10:10 +02:00
|
|
|
|
|
|
|
// Unlock the second mutex.
|
2007-10-14 05:23:38 +02:00
|
|
|
if (pms)
|
|
|
|
safe_unlock(&pms->mutex2);
|
2007-10-07 19:10:10 +02:00
|
|
|
|
|
|
|
// Lock the third mutex.
|
2007-10-14 05:23:38 +02:00
|
|
|
if (pms)
|
|
|
|
safe_lock(&pms->mutex3);
|
2007-10-07 19:10:10 +02:00
|
|
|
|
2007-10-12 19:32:20 +02:00
|
|
|
check("t_last", t_last());
|
2007-10-07 19:10:10 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The main function.
|
|
|
|
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
2007-10-14 05:23:38 +02:00
|
|
|
// First, as a sanity check, run through the tests in the "main" thread.
|
|
|
|
thread_routine(0);
|
|
|
|
|
2007-10-07 19:10:10 +02:00
|
|
|
// Set up the mutex locks. We want the first thread to start right
|
|
|
|
// away, tell us when it is done with the first part, and wait for
|
|
|
|
// us to release it. We want the second thread to wait to start,
|
|
|
|
// tell us when it is done with the first part, and wait for us to
|
|
|
|
// release it.
|
2007-10-14 05:23:38 +02:00
|
|
|
safe_lock(&mutexes1.mutex2);
|
|
|
|
safe_lock(&mutexes1.mutex3);
|
2007-10-07 19:10:10 +02:00
|
|
|
|
2007-10-14 05:23:38 +02:00
|
|
|
safe_lock(&mutexes2.mutex1);
|
|
|
|
safe_lock(&mutexes2.mutex2);
|
|
|
|
safe_lock(&mutexes2.mutex3);
|
2007-10-07 19:10:10 +02:00
|
|
|
|
|
|
|
pthread_t thread1;
|
2007-10-14 05:23:38 +02:00
|
|
|
int err = pthread_create(&thread1, NULL, thread_routine, &mutexes1);
|
2007-10-07 19:10:10 +02:00
|
|
|
assert(err == 0);
|
|
|
|
|
|
|
|
pthread_t thread2;
|
|
|
|
err = pthread_create(&thread2, NULL, thread_routine, &mutexes2);
|
|
|
|
assert(err == 0);
|
|
|
|
|
|
|
|
// Wait for the first thread to complete the first part.
|
2007-10-14 05:23:38 +02:00
|
|
|
safe_lock(&mutexes1.mutex2);
|
2007-10-07 19:10:10 +02:00
|
|
|
|
|
|
|
// Tell the second thread to start.
|
2007-10-14 05:23:38 +02:00
|
|
|
safe_unlock(&mutexes2.mutex1);
|
2007-10-07 19:10:10 +02:00
|
|
|
|
|
|
|
// Wait for the second thread to complete the first part.
|
2007-10-14 05:23:38 +02:00
|
|
|
safe_lock(&mutexes2.mutex2);
|
2007-10-07 19:10:10 +02:00
|
|
|
|
|
|
|
// Tell the first thread to continue and finish.
|
2007-10-14 05:23:38 +02:00
|
|
|
safe_unlock(&mutexes1.mutex3);
|
2007-10-07 19:10:10 +02:00
|
|
|
|
|
|
|
// Wait for the first thread to finish.
|
|
|
|
void* thread_val;
|
|
|
|
err = pthread_join(thread1, &thread_val);
|
|
|
|
assert(err == 0);
|
|
|
|
assert(thread_val == 0);
|
|
|
|
|
|
|
|
// Tell the second thread to continue and finish.
|
2007-10-14 05:23:38 +02:00
|
|
|
safe_unlock(&mutexes2.mutex3);
|
2007-10-07 19:10:10 +02:00
|
|
|
|
|
|
|
// Wait for the second thread to finish.
|
|
|
|
err = pthread_join(thread2, &thread_val);
|
|
|
|
assert(err == 0);
|
|
|
|
assert(thread_val == 0);
|
|
|
|
|
|
|
|
// All done.
|
2007-10-08 09:24:21 +02:00
|
|
|
return failed ? 1 : 0;
|
2007-10-07 19:10:10 +02:00
|
|
|
}
|