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

  /toolchain/binutils/binutils-2.25/include/opcode/
tic30.h 229 #define StackOp 0x001F0000
230 #define Rotate StackOp
489 { "pop" ,1,0x0E200000,StackOp, { AllReg, 0, 0 }, Imm_None },
490 { "popf" ,1,0x0EA00000,StackOp, { Rn, 0, 0 }, Imm_None },
491 { "push" ,1,0x0F200000,StackOp, { AllReg, 0, 0 }, Imm_None },
492 { "pushf" ,1,0x0FA00000,StackOp, { Rn, 0, 0 }, Imm_None },
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 118 InfixCalculatorTok StackOp = InfixOperatorStack[Idx];
119 if (OpPrecedence[Op] > OpPrecedence[StackOp] || StackOp == IC_LPAREN) {
133 StackOp = InfixOperatorStack[Idx];
134 if (!(OpPrecedence[StackOp] >= OpPrecedence[Op] || ParenCount))
139 if (!ParenCount && StackOp == IC_LPAREN)
142 if (StackOp == IC_RPAREN) {
145 } else if (StackOp == IC_LPAREN) {
150 PostfixStack.push_back(std::make_pair(StackOp, 0));
160 InfixCalculatorTok StackOp = InfixOperatorStack.pop_back_val()
    [all...]

Completed in 205 milliseconds