OLD | NEW |
1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 disassembler.cc | 64 disassembler.cc |
65 diy-fp.cc | 65 diy-fp.cc |
66 dtoa.cc | 66 dtoa.cc |
67 execution.cc | 67 execution.cc |
68 factory.cc | 68 factory.cc |
69 flags.cc | 69 flags.cc |
70 frame-element.cc | 70 frame-element.cc |
71 frames.cc | 71 frames.cc |
72 full-codegen.cc | 72 full-codegen.cc |
73 func-name-inferrer.cc | 73 func-name-inferrer.cc |
| 74 gdb-jit.cc |
74 global-handles.cc | 75 global-handles.cc |
75 fast-dtoa.cc | 76 fast-dtoa.cc |
76 fixed-dtoa.cc | 77 fixed-dtoa.cc |
77 handles.cc | 78 handles.cc |
78 hashmap.cc | 79 hashmap.cc |
79 heap-profiler.cc | 80 heap-profiler.cc |
80 heap.cc | 81 heap.cc |
81 hydrogen.cc | 82 hydrogen.cc |
82 hydrogen-instructions.cc | 83 hydrogen-instructions.cc |
83 ic.cc | 84 ic.cc |
| 85 inspector.cc |
84 interpreter-irregexp.cc | 86 interpreter-irregexp.cc |
85 jsregexp.cc | 87 jsregexp.cc |
86 jump-target.cc | 88 jump-target.cc |
87 lithium-allocator.cc | 89 lithium-allocator.cc |
88 lithium.cc | 90 lithium.cc |
89 liveedit.cc | 91 liveedit.cc |
90 log-utils.cc | 92 log-utils.cc |
91 log.cc | 93 log.cc |
92 mark-compact.cc | 94 mark-compact.cc |
93 messages.cc | 95 messages.cc |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 ia32/codegen-ia32.cc | 185 ia32/codegen-ia32.cc |
184 ia32/cpu-ia32.cc | 186 ia32/cpu-ia32.cc |
185 ia32/debug-ia32.cc | 187 ia32/debug-ia32.cc |
186 ia32/deoptimizer-ia32.cc | 188 ia32/deoptimizer-ia32.cc |
187 ia32/disasm-ia32.cc | 189 ia32/disasm-ia32.cc |
188 ia32/frames-ia32.cc | 190 ia32/frames-ia32.cc |
189 ia32/full-codegen-ia32.cc | 191 ia32/full-codegen-ia32.cc |
190 ia32/ic-ia32.cc | 192 ia32/ic-ia32.cc |
191 ia32/jump-target-ia32.cc | 193 ia32/jump-target-ia32.cc |
192 ia32/lithium-codegen-ia32.cc | 194 ia32/lithium-codegen-ia32.cc |
| 195 ia32/lithium-gap-resolver-ia32.cc |
193 ia32/lithium-ia32.cc | 196 ia32/lithium-ia32.cc |
194 ia32/macro-assembler-ia32.cc | 197 ia32/macro-assembler-ia32.cc |
195 ia32/regexp-macro-assembler-ia32.cc | 198 ia32/regexp-macro-assembler-ia32.cc |
196 ia32/register-allocator-ia32.cc | 199 ia32/register-allocator-ia32.cc |
197 ia32/stub-cache-ia32.cc | 200 ia32/stub-cache-ia32.cc |
198 ia32/virtual-frame-ia32.cc | 201 ia32/virtual-frame-ia32.cc |
199 """), | 202 """), |
200 'arch:x64': Split(""" | 203 'arch:x64': Split(""" |
201 jump-target-heavy.cc | 204 jump-target-heavy.cc |
202 virtual-frame-heavy.cc | 205 virtual-frame-heavy.cc |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 snapshot_cc = 'snapshot.cc' | 342 snapshot_cc = 'snapshot.cc' |
340 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 343 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
341 else: | 344 else: |
342 snapshot_obj = empty_snapshot_obj | 345 snapshot_obj = empty_snapshot_obj |
343 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 346 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
344 return (library_objs, d8_objs, [mksnapshot]) | 347 return (library_objs, d8_objs, [mksnapshot]) |
345 | 348 |
346 | 349 |
347 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 350 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
348 Return('library_objs d8_objs mksnapshot') | 351 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |