OLD | NEW |
---|---|
1 # -*- python -*- | 1 # -*- python -*- |
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 Import('env') | 6 Import('env') |
7 | 7 |
8 # Case-by-case calling Convention Test for PNaCl and nacl-gcc compatibility. | 8 # Case-by-case calling Convention Test for PNaCl and nacl-gcc compatibility. |
9 | 9 |
10 # We make 4 modules. | 10 # We make 4 modules. |
11 # CC1 emits MODULE0 and CC2 MODULE1, CC2 emits MODULE2 and CC1 MODULE3 | 11 # CC1 emits MODULE0 and CC2 MODULE1, CC2 emits MODULE2 and CC1 MODULE3 |
12 # For the call test: | 12 # For the call test: |
13 # MODULE0(cc1) -> MODULE0(cc1) -> MODULE1(cc2) -> MODULE2(cc2) -> MODULE3(cc1). | 13 # MODULE0(cc1) -> MODULE0(cc1) -> MODULE1(cc2) -> MODULE2(cc2) -> MODULE3(cc1). |
14 # For the return test, the dataflow is reversed. | 14 # For the return test, the dataflow is reversed. |
15 | 15 |
16 # Environments for building module sources | 16 # For x86-64, there is a compatibility flag and calling conv attribute. |
17 envlist = [] | 17 # We use the same framework to test those as well. |
18 | 18 |
19 # For nacl-gcc, only do a self-test. | 19 |
20 # For ARM, there is no nacl-gcc so only do a self-test. | 20 # List of (4 envs for the modules, link_env, test_name_suffix) |
21 # Otherwise, mix them up! | 21 # to apply to each source. The 4 envs may have different flags. |
22 if not env.Bit('bitcode') or env.Bit('target_arm'): | 22 test_configurations = [] |
23 if not env.Bit('bitcode'): | 23 |
24 # Assume that for nacl-gcc, the bots have at least sse2. | 24 def AddCommonFlags(envlist): |
25 env.Append(CCFLAGS=['-msse2']) | 25 for (i, e) in enumerate(envlist): |
26 # Add -Wno-long-long because we use c99 long long constants in C++ code. | |
27 e.Append(CCFLAGS=['-DMODULE' + str(i), '-Wno-long-long']) | |
28 | |
29 def MakeSelfTestEnv(base_env, extra_flags): | |
30 """ Make a list of four (nearly identical) envs which use the same CC | |
31 for compiling the four modules to test self-consistency. """ | |
32 base_env = base_env.Clone() | |
33 base_env.Append(CCFLAGS=extra_flags) | |
34 envlist = [] | |
robertm
2011/11/28 18:49:45
a list comprension would be more concise
jvoung - send to chromium...
2011/11/28 19:23:15
Done.
| |
26 for i in xrange(4): | 35 for i in xrange(4): |
27 envlist.append(env.Clone()) # Same CC for all... | 36 # Same CC for all but (different module defines) to assign later. |
28 link_env = env | 37 envlist.append(base_env.Clone()) |
29 else: | 38 AddCommonFlags(envlist) |
39 link_env = base_env | |
40 return (envlist, link_env) | |
41 | |
42 def MakeCrossEnvs(base_env, extra_gcc_flags, extra_pnacl_flags): | |
43 """ Make a list of four (nearly identical) envs, some of which use gcc | |
44 and some use pnacl, for compiling the four modules to test consistency. """ | |
45 envlist = [] | |
30 # For module0 | 46 # For module0 |
31 cc1_env = env.Clone() | 47 cc1_env = base_env.Clone() |
32 cc1_env.PNaClForceNative() | 48 cc1_env.PNaClForceNative() |
49 cc1_env.Append(CCFLAGS=extra_pnacl_flags) | |
33 envlist.append(cc1_env) | 50 envlist.append(cc1_env) |
34 # For module1 | 51 # For module1 |
35 cc2_env = env.PNaClGetNNaClEnv() | 52 cc2_env = base_env.PNaClGetNNaClEnv() |
36 # Assume that for nacl-gcc, the bots have at least sse2. | 53 cc2_env.Append(CCFLAGS=extra_gcc_flags) |
37 cc2_env.Append(CCFLAGS=['-msse2']) | |
38 # Add nacl-gcc compatibility flag (to be committed). | |
39 # cc2_env.Append(CCFLAGS=['-mstructs-on-stack']) | |
40 envlist.append(cc2_env) | 54 envlist.append(cc2_env) |
41 envlist.append(cc2_env.Clone()) # For module2 | 55 envlist.append(cc2_env.Clone()) # For module2 |
42 envlist.append(cc1_env.Clone()) # For module3 | 56 envlist.append(cc1_env.Clone()) # For module3 |
43 | |
44 link_env = cc1_env # To allow linking native objects (from ForceNative). | 57 link_env = cc1_env # To allow linking native objects (from ForceNative). |
45 | 58 AddCommonFlags(envlist) |
46 for (i, e) in enumerate(envlist): | 59 return (envlist, link_env) |
47 # Add -Wno-long-long because we use c99 long long constants in C++ code. | |
48 e.Append(CCFLAGS=['-DMODULE' + str(i), '-Wno-long-long']) | |
49 | 60 |
50 | 61 |
51 # Once the gcc flag is added (and/or if we do something with llvm). | 62 if not env.Bit('bitcode'): |
52 tis_broken = env.Bit('bitcode') and env.Bit('target_x86_64') | 63 # For gcc, only do a self-consistency test. |
64 # Assume for nacl-gcc the bots have at least sse2. | |
65 envlist, link_env = MakeSelfTestEnv(env, ['-msse2']) | |
66 test_configurations.append((envlist, link_env, '')) | |
67 else: | |
68 if env.Bit('target_arm'): | |
69 # For arm, there is no gcc, so just test pnacl (via native objects). | |
70 native_env = env.Clone() | |
71 native_env.PNaClForceNative() | |
72 envlist, link_env = MakeSelfTestEnv(native_env, []) | |
73 test_configurations.append((envlist, link_env, '')) | |
74 elif env.Bit('target_x86_32'): | |
75 # For x86-32 there is gcc, but no compatibility flags. | |
76 envlist, link_env = MakeCrossEnvs(env, ['-msse2'], []) | |
77 test_configurations.append((envlist, link_env, '')) | |
78 elif env.Bit('target_x86_64'): | |
79 # For x86-64 PNaCl we have more things to test. | |
80 # First test the command line flag. | |
81 envlist, link_env = MakeCrossEnvs(env, | |
82 ['-msse2', '-mpnacl-cconv'], []) | |
83 test_configurations.append((envlist, link_env, '')) | |
84 envlist, link_env = MakeCrossEnvs(env, | |
85 ['-msse2', '-DTEST_ATTRIBUTE_VIA_DECL'], | |
86 []) | |
87 test_configurations.append((envlist, link_env, '_decl')) | |
88 envlist, link_env = MakeCrossEnvs(env, | |
89 ['-msse2', '-DTEST_ATTRIBUTE_VIA_FP'], | |
90 []) | |
91 test_configurations.append((envlist, link_env, '_fp')) | |
92 else: | |
93 raise "Unknown target architecture!" | |
53 | 94 |
54 for test_source in ["return_structs.cc", | 95 ###################################################################### |
55 "call_structs.cc"]: | 96 |
97 for test_source in ['return_structs.cc', | |
98 'call_structs.cc']: | |
56 test_name = test_source.split('.')[0] | 99 test_name = test_source.split('.')[0] |
57 objfiles = [] | 100 for (envlist, link_env, test_suffix) in test_configurations: |
58 for (i, e) in enumerate(envlist): | 101 objfiles = [] |
59 obj = e.ComponentObject(test_name + '.' + str(i), test_source) | 102 test_full_name = test_name + test_suffix |
60 objfiles.append(obj) | 103 for (i, e) in enumerate(envlist): |
61 prog = link_env.ComponentProgram(test_name, | 104 obj = e.ComponentObject(test_full_name + '.' + str(i), |
62 objfiles, | 105 test_source) |
63 EXTRA_LIBS=['${NONIRT_LIBS}']) | 106 objfiles.append(obj) |
64 node = env.CommandSelLdrTestNacl(test_name + '.out', | 107 prog = link_env.ComponentProgram(test_full_name, |
65 prog) | 108 objfiles, |
66 env.AddNodeToTestSuite(node, ['small_tests'], | 109 EXTRA_LIBS=['${NONIRT_LIBS}']) |
67 'run_' + test_name + '_test', | 110 node = env.CommandSelLdrTestNacl(test_full_name + '.out', |
68 is_broken=tis_broken) | 111 prog) |
112 env.AddNodeToTestSuite(node, ['small_tests', 'toolchain_tests'], | |
113 'run_' + test_full_name + '_test') | |
OLD | NEW |