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

Side by Side Diff: src/trusted/validator/build.scons

Issue 1309953002: x86 validator: Rewrite non-temporal stores into cached memory accesses (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Review nit Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/trusted/validator/validation_cache_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 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 6
7 import os 7 import os
8 import sys 8 import sys
9 Import('env') 9 Import('env')
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'validation_disable_nontemporals_test', 55 'validation_disable_nontemporals_test',
56 ['validation_disable_nontemporals_test.cc'], 56 ['validation_disable_nontemporals_test.cc'],
57 EXTRA_LIBS=['validators', 'nrd_xfer']) 57 EXTRA_LIBS=['validators', 'nrd_xfer'])
58 58
59 node = gtest_env.CommandTest( 59 node = gtest_env.CommandTest(
60 'validation_disable_nontemporals_test.out', 60 'validation_disable_nontemporals_test.out',
61 command=[validation_disable_nontemporals_test_exe]) 61 command=[validation_disable_nontemporals_test_exe])
62 62
63 env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'], 63 env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'],
64 'run_disable_nontemporals_test') 64 'run_disable_nontemporals_test')
65
66 if env.Bit('build_x86'):
67 validation_rewrite_test_exe = gtest_env.ComponentProgram(
68 'validation_rewrite_test',
69 ['validation_rewrite_test.cc', 'validation_rewrite_test_data.S'],
70 EXTRA_LIBS=['validators', 'nrd_xfer'])
71
72 node = gtest_env.CommandTest(
73 'validation_rewrite_test.out',
74 command=[validation_rewrite_test_exe])
75
76 env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'],
77 'run_validation_rewrite_test')
OLDNEW
« no previous file with comments | « no previous file | src/trusted/validator/validation_cache_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698