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 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1073 size = 8 * kPointerSize * KB; | 1073 size = 8 * kPointerSize * KB; |
1074 break; | 1074 break; |
1075 case CODE_SPACE: | 1075 case CODE_SPACE: |
1076 if (heap()->isolate()->code_range()->exists()) { | 1076 if (heap()->isolate()->code_range()->exists()) { |
1077 // When code range exists, code pages are allocated in a special way | 1077 // When code range exists, code pages are allocated in a special way |
1078 // (from the reserved code range). That part of the code is not yet | 1078 // (from the reserved code range). That part of the code is not yet |
1079 // upgraded to handle small pages. | 1079 // upgraded to handle small pages. |
1080 size = AreaSize(); | 1080 size = AreaSize(); |
1081 } else { | 1081 } else { |
1082 #if V8_TARGET_ARCH_MIPS | 1082 #if V8_TARGET_ARCH_MIPS |
1083 // On MIPS, code stubs seem to be quite a bit larger. | 1083 // TODO(plind): Investigate larger code stubs size on MIPS. |
1084 // TODO(olivf/MIPS folks): Can we do anything about this? Does it | 1084 size = 480 * KB; |
1085 // indicate the presence of a bug? | |
1086 size = 464 * KB; | |
1087 #else | 1085 #else |
1088 size = 416 * KB; | 1086 size = 416 * KB; |
1089 #endif | 1087 #endif |
1090 } | 1088 } |
1091 break; | 1089 break; |
1092 default: | 1090 default: |
1093 UNREACHABLE(); | 1091 UNREACHABLE(); |
1094 } | 1092 } |
1095 return Min(size, AreaSize()); | 1093 return Min(size, AreaSize()); |
1096 } | 1094 } |
(...skipping 2125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3222 object->ShortPrint(); | 3220 object->ShortPrint(); |
3223 PrintF("\n"); | 3221 PrintF("\n"); |
3224 } | 3222 } |
3225 printf(" --------------------------------------\n"); | 3223 printf(" --------------------------------------\n"); |
3226 printf(" Marked: %x, LiveCount: %x\n", mark_size, LiveBytes()); | 3224 printf(" Marked: %x, LiveCount: %x\n", mark_size, LiveBytes()); |
3227 } | 3225 } |
3228 | 3226 |
3229 #endif // DEBUG | 3227 #endif // DEBUG |
3230 | 3228 |
3231 } } // namespace v8::internal | 3229 } } // namespace v8::internal |
OLD | NEW |