@@ -112,9 +112,9 @@ declare_args() {
112112 v8_experimental_extra_library_files =
113113 [ " //test/cctest/test-experimental-extra.js" ]
114114
115- v8_enable_gdbjit = (( v8_current_cpu == " x86 " || v8_current_cpu == " x64 " ||
116- v8_current_cpu == " x87 " ) && ( is_linux || is_mac )) ||
117- (v8_current_cpu == " ppc64" && is_linux )
115+ v8_enable_gdbjit =
116+ (( v8_current_cpu == " x86 " || v8_current_cpu == " x64 " ) &&
117+ ( is_linux || is_mac )) || (v8_current_cpu == " ppc64" && is_linux )
118118
119119 # Temporary flag to allow embedders to update their microtasks scopes
120120 # while rolling in a new version of V8.
@@ -439,9 +439,6 @@ config("toolchain") {
439439 ldflags += [ " /STACK:2097152" ]
440440 }
441441 }
442- if (v8_current_cpu == " x87" ) {
443- defines += [ " V8_TARGET_ARCH_X87" ]
444- }
445442 if (is_android && v8_android_log_stdout ) {
446443 defines += [ " V8_ANDROID_LOG_STDOUT" ]
447444 }
@@ -1039,11 +1036,6 @@ v8_source_set("v8_builtins_generators") {
10391036 # ## gcmole(arch:s390) ###
10401037 " src/builtins/s390/builtins-s390.cc" ,
10411038 ]
1042- } else if (v8_current_cpu == " x87" ) {
1043- sources += [
1044- # ## gcmole(arch:x87) ###
1045- " src/builtins/x87/builtins-x87.cc" ,
1046- ]
10471039 }
10481040
10491041 if (! v8_enable_i18n_support ) {
@@ -2313,37 +2305,6 @@ v8_source_set("v8_base") {
23132305 " src/s390/simulator-s390.cc" ,
23142306 " src/s390/simulator-s390.h" ,
23152307 ]
2316- } else if (v8_current_cpu == " x87" ) {
2317- sources += [ # ## gcmole(arch:x87) ###
2318- " src/compiler/x87/code-generator-x87.cc" ,
2319- " src/compiler/x87/instruction-codes-x87.h" ,
2320- " src/compiler/x87/instruction-scheduler-x87.cc" ,
2321- " src/compiler/x87/instruction-selector-x87.cc" ,
2322- " src/debug/x87/debug-x87.cc" ,
2323- " src/full-codegen/x87/full-codegen-x87.cc" ,
2324- " src/ic/x87/access-compiler-x87.cc" ,
2325- " src/ic/x87/handler-compiler-x87.cc" ,
2326- " src/ic/x87/ic-x87.cc" ,
2327- " src/regexp/x87/regexp-macro-assembler-x87.cc" ,
2328- " src/regexp/x87/regexp-macro-assembler-x87.h" ,
2329- " src/x87/assembler-x87-inl.h" ,
2330- " src/x87/assembler-x87.cc" ,
2331- " src/x87/assembler-x87.h" ,
2332- " src/x87/code-stubs-x87.cc" ,
2333- " src/x87/code-stubs-x87.h" ,
2334- " src/x87/codegen-x87.cc" ,
2335- " src/x87/codegen-x87.h" ,
2336- " src/x87/cpu-x87.cc" ,
2337- " src/x87/deoptimizer-x87.cc" ,
2338- " src/x87/disasm-x87.cc" ,
2339- " src/x87/frames-x87.cc" ,
2340- " src/x87/frames-x87.h" ,
2341- " src/x87/interface-descriptors-x87.cc" ,
2342- " src/x87/macro-assembler-x87.cc" ,
2343- " src/x87/macro-assembler-x87.h" ,
2344- " src/x87/simulator-x87.cc" ,
2345- " src/x87/simulator-x87.h" ,
2346- ]
23472308 }
23482309
23492310 configs = [ " :internal_config" ]
0 commit comments