Searched refs:Opcode (Results 251 - 275 of 318) sorted by relevance

<<111213

/external/javassist/src/main/javassist/bytecode/
H A DCodeAttribute.java35 public class CodeAttribute extends AttributeInfo implements Opcode {
444 code[where] = (byte)Opcode.LDC_W;
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp152 Value *SCEVExpander::InsertBinop(Instruction::BinaryOps Opcode, argument
157 return ConstantExpr::get(Opcode, CLHS, CRHS);
171 if (IP->getOpcode() == (unsigned)Opcode && IP->getOperand(0) == LHS &&
193 Instruction *BO = cast<Instruction>(Builder.CreateBinOp(Opcode, LHS, RHS));
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.h265 virtual const char *getTargetNodeName(unsigned Opcode) const;
H A DThumb2SizeReduction.cpp870 unsigned Opcode = MI->getOpcode(); local
871 DenseMap<unsigned, unsigned>::iterator OPI = ReduceOpcodeMap.find(Opcode);
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.h174 virtual const char *getTargetNodeName(unsigned Opcode) const;
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.h582 const char *x86DisassemblerGetInstrName(unsigned Opcode, const void *mii);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp319 unsigned Opcode = I->getOpcode(); local
321 if (Opcode == Instruction::FAdd || Opcode == Instruction::FSub) {
344 if (Opcode == Instruction::FSub)
/external/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp929 bool MatchOperationAddr(User *Operation, unsigned Opcode, unsigned Depth);
1024 bool AddressingModeMatcher::MatchOperationAddr(User *AddrInst, unsigned Opcode, argument
1029 switch (Opcode) {
1081 if (Opcode == Instruction::Shl)
/external/smack/src/org/xbill/DNS/
H A DZoneTransferIn.java361 query.getHeader().setOpcode(Opcode.QUERY);
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp100 /// Opcode - The opcode from the last parsed instruction.
101 unsigned Opcode; member in struct:__anon9601::ParseStatementInfo
108 ParseStatementInfo() : Opcode(~0U), ParseError(false), AsmRewrites(0) {}
110 : Opcode(~0), ParseError(false), AsmRewrites(rewrites) {}
988 MCBinaryExpr::Opcode &Kind) {
1071 MCBinaryExpr::Opcode Kind = MCBinaryExpr::Add;
1087 MCBinaryExpr::Opcode Dummy;
1519 HadError = getTargetParser().MatchAndEmitInstruction(IDLoc, Info.Opcode,
4098 if (Info.Opcode == ~0U)
4101 const MCInstrDesc &Desc = MII->get(Info.Opcode);
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp968 void SelectionDAGBuilder::visit(unsigned Opcode, const User &I) { argument
971 switch (Opcode) {
2653 void SelectionDAGBuilder::visitShift(const User &I, unsigned Opcode) { argument
2681 setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(),
2709 ISD::CondCode Opcode = getICmpCondCode(predicate); local
2712 setValue(&I, DAG.getSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Opcode));
4888 unsigned Opcode; local
4891 case Intrinsic::sqrt: Opcode = ISD::FSQRT; break;
4892 case Intrinsic::fabs: Opcode = ISD::FABS; break;
4893 case Intrinsic::sin: Opcode
5173 unsigned Opcode = (IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END); local
5507 visitUnaryFloatCall(const CallInst &I, unsigned Opcode) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp43 BinaryOperator::Opcode Op = B->getOpcode();
813 llvm_unreachable("Invalid Opcode.");
882 BinaryOperator::Opcode Op = U->isIncrementOp() ? BO_Add : BO_Sub;
/external/javassist/src/main/javassist/bytecode/analysis/
H A DExecutor.java25 import javassist.bytecode.Opcode;
32 public class Executor implements Opcode {
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml137 module Opcode = struct module
229 | Instruction of Opcode.t
382 external constexpr_opcode : llvalue -> Opcode.t = "llvm_constexpr_get_opcode"
872 external instr_opcode : llvalue -> Opcode.t = "llvm_instr_get_opcode"
/external/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp130 /// Does the Opcode represent a conditional branch that we can remove and re-add
360 unsigned Opcode = MI.getOpcode(); local
361 switch (Opcode) {
/external/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp1765 int Opcode = I->getOpcode();
1766 bool isDestroy = Opcode == TII.getCallFrameDestroyOpcode();
1788 if (Opcode == TII.getCallFrameSetupOpcode()) {
1794 assert(Opcode == TII.getCallFrameDestroyOpcode());
1817 if (Opcode == TII.getCallFrameDestroyOpcode() && CalleeAmt) {
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp42 getTargetNodeName(unsigned Opcode) const
44 switch (Opcode)
741 unsigned Opcode = (N->getOpcode() == ISD::ADD) ? XCoreISD::LADD : local
744 SDValue Lo = DAG.getNode(Opcode, dl, DAG.getVTList(MVT::i32, MVT::i32),
748 SDValue Hi = DAG.getNode(Opcode, dl, DAG.getVTList(MVT::i32, MVT::i32),
/external/v8/src/arm/
H A Dlithium-arm.h186 virtual Opcode opcode() const { return LInstruction::k##type; } \
216 enum Opcode { enum in class:v8::internal::LInstruction
224 virtual Opcode opcode() const = 0;
1108 virtual Opcode opcode() const { return LInstruction::kArithmeticD; }
1125 virtual Opcode opcode() const { return LInstruction::kArithmeticT; }
/external/v8/src/ia32/
H A Dlithium-ia32.h181 virtual Opcode opcode() const { return LInstruction::k##type; } \
211 enum Opcode { enum in class:v8::internal::LInstruction
219 virtual Opcode opcode() const = 0;
1109 virtual Opcode opcode() const { return LInstruction::kArithmeticD; }
1130 virtual Opcode opcode() const { return LInstruction::kArithmeticT; }
/external/v8/src/mips/
H A Dlithium-mips.h185 virtual Opcode opcode() const { return LInstruction::k##type; } \
215 enum Opcode { enum in class:v8::internal::LInstruction
223 virtual Opcode opcode() const = 0;
1088 virtual Opcode opcode() const { return LInstruction::kArithmeticD; }
1105 virtual Opcode opcode() const { return LInstruction::kArithmeticT; }
/external/v8/src/x64/
H A Dlithium-x64.h186 virtual Opcode opcode() const { return LInstruction::k##type; } \
217 enum Opcode { enum in class:v8::internal::LInstruction
225 virtual Opcode opcode() const = 0;
1087 virtual Opcode opcode() const { return LInstruction::kArithmeticD; }
1104 virtual Opcode opcode() const { return LInstruction::kArithmeticT; }
/external/clang/lib/StaticAnalyzer/Checkers/
H A DIdempotentOperationChecker.cpp157 BinaryOperator::Opcode Op = B->getOpcode();
/external/llvm/include/llvm/CodeGen/
H A DMachineInstr.h261 int getOpcode() const { return MCID->Opcode; }
/external/llvm/include/llvm/IR/
H A DInstrTypes.h568 Instruction::CastOps Opcode, ///< Opcode of cast
586 Instruction::CastOps firstOpcode, ///< Opcode of first cast
587 Instruction::CastOps secondOpcode, ///< Opcode of second cast
607 /// Opcode op is valid or not.
646 // Opcode U L G E Intuitive operation
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp69 static unsigned GetEncodedCastOpcode(unsigned Opcode) { argument
70 switch (Opcode) {
87 static unsigned GetEncodedBinaryOpcode(unsigned Opcode) { argument
88 switch (Opcode) {

Completed in 2527 milliseconds

<<111213