Home
last modified time | relevance | path

Searched refs:AluOpcode (Results 1 – 3 of 3) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiMemAluCombiner.cpp201 LPAC::AluCode mergedAluCode(unsigned AluOpcode) { in mergedAluCode() argument
202 switch (AluOpcode) { in mergedAluCode()
250 LPAC::AluCode AluOpcode = mergedAluCode(AluInstr->getOpcode()); in insertMergedInstruction() local
253 assert(AluOpcode != LPAC::UNKNOWN && "Unknown ALU code in merging"); in insertMergedInstruction()
274 InstrBuilder.addImm(LPAC::makePreOp(AluOpcode)); in insertMergedInstruction()
276 InstrBuilder.addImm(LPAC::makePostOp(AluOpcode)); in insertMergedInstruction()
375 LPAC::AluCode AluOpcode = static_cast<LPAC::AluCode>(AluOperand.getImm()); in combineMemAluInBasicBlock() local
379 if (!LPAC::modifiesOp(AluOpcode) && DestReg != BaseReg) { in combineMemAluInBasicBlock()
/src/contrib/llvm-project/clang/lib/AST/Interp/
H A DOpcodes.td140 class AluOpcode : Opcode {
347 def ArrayElemPtr : AluOpcode;
348 def ArrayElemPtrPop : AluOpcode;
504 def AddOffset : AluOpcode;
506 def SubOffset : AluOpcode;
537 def Add : AluOpcode;
539 def Sub : AluOpcode;
541 def Mul : AluOpcode;
580 def Inc: AluOpcode;
581 def IncPop : AluOpcode;
[all …]
/src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FixupLEAs.cpp423 unsigned AluOpcode = CurInst->getOpcode(); in searchALUInst() local
424 if (AluOpcode != AddOpcode && AluOpcode != SubOpcode) in searchALUInst()