Searched refs:LdrOrAddInstructionMask (Results 1 - 1 of 1) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/assembler/
H A DARMAssembler.h239 static const ARMWord LdrOrAddInstructionMask = 0x0ff00000; member in class:JSC::ARMAssembler
929 ASSERT((*instruction & LdrOrAddInstructionMask) == AddImmediateInstruction || (*instruction & LdrOrAddInstructionMask) == LdrImmediateInstruction);
930 if ((*instruction & LdrOrAddInstructionMask) == AddImmediateInstruction) {
931 *instruction = (*instruction & ~LdrOrAddInstructionMask) | LdrImmediateInstruction;
941 ASSERT((*instruction & LdrOrAddInstructionMask) == AddImmediateInstruction || (*instruction & LdrOrAddInstructionMask) == LdrImmediateInstruction);
942 if ((*instruction & LdrOrAddInstructionMask) == LdrImmediateInstruction) {
943 *instruction = (*instruction & ~LdrOrAddInstructionMask) | AddImmediateInstruction;

Completed in 92 milliseconds