Home | History | Annotate | Download | only in src

Lines Matching defs:code

6 //     * Redistributions of source code must retain the above copyright
92 PrintF("*** Generate code for %s function: ", ftype);
115 Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm,
116 Code::Flags flags,
120 // Allocate and install the code.
123 Handle<Code> code =
126 if (!code.is_null()) {
128 code->instruction_size());
130 return code;
134 void CodeGenerator::PrintCode(Handle<Code> code, CompilationInfo* info) {
143 // Print the source code if available.
160 PrintF("--- Unoptimized code ---\n");
161 info->closure()->shared()->code()->Disassemble(
164 PrintF("--- Optimized code ---\n");
166 PrintF("--- Code ---\n");
168 code->Disassemble(*function->debug_name()->ToCString());