Searched refs:II (Results 51 - 75 of 341) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/Hexagon/
H A DHexagonNewValueJump.cpp106 // We have identified this II could be feeder to NVJ,
110 MachineBasicBlock::iterator II,
116 if (QII->isPredicated(II))
129 if (II->getOpcode() == TargetOpcode::KILL)
148 for (unsigned i = 0; i < II->getNumOperands(); ++i) {
149 if (II->getOperand(i).isReg() &&
150 (II->getOperand(i).isUse() || II->getOperand(i).isDef())) {
151 MachineBasicBlock::iterator localII = II;
153 unsigned Reg = II
108 canBeFeederToNewValueJump(const HexagonInstrInfo *QII, const TargetRegisterInfo *TRI, MachineBasicBlock::iterator II, MachineBasicBlock::iterator end, MachineBasicBlock::iterator skip, MachineFunction &MF) argument
214 canCompareBeNewValueJump(const HexagonInstrInfo *QII, const TargetRegisterInfo *TRI, MachineBasicBlock::iterator II, unsigned pReg, bool secondReg, bool optLocation, MachineBasicBlock::iterator end, MachineFunction &MF) argument
[all...]
H A DHexagonRegisterInfo.h59 void eliminateFrameIndex(MachineBasicBlock::iterator II,
/external/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp226 std::insert_iterator<RegisterSet> II(Tmp, Tmp.begin());
229 II, LessRecordByID());
653 void buildInstructionOperandReference(MatchableInfo *II, StringRef OpName,
655 void buildAliasOperandReference(MatchableInfo *II, StringRef OpName,
1124 std::insert_iterator<RegisterSet> II(ContainingSet,
1126 std::set_intersection(Tmp.begin(), Tmp.end(), it->begin(), it->end(), II,
1294 MatchableInfo &II = **it; local
1299 for (unsigned i = 0, e = II.AsmOperands.size(); i != e; ++i) {
1300 MatchableInfo::AsmOperand &Op = II.AsmOperands[i];
1312 OperandMatchInfo.push_back(OperandMatchEntry::create(&II, C
1416 MatchableInfo *II = *it; local
1502 buildInstructionOperandReference(MatchableInfo *II, StringRef OperandName, unsigned AsmOpIdx) argument
1564 buildAliasOperandReference(MatchableInfo *II, StringRef OperandName, MatchableInfo::AsmOperand &Op) argument
[all...]
H A DDAGISelMatcherGen.cpp212 if (IntInit *II = dyn_cast<IntInit>(N->getLeafValue())) {
221 return AddMatcher(new CheckIntegerMatcher(II->getValue()));
326 if (IntInit *II = dyn_cast<IntInit>(N->getChild(1)->getLeafValue())) {
327 if (!isPowerOf2_32(II->getValue())) { // Don't bother with single bits.
336 AddMatcher(new CheckAndImmMatcher(II->getValue()));
338 AddMatcher(new CheckOrImmMatcher(II->getValue()));
615 if (IntInit *II = dyn_cast<IntInit>(N->getLeafValue())) {
616 AddMatcher(new EmitIntegerMatcher(II->getValue(), N->getType(0)));
689 CodeGenInstruction &II = CGT.getInstruction(Op); local
690 return II
718 CodeGenInstruction &II = CGT.getInstruction(Op); local
961 CodeGenInstruction &II = CGT.getInstruction(DstPat->getOperator()); local
[all...]
/external/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp161 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst))
162 switch (II->getIntrinsicID()) {
166 Loc = AliasAnalysis::Location(II->getArgOperand(1),
167 cast<ConstantInt>(II->getArgOperand(0))
169 II->getMetadata(LLVMContext::MD_tbaa));
174 Loc = AliasAnalysis::Location(II->getArgOperand(2),
175 cast<ConstantInt>(II->getArgOperand(1))
177 II->getMetadata(LLVMContext::MD_tbaa));
380 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst))
382 if (isa<DbgInfoIntrinsic>(II)) continu
[all...]
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp39 bool llvm::InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI, argument
41 return InlineFunction(CallSite(II), IFI, InsertLifetime);
54 InvokeInliningInfo(InvokeInst *II) argument
55 : OuterResumeDest(II->getUnwindDest()), InnerResumeDest(nullptr),
60 llvm::BasicBlock *InvokeBB = II->getParent();
189 InvokeInst *II = InvokeInst::Create(CI->getCalledValue(), Split, local
192 II->setDebugLoc(CI->getDebugLoc());
193 II->setCallingConv(CI->getCallingConv());
194 II->setAttributes(CI->getAttributes());
198 CI->replaceAllUsesWith(II);
216 HandleInlinedInvoke(InvokeInst *II, BasicBlock *FirstNewBlock, ClonedCodeInfo &InlinedCodeInfo) argument
[all...]
H A DLocal.cpp295 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
297 if (II->getIntrinsicID() == Intrinsic::stacksave)
301 if (II->getIntrinsicID() == Intrinsic::lifetime_start ||
302 II->getIntrinsicID() == Intrinsic::lifetime_end)
303 return isa<UndefValue>(II->getArgOperand(1));
1150 static void changeToCall(InvokeInst *II) { argument
1151 SmallVector<Value*, 8> Args(II->op_begin(), II->op_end() - 3);
1152 CallInst *NewCall = CallInst::Create(II->getCalledValue(), Args, "", II);
[all...]
/external/llvm/lib/Target/ARM/
H A DARMCodeEmitter.cpp51 const ARMBaseInstrInfo *II; member in class:__anon25965::ARMCodeEmitter
71 II((const ARMBaseInstrInfo *)tm.getInstrInfo()),
253 unsigned Reg = II->getRegisterInfo().getEncodingValue(MO.getReg());
291 unsigned Reg = II->getRegisterInfo().getEncodingValue(MO.getReg());
373 II = static_cast<const ARMBaseInstrInfo*>(Target.getInstrInfo());
445 return II->getRegisterInfo().getEncodingValue(MO.getReg());
695 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
710 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
733 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
748 Binary |= II
[all...]
/external/clang/test/Sema/
H A Dblock-misc.c5 int (^II) (int);
8 PFR = II; // OK
10 if (PFR == II) // OK
/external/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.h54 const MCInstrDesc &II,
69 const MCInstrDesc *II,
73 /// AddOperand - Add the specified operand to the specified machine instr. II
75 /// operand number (in the II) that we are adding. IIOpNum and II are used for
80 const MCInstrDesc *II,
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A Dmd5-1.js218 function II(a,b,c,d,x,s,ac) { function
296 a = II ( a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */
297 d = II ( d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */
298 c = II ( c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
299 b = II ( b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */
300 a = II ( a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */
301 d = II ( d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */
302 c = II ( c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
303 b = II ( b, c, d, a, x[ 1], S44, 0x85845dd1); /* 56 */
304 a = II (
[all...]
/external/llvm/lib/Target/Mips/
H A DMips16InstrInfo.cpp311 MachineBasicBlock::iterator II, DebugLoc DL,
332 rs.forward(II);
340 (*II->getParent()->getParent(), &Mips::CPU16RegsRegClass);
342 for (unsigned i = 0, e = II->getNumOperands(); i != e; ++i) {
343 MachineOperand &MO = II->getOperand(i);
359 for (unsigned i = 0, e = II->getNumOperands(); i != e; ++i) {
360 MachineOperand &MO = II->getOperand(i);
386 copyPhysReg(MBB, II, DL, FirstRegSavedTo, FirstRegSaved, true);
391 BuildMI(MBB, II, DL, get(Mips::LwConstant32), Reg).addImm(Imm).addImm(-1);
403 copyPhysReg(MBB, II, D
309 loadImmediate(unsigned FrameReg, int64_t Imm, MachineBasicBlock &MBB, MachineBasicBlock::iterator II, DebugLoc DL, unsigned &NewImm) const argument
[all...]
/external/ppp/pppd/
H A Dmd5.c73 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4 */
90 #define II(a, b, c, d, x, s, ac) \ macro
280 II ( a, b, c, d, in[ 0], S41, UL(4096336452)); /* 49 */
281 II ( d, a, b, c, in[ 7], S42, UL(1126891415)); /* 50 */
282 II ( c, d, a, b, in[14], S43, UL(2878612391)); /* 51 */
283 II ( b, c, d, a, in[ 5], S44, UL(4237533241)); /* 52 */
284 II ( a, b, c, d, in[12], S41, UL(1700485571)); /* 53 */
285 II ( d, a, b, c, in[ 3], S42, UL(2399980690)); /* 54 */
286 II ( c, d, a, b, in[10], S43, UL(4293915773)); /* 55 */
287 II (
[all...]
/external/clang/include/clang/Serialization/
H A DASTDeserializationListener.h39 IdentifierInfo *II) { }
38 IdentifierRead(serialization::IdentID ID, IdentifierInfo *II) argument
/external/llvm/lib/IR/
H A DTypeFinder.cpp57 for (BasicBlock::const_iterator II = BB->begin(),
58 E = BB->end(); II != E; ++II) {
59 const Instruction &I = *II;
/external/llvm/lib/Target/Sparc/
H A DSparcRegisterInfo.h45 void eliminateFrameIndex(MachineBasicBlock::iterator II,
/external/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp157 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
158 switch (II->getIntrinsicID()) {
212 IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst); local
213 if (!II) return AliasAnalysis::Location();
215 switch (II->getIntrinsicID()) {
225 return AliasAnalysis::Location(II->getArgOperand(0));
227 uint64_t Len = cast<ConstantInt>(II->getArgOperand(0))->getZExtValue();
228 return AliasAnalysis::Location(II->getArgOperand(1), Len);
255 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
256 switch (II
[all...]
/external/llvm/lib/CodeGen/
H A DShadowStackGC.cpp133 for (BasicBlock::iterator II = BB->begin(),
134 EE = BB->end(); II != EE; ++II)
135 if (CallInst *CI = dyn_cast<CallInst>(II))
178 InvokeInst *II = InvokeInst::Create(CI->getCalledValue(), local
181 II->setCallingConv(CI->getCallingConv());
182 II->setAttributes(CI->getAttributes());
183 CI->replaceAllUsesWith(II);
332 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II !
[all...]
/external/clang/lib/Lex/
H A DPragma.cpp399 IdentifierInfo *II = LookUpIdentifierInfo(Tok); local
402 if (II->isPoisoned()) continue;
405 if (II->hasMacroDefinition())
409 II->setIsPoisoned();
410 if (II->isFromAST())
411 II->setChangedSinceDeserialization();
791 IdentifierInfo *II = Tok.getIdentifierInfo(); local
792 if (II->isStr("ON"))
794 else if (II->isStr("OFF"))
796 else if (II
868 IdentifierInfo *II = Tok.getIdentifierInfo(); local
954 IdentifierInfo *II = Tok.getIdentifierInfo(); local
1032 IdentifierInfo *II = Tok.getIdentifierInfo(); local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DNoReturnFunctionChecker.cpp53 if (const IdentifierInfo *II = CE.getCalleeIdentifier()) {
58 = llvm::StringSwitch<bool>(StringRef(II->getName()))
/external/clang/test/SemaTemplate/
H A Ddependent-base-classes.cpp22 struct II { struct in namespace:PR6031
27 struct FI : II<TT>
/external/llvm/lib/Target/NVPTX/
H A DNVPTXRegisterInfo.cpp92 void NVPTXRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II, argument
97 MachineInstr &MI = *II;
H A DNVPTXLowerAggrCopies.cpp116 for (BasicBlock::iterator II = BI->begin(), IE = BI->end(); II != IE;
117 ++II) {
118 if (LoadInst *load = dyn_cast<LoadInst>(II)) {
132 } else if (MemTransferInst *intr = dyn_cast<MemTransferInst>(II)) {
144 } else if (MemSetInst *memsetintr = dyn_cast<MemSetInst>(II)) {
/external/clang/include/clang/Lex/
H A DPreprocessor.h65 IdentifierInfo *II; member in class:clang::TokenValue
68 TokenValue(tok::TokenKind Kind) : Kind(Kind), II(nullptr) {
75 TokenValue(IdentifierInfo *II) : Kind(tok::identifier), II(II) {} argument
78 (!II || II == Tok.getIdentifierInfo());
578 MacroDirective *getMacroDirective(IdentifierInfo *II) const {
579 if (!II->hasMacroDefinition())
582 MacroDirective *MD = getMacroDirectiveHistory(II);
591 getMacroInfo(IdentifierInfo *II) argument
606 appendDefMacroDirective(IdentifierInfo *II, MacroInfo *MI, SourceLocation Loc, bool isImported) argument
613 appendDefMacroDirective(IdentifierInfo *II, MacroInfo *MI) argument
[all...]
/external/llvm/lib/Transforms/IPO/
H A DLoopExtractor.cpp224 InvokeInst *II = dyn_cast<InvokeInst>(I); local
225 if (!II) continue;
226 BasicBlock *Parent = II->getParent();
227 BasicBlock *LPad = II->getUnwindDest();
301 if (const InvokeInst *II =
303 BlocksToExtractVec.push_back(II->getUnwindDest());

Completed in 9246 milliseconds

1234567891011>>