HomeSort by relevance Sort by last modified time
    Searched defs:CPSR (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/v8/src/arm/
constants-arm.h 222 CPSR = 0 << 22,
245 CPSR_c = CPSR | 1 << 16,
246 CPSR_x = CPSR | 1 << 17,
247 CPSR_s = CPSR | 1 << 18,
248 CPSR_f = CPSR | 1 << 19,
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 216 bool DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR);
229 // default CCReg argument. Sets CPSR if we're setting CPSR instead of CCR.
230 bool ARMFastISel::DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR) {
234 // Look to see if our OptionalDef is defining CPSR or CCR.
238 if (MO.getReg() == ARM::CPSR)
239 *CPSR = true;
262 // CPSR defs that need to be added before the remaining operands. See s_cc_out
275 // defines CPSR. All other OptionalDefines in ARM are the CCR register.
276 bool CPSR = false
    [all...]

Completed in 692 milliseconds