Lines Matching refs:Code
6 // * Redistributions of source code must retain the above copyright
205 // Code range is full or too fragmented.
321 // Code which is part of the code-range does not have its own VirtualMemory.
632 // Allocate executable memory either from code range or from the
849 // We are guarding code pages: the first OS page after the header
861 // We are guarding code pages: the first OS page after the header
868 // We are guarding code pages: the last OS page will be protected as
1054 // When code range exists, code pages are allocated in a special way
1055 // (from the reserved code range). That part of the code is not yet
1438 // The object should not be code or a map.
1796 for (int i = 0; i < Code::NUMBER_OF_KINDS; i++) {
1803 PrintF("\n Code kind histograms: \n");
1804 for (int i = 0; i < Code::NUMBER_OF_KINDS; i++) {
1807 Code::Kind2String(static_cast<Code::Kind>(i)),
2693 PrintF("Code comment statistics (\" [ comment-txt : size/ "
2774 // Skip code that was covered with previous comment
2783 // Collects code size statistics:
2784 // - by code kind
2785 // - by code comment
2791 Code* code = Code::cast(obj);
2792 isolate->code_kind_statistics()[code->kind()] += code->Size();
2793 RelocIterator it(code);
2795 const byte* prev_pc = code->instruction_start();
2805 ASSERT(code->instruction_start() <= prev_pc &&
2806 prev_pc <= code->instruction_end());
2807 delta += static_cast<int>(code->instruction_end() - prev_pc);
3124 // We have only code, sequential strings, external strings
3186 Code* code = Code::cast(obj);
3187 isolate->code_kind_statistics()[code->kind()] += code->Size();