Home
last modified time | relevance | path

Searched refs:kStopCode (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/arm/
Dconstants-arm.h351 kStopCode = 1 << 23 enumerator
353 const uint32_t kStopCodeMask = kStopCode - 1;
354 const uint32_t kMaxStopCode = kStopCode - 1;
628 return (TypeValue() == 7) && (Bit(24) == 1) && (SvcValue() >= kStopCode); in IsStop()
Ddisasm-arm.cc283 if (svc >= kStopCode) { in PrintSoftwareInterrupt()
1294 if (instr->SvcValue() >= kStopCode) { in DecodeType7()
Dassembler-arm.cc2107 svc(kStopCode + code, cond); in stop()
2109 svc(kStopCode + kMaxStopCode, cond); in stop()
Dsimulator-arm.cc1992 return (instr->Bits(27, 24) == 0xF) && (instr->SvcValue() >= kStopCode); in isStopInstruction()
/external/v8/src/ppc/
Dconstants-ppc.h427 kStopCode = 1 << 23 enumerator
429 const uint32_t kStopCodeMask = kStopCode - 1;
430 const uint32_t kMaxStopCode = kStopCode - 1;
Ddisasm-ppc.cc136 if (svc >= kStopCode) { in PrintSoftwareInterrupt()
Dsimulator-ppc.cc1482 return (instr->Bits(27, 24) == 0xF) && (instr->SvcValue() >= kStopCode); in isStopInstruction()