Home
last modified time | relevance | path

Searched refs:instruction_count (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/
Dassembler.h327 void PatchCode(byte* instructions, int instruction_count);
/external/v8/src/ia32/
Dassembler-ia32.cc184 void RelocInfo::PatchCode(byte* instructions, int instruction_count) { in PatchCode() argument
186 for (int i = 0; i < instruction_count; i++) { in PatchCode()
191 CPU::FlushICache(pc_, instruction_count); in PatchCode()
/external/v8/src/mips/
Dassembler-mips.cc189 void RelocInfo::PatchCode(byte* instructions, int instruction_count) { in PatchCode() argument
192 for (int i = 0; i < instruction_count; i++) { in PatchCode()
197 CPU::FlushICache(pc_, instruction_count * Assembler::kInstrSize); in PatchCode()
/external/v8/src/x64/
Dassembler-x64.cc188 void RelocInfo::PatchCode(byte* instructions, int instruction_count) { in PatchCode() argument
190 for (int i = 0; i < instruction_count; i++) { in PatchCode()
195 CPU::FlushICache(pc_, instruction_count); in PatchCode()
/external/v8/src/arm/
Dassembler-arm.cc142 void RelocInfo::PatchCode(byte* instructions, int instruction_count) { in PatchCode() argument
146 for (int i = 0; i < instruction_count; i++) { in PatchCode()
151 CPU::FlushICache(pc_, instruction_count * Assembler::kInstrSize); in PatchCode()