Searched defs:instruction_count (Results 1 - 5 of 5) sorted by relevance
/external/v8/src/ia32/ |
H A D | assembler-ia32.cc | 163 void RelocInfo::PatchCode(byte* instructions, int instruction_count) { argument 165 for (int i = 0; i < instruction_count; i++) { 170 CPU::FlushICache(pc_, instruction_count);
|
/external/v8/src/mips/ |
H A D | assembler-mips.cc | 182 void RelocInfo::PatchCode(byte* instructions, int instruction_count) { argument 185 for (int i = 0; i < instruction_count; i++) { 190 CPU::FlushICache(pc_, instruction_count * Assembler::kInstrSize);
|
/external/v8/src/x64/ |
H A D | assembler-x64.cc | 174 void RelocInfo::PatchCode(byte* instructions, int instruction_count) { argument 176 for (int i = 0; i < instruction_count; i++) { 181 CPU::FlushICache(pc_, instruction_count);
|
/external/v8/src/arm/ |
H A D | assembler-arm.cc | 203 void RelocInfo::PatchCode(byte* instructions, int instruction_count) { argument 207 for (int i = 0; i < instruction_count; i++) { 212 CPU::FlushICache(pc_, instruction_count * Assembler::kInstrSize);
|
H A D | assembler-thumb2.cc | 183 void RelocInfo::PatchCode(byte* instructions, int instruction_count) { argument 187 for (int i = 0; i < instruction_count; i++) { 192 CPU::FlushICache(pc_, instruction_count * Assembler::kInstrSize);
|
Completed in 116 milliseconds