Changeset 0d92e5c
- Timestamp:
- Jul 31, 2019, 3:34:45 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- df8b87cd, f9bf142
- Parents:
- c6f1f3e (diff), 61cfae2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
automake/cfa.m4
rc6f1f3e r0d92e5c 66 66 "x86-64" ) cannon_arch_name="x64";; 67 67 "x86_64" ) cannon_arch_name="x64";; 68 "aarch64" ) cannon_arch_name="x64";; 68 69 "x86" ) cannon_arch_name="x86";; 69 70 "i386" ) cannon_arch_name="x86";; … … 75 76 "armv7l" ) cannon_arch_name="arm";; 76 77 *) 77 >&2 echo "Unk own architecture " $arch_name;78 >&2 echo "Unknown architecture " $arch_name; 78 79 exit 1 79 80 ;; -
benchmark/Makefile.am
rc6f1f3e r0d92e5c 11 11 ## Created On : Sun May 31 09:08:15 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Mon Ju n 24 16:45:42201914 ## Update Count : 5 313 ## Last Modified On : Mon Jul 29 18:02:19 2019 14 ## Update Count : 54 15 15 ############################################################################### 16 16 … … 50 50 REPEAT = ${abs_top_builddir}/tools/repeat 51 51 STATS = ${abs_top_srcdir}/tools/stat.py 52 repeats = 3 # 30 52 # NEED AT LEAST 4 DATA VALUES FOR BENCHMARKS BECAUSE THE MAX AND MIN VALUES ARE REMOVED 53 repeats = 5 # 31 for benchmarks 53 54 arch = x64 54 55 skipcompile = no -
benchmark/Makefile.in
rc6f1f3e r0d92e5c 396 396 REPEAT = ${abs_top_builddir}/tools/repeat 397 397 STATS = ${abs_top_srcdir}/tools/stat.py 398 repeats = 3 # 30 398 # NEED AT LEAST 4 DATA VALUES FOR BENCHMARKS BECAUSE THE MAX AND MIN VALUES ARE REMOVED 399 repeats = 5 # 31 for benchmarks 399 400 arch = x64 400 401 skipcompile = no -
configure
rc6f1f3e r0d92e5c 3433 3433 "x86-64" ) cannon_arch_name="x64";; 3434 3434 "x86_64" ) cannon_arch_name="x64";; 3435 "aarch64" ) cannon_arch_name="x64";; 3435 3436 "x86" ) cannon_arch_name="x86";; 3436 3437 "i386" ) cannon_arch_name="x86";; … … 3442 3443 "armv7l" ) cannon_arch_name="arm";; 3443 3444 *) 3444 >&2 echo "Unk own architecture " $arch_name;3445 >&2 echo "Unknown architecture " $arch_name; 3445 3446 exit 1 3446 3447 ;; … … 3474 3475 "x86-64" ) cannon_arch_name="x64";; 3475 3476 "x86_64" ) cannon_arch_name="x64";; 3477 "aarch64" ) cannon_arch_name="x64";; 3476 3478 "x86" ) cannon_arch_name="x86";; 3477 3479 "i386" ) cannon_arch_name="x86";; … … 3483 3485 "armv7l" ) cannon_arch_name="arm";; 3484 3486 *) 3485 >&2 echo "Unk own architecture " $arch_name;3487 >&2 echo "Unknown architecture " $arch_name; 3486 3488 exit 1 3487 3489 ;; -
src/SymTab/Demangle.cc
rc6f1f3e r0d92e5c 9 9 // Author : Rob Schluntz 10 10 // Created On : Thu Jul 19 12:52:41 2018 11 // Last Modified By : Rob Schluntz12 // Last Modified On : T hu Jul 19 12:54:35 201813 // Update Count : 211 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jul 30 13:46:33 2019 13 // Update Count : 3 14 14 // 15 15 … … 313 313 typeString = "_Atomic " + typeString; 314 314 } // if 315 if ( type->get_lvalue() ) {316 // when not generating C code, print lvalue for debugging.317 typeString = "lvalue " + typeString;318 }319 315 } 320 316 } -
src/SymTab/Mangler.cc
rc6f1f3e r0d92e5c 10 10 // Created On : Sun May 17 21:40:29 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Sep 25 15:49:26 201713 // Update Count : 2 312 // Last Modified On : Tue Jul 30 13:46:10 2019 13 // Update Count : 26 14 14 // 15 15 #include "Mangler.h" … … 377 377 mangleName << Encoding::qualifiers.at(Type::Mutex); 378 378 } // if 379 if ( type->get_lvalue() ) {380 // mangle based on whether the type is lvalue, so that the resolver can differentiate lvalues and rvalues381 mangleName << Encoding::qualifiers.at(Type::Lvalue);382 }383 384 379 if ( inFunctionType ) { 385 380 // turn off inFunctionType so that types can be differentiated for nested qualifiers … … 724 719 mangleName << Encoding::qualifiers.at(Type::Mutex); 725 720 } // if 726 if ( type->is_lvalue() ) {727 // mangle based on whether the type is lvalue, so that the resolver can differentiate lvalues and rvalues728 mangleName << Encoding::qualifiers.at(Type::Lvalue);729 }730 731 721 if ( inFunctionType ) { 732 722 // turn off inFunctionType so that types can be differentiated for nested qualifiers -
tests/pybin/settings.py
rc6f1f3e r0d92e5c 22 22 'x86-64' : 'x64', 23 23 'x86_64' : 'x64', 24 'aarch64' : 'x64', 24 25 'x86' : 'x86', 25 26 'i386' : 'x86', … … 40 41 canonical_host = Architecture.make_canonical( config.HOSTARCH ) 41 42 except KeyError: 42 print("Unk own host architecture %s" % config.HOSTARCH, file=sys.stderr)43 print("Unknown host architecture %s" % config.HOSTARCH, file=sys.stderr) 43 44 sys.exit(1) 44 45 … … 47 48 arch = Architecture.make_canonical( arch ) 48 49 except KeyError: 49 print("Unk own architecture %s" % arch, file=sys.stderr)50 print("Unknown architecture %s" % arch, file=sys.stderr) 50 51 sys.exit(1) 51 52
Note: See TracChangeset
for help on using the changeset viewer.