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

Side by Side Diff: src/arm64/macro-assembler-arm64.h

Issue 360023003: Revert "Replace HeapNumber as doublebox with an explicit MutableHeapNumber." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/arm64/macro-assembler-arm64.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 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ 5 #ifndef V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
6 #define V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ 6 #define V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1364 // Allocates a heap number or jumps to the gc_required label if the young 1364 // Allocates a heap number or jumps to the gc_required label if the young
1365 // space is full and a scavenge is needed. 1365 // space is full and a scavenge is needed.
1366 // All registers are clobbered. 1366 // All registers are clobbered.
1367 // If no heap_number_map register is provided, the function will take care of 1367 // If no heap_number_map register is provided, the function will take care of
1368 // loading it. 1368 // loading it.
1369 void AllocateHeapNumber(Register result, 1369 void AllocateHeapNumber(Register result,
1370 Label* gc_required, 1370 Label* gc_required,
1371 Register scratch1, 1371 Register scratch1,
1372 Register scratch2, 1372 Register scratch2,
1373 CPURegister value = NoFPReg, 1373 CPURegister value = NoFPReg,
1374 CPURegister heap_number_map = NoReg, 1374 CPURegister heap_number_map = NoReg);
1375 MutableMode mode = IMMUTABLE);
1376 1375
1377 // --------------------------------------------------------------------------- 1376 // ---------------------------------------------------------------------------
1378 // Support functions. 1377 // Support functions.
1379 1378
1380 // Try to get function prototype of a function and puts the value in the 1379 // Try to get function prototype of a function and puts the value in the
1381 // result register. Checks that the function really is a function and jumps 1380 // result register. Checks that the function really is a function and jumps
1382 // to the miss label if the fast checks fail. The function register will be 1381 // to the miss label if the fast checks fail. The function register will be
1383 // untouched; the other registers may be clobbered. 1382 // untouched; the other registers may be clobbered.
1384 enum BoundFunctionAction { 1383 enum BoundFunctionAction {
1385 kMissOnBoundFunction, 1384 kMissOnBoundFunction,
(...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after
2319 #error "Unsupported option" 2318 #error "Unsupported option"
2320 #define CODE_COVERAGE_STRINGIFY(x) #x 2319 #define CODE_COVERAGE_STRINGIFY(x) #x
2321 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) 2320 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
2322 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 2321 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
2323 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 2322 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
2324 #else 2323 #else
2325 #define ACCESS_MASM(masm) masm-> 2324 #define ACCESS_MASM(masm) masm->
2326 #endif 2325 #endif
2327 2326
2328 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ 2327 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/arm64/macro-assembler-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698