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

Side by Side Diff: build/features.gypi

Issue 21014003: Optionally use 31-bits SMI value for 64-bit system (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed danno's comments Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 23 matching lines...) Expand all
34 'v8_enable_debugger_support%': 1, 34 'v8_enable_debugger_support%': 1,
35 35
36 'v8_enable_disassembler%': 0, 36 'v8_enable_disassembler%': 0,
37 37
38 'v8_enable_gdbjit%': 0, 38 'v8_enable_gdbjit%': 0,
39 39
40 'v8_object_print%': 0, 40 'v8_object_print%': 0,
41 41
42 'v8_enable_verify_heap%': 0, 42 'v8_enable_verify_heap%': 0,
43 43
44 'v8_use_31_bit_smi_value%': 0,
45
44 'v8_use_snapshot%': 'true', 46 'v8_use_snapshot%': 'true',
45 47
46 # With post mortem support enabled, metadata is embedded into libv8 that 48 # With post mortem support enabled, metadata is embedded into libv8 that
47 # describes various parameters of the VM for use by debuggers. See 49 # describes various parameters of the VM for use by debuggers. See
48 # tools/gen-postmortem-metadata.py for details. 50 # tools/gen-postmortem-metadata.py for details.
49 'v8_postmortem_support%': 'false', 51 'v8_postmortem_support%': 'false',
50 52
51 # Interpreted regexp engine exists as platform-independent alternative 53 # Interpreted regexp engine exists as platform-independent alternative
52 # based where the regular expression is compiled to a bytecode. 54 # based where the regular expression is compiled to a bytecode.
53 'v8_interpreted_regexp%': 0, 55 'v8_interpreted_regexp%': 0,
(...skipping 12 matching lines...) Expand all
66 }], 68 }],
67 ['v8_enable_gdbjit==1', { 69 ['v8_enable_gdbjit==1', {
68 'defines': ['ENABLE_GDB_JIT_INTERFACE',], 70 'defines': ['ENABLE_GDB_JIT_INTERFACE',],
69 }], 71 }],
70 ['v8_object_print==1', { 72 ['v8_object_print==1', {
71 'defines': ['OBJECT_PRINT',], 73 'defines': ['OBJECT_PRINT',],
72 }], 74 }],
73 ['v8_enable_verify_heap==1', { 75 ['v8_enable_verify_heap==1', {
74 'defines': ['VERIFY_HEAP',], 76 'defines': ['VERIFY_HEAP',],
75 }], 77 }],
78 ['v8_use_31_bit_smi_value==1', {
79 'defines': ['V8_USE_31_BIT_SMI_VALUE',],
80 }],
76 ['v8_interpreted_regexp==1', { 81 ['v8_interpreted_regexp==1', {
77 'defines': ['V8_INTERPRETED_REGEXP',], 82 'defines': ['V8_INTERPRETED_REGEXP',],
78 }], 83 }],
79 ['v8_enable_i18n_support==1', { 84 ['v8_enable_i18n_support==1', {
80 'defines': ['V8_I18N_SUPPORT',], 85 'defines': ['V8_I18N_SUPPORT',],
81 }], 86 }],
82 ['v8_compress_startup_data=="bz2"', { 87 ['v8_compress_startup_data=="bz2"', {
83 'defines': [ 88 'defines': [
84 'COMPRESS_STARTUP_DATA_BZ2', 89 'COMPRESS_STARTUP_DATA_BZ2',
85 ], 90 ],
(...skipping 16 matching lines...) Expand all
102 }, 107 },
103 'conditions': [ 108 'conditions': [
104 ['v8_enable_extra_checks==1', { 109 ['v8_enable_extra_checks==1', {
105 'defines': ['ENABLE_EXTRA_CHECKS',], 110 'defines': ['ENABLE_EXTRA_CHECKS',],
106 }], 111 }],
107 ], # conditions 112 ], # conditions
108 }, # Release 113 }, # Release
109 }, # configurations 114 }, # configurations
110 }, # target_defaults 115 }, # target_defaults
111 } 116 }
OLDNEW
« no previous file with comments | « Makefile ('k') | include/v8.h » ('j') | src/x64/full-codegen-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698