| /trueos/contrib/binutils/opcodes/ |
| HD | mips16-opc.c | 61 #define I1 INSN_ISA1 macro 70 {"nop", "", 0x6500, 0xffff, RD_Z, 0, I1 }, /* move $0,$Z */ 71 {"la", "x,A", 0x0800, 0xf800, WR_x|RD_PC, 0, I1 }, 72 {"abs", "x,w", 0, (int) M_ABS, INSN_MACRO, 0, I1 }, 73 {"addiu", "y,x,4", 0x4000, 0xf810, WR_y|RD_x, 0, I1 }, 74 {"addiu", "x,k", 0x4800, 0xf800, WR_x|RD_x, 0, I1 }, 75 {"addiu", "S,K", 0x6300, 0xff00, WR_SP|RD_SP, 0, I1 }, 76 {"addiu", "S,S,K", 0x6300, 0xff00, WR_SP|RD_SP, 0, I1 }, 77 {"addiu", "x,P,V", 0x0800, 0xf800, WR_x|RD_PC, 0, I1 }, 78 {"addiu", "x,S,V", 0x0000, 0xf800, WR_x|RD_SP, 0, I1 }, [all …]
|
| HD | mips-opc.c | 82 #define I1 INSN_ISA1 macro 181 {"nop", "", 0x00000000, 0xffffffff, 0, INSN2_ALIAS, I1 }, /* sll */ 184 {"li", "t,j", 0x24000000, 0xffe00000, WR_t, INSN2_ALIAS, I1 }, /* addiu */ 185 {"li", "t,i", 0x34000000, 0xffe00000, WR_t, INSN2_ALIAS, I1 }, /* ori */ 186 {"li", "t,I", 0, (int) M_LI, INSN_MACRO, 0, I1 }, 187 {"move", "d,s", 0, (int) M_MOVE, INSN_MACRO, 0, I1 }, 189 {"move", "d,s", 0x00000021, 0xfc1f07ff, WR_d|RD_s, INSN2_ALIAS, I1 },/* addu */ 190 {"move", "d,s", 0x00000025, 0xfc1f07ff, WR_d|RD_s, INSN2_ALIAS, I1 },/* or */ 191 {"b", "p", 0x10000000, 0xffff0000, UBD, INSN2_ALIAS, I1 },/* beq 0,0 */ 192 {"b", "p", 0x04010000, 0xffff0000, UBD, INSN2_ALIAS, I1 },/* bgez 0 */ [all …]
|
| HD | i386-dis.c | 233 #define I1 { OP_I, const_1_mode } macro 1607 { "rolA", { Eb, I1 } }, 1608 { "rorA", { Eb, I1 } }, 1609 { "rclA", { Eb, I1 } }, 1610 { "rcrA", { Eb, I1 } }, 1611 { "shlA", { Eb, I1 } }, 1612 { "shrA", { Eb, I1 } }, 1614 { "sarA", { Eb, I1 } }, 1618 { "rolQ", { Ev, I1 } }, 1619 { "rorQ", { Ev, I1 } }, [all …]
|
| /trueos/contrib/llvm/lib/Analysis/ |
| HD | AliasAnalysisEvaluator.cpp | 188 for (SetVector<Value *>::iterator I1 = Pointers.begin(), E = Pointers.end(); in runOnFunction() local 189 I1 != E; ++I1) { in runOnFunction() 191 Type *I1ElTy = cast<PointerType>((*I1)->getType())->getElementType(); in runOnFunction() 194 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) { in runOnFunction() 199 switch (AA.alias(*I1, I1Size, *I2, I2Size)) { in runOnFunction() 201 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent()); in runOnFunction() 204 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent()); in runOnFunction() 207 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2, in runOnFunction() 211 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent()); in runOnFunction() 219 for (SetVector<Value *>::iterator I1 = Loads.begin(), E = Loads.end(); in runOnFunction() local [all …]
|
| HD | AliasAnalysis.cpp | 506 bool AliasAnalysis::canInstructionRangeModify(const Instruction &I1, in canInstructionRangeModify() argument 509 assert(I1.getParent() == I2.getParent() && in canInstructionRangeModify() 511 BasicBlock::const_iterator I = &I1; in canInstructionRangeModify()
|
| /trueos/contrib/llvm/lib/Target/Hexagon/ |
| HD | HexagonCopyToCombine.cpp | 83 MachineInstr *findPairable(MachineInstr *I1, bool &DoInsertAtI1); 87 void combine(MachineInstr *I1, MachineInstr *I2, 90 bool isSafeToMoveTogether(MachineInstr *I1, MachineInstr *I2, 234 bool HexagonCopyToCombine::isSafeToMoveTogether(MachineInstr *I1, in isSafeToMoveTogether() argument 245 if (I2UseReg && I1->modifiesRegister(I2UseReg, TRI)) in isSafeToMoveTogether() 256 End = --(MachineBasicBlock::reverse_iterator(I1)); in isSafeToMoveTogether() 259 End = MachineBasicBlock::reverse_iterator(I1); in isSafeToMoveTogether() 301 MachineBasicBlock::iterator I(I1), End(I2); in isSafeToMoveTogether() 305 IsImmUseReg = I1->getOperand(1).isImm() || I1->getOperand(1).isGlobal(); in isSafeToMoveTogether() 306 unsigned I1UseReg = IsImmUseReg ? 0 : I1->getOperand(1).getReg(); in isSafeToMoveTogether() [all …]
|
| /trueos/contrib/llvm/include/llvm/ADT/ |
| HD | APSInt.h | 268 static bool isSameValue(const APSInt &I1, const APSInt &I2) { in isSameValue() argument 269 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned()) in isSameValue() 270 return I1 == I2; in isSameValue() 273 if (I1.getBitWidth() > I2.getBitWidth()) in isSameValue() 274 return isSameValue(I1, I2.extend(I1.getBitWidth())); in isSameValue() 275 else if (I2.getBitWidth() > I1.getBitWidth()) in isSameValue() 276 return isSameValue(I1.extend(I2.getBitWidth()), I2); in isSameValue() 280 if (I1.isSigned()) { in isSameValue() 281 if (I1.isNegative()) in isSameValue() 284 return APSInt(I1, true) == I2; in isSameValue() [all …]
|
| HD | APInt.h | 554 static bool isSameValue(const APInt &I1, const APInt &I2) { in isSameValue() argument 555 if (I1.getBitWidth() == I2.getBitWidth()) in isSameValue() 556 return I1 == I2; in isSameValue() 558 if (I1.getBitWidth() > I2.getBitWidth()) in isSameValue() 559 return I1 == I2.zext(I1.getBitWidth()); in isSameValue() 561 return I1.zext(I2.getBitWidth()) == I2; in isSameValue()
|
| /trueos/contrib/llvm/lib/Transforms/IPO/ |
| HD | MergeFunctions.cpp | 186 bool isEquivalentOperation(const Instruction *I1, 297 bool FunctionComparator::isEquivalentOperation(const Instruction *I1, in isEquivalentOperation() argument 303 if (I1->getOpcode() != I2->getOpcode() || in isEquivalentOperation() 304 I1->getNumOperands() != I2->getNumOperands() || in isEquivalentOperation() 305 !isEquivalentType(I1->getType(), I2->getType()) || in isEquivalentOperation() 306 !I1->hasSameSubclassOptionalData(I2)) in isEquivalentOperation() 311 for (unsigned i = 0, e = I1->getNumOperands(); i != e; ++i) in isEquivalentOperation() 312 if (!isEquivalentType(I1->getOperand(i)->getType(), in isEquivalentOperation() 317 if (const LoadInst *LI = dyn_cast<LoadInst>(I1)) in isEquivalentOperation() 322 if (const StoreInst *SI = dyn_cast<StoreInst>(I1)) in isEquivalentOperation() [all …]
|
| /trueos/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| HD | IdenticalExprChecker.cpp | 144 Expr::const_child_iterator I1 = Expr1->child_begin(); in isIdenticalExpr() local 146 while (I1 != Expr1->child_end() && I2 != Expr2->child_end()) { in isIdenticalExpr() 147 const Expr *Child1 = dyn_cast<Expr>(*I1); in isIdenticalExpr() 151 ++I1; in isIdenticalExpr() 156 if (I1 != Expr1->child_end()) in isIdenticalExpr()
|
| /trueos/contrib/llvm/lib/CodeGen/ |
| HD | BranchFolding.cpp | 307 MachineBasicBlock::iterator &I1, in ComputeCommonTailLength() argument 309 I1 = MBB1->end(); in ComputeCommonTailLength() 313 while (I1 != MBB1->begin() && I2 != MBB2->begin()) { in ComputeCommonTailLength() 314 --I1; --I2; in ComputeCommonTailLength() 316 while (I1->isDebugValue()) { in ComputeCommonTailLength() 317 if (I1==MBB1->begin()) { in ComputeCommonTailLength() 328 --I1; in ComputeCommonTailLength() 333 ++I1; in ComputeCommonTailLength() 340 if (!I1->isIdenticalTo(I2) || in ComputeCommonTailLength() 346 I1->isInlineAsm()) { in ComputeCommonTailLength() [all …]
|
| HD | MachineInstr.cpp | 783 MachineBasicBlock::const_instr_iterator I1 = *this; in isIdenticalTo() local 787 while (++I1 != E1 && I1->isInsideBundle()) { in isIdenticalTo() 789 if (I2 == E2 || !I2->isInsideBundle() || !I1->isIdenticalTo(I2, Check)) in isIdenticalTo()
|
| /trueos/contrib/llvm/lib/Transforms/Utils/ |
| HD | SimplifyCFG.cpp | 984 Instruction *I1, Instruction *I2) { in isSafeToHoistInvoke() argument 991 if (BB1V != BB2V && (BB1V==I1 || BB2V==I2)) { in isSafeToHoistInvoke() 1014 Instruction *I1 = BB1_Itr++, *I2 = BB2_Itr++; in HoistThenElseCodeToIf() local 1016 DbgInfoIntrinsic *DBI1 = dyn_cast<DbgInfoIntrinsic>(I1); in HoistThenElseCodeToIf() 1019 while (isa<DbgInfoIntrinsic>(I1)) in HoistThenElseCodeToIf() 1020 I1 = BB1_Itr++; in HoistThenElseCodeToIf() 1024 if (isa<PHINode>(I1) || !I1->isIdenticalToWhenDefined(I2) || in HoistThenElseCodeToIf() 1025 (isa<InvokeInst>(I1) && !isSafeToHoistInvoke(BB1, BB2, I1, I2))) in HoistThenElseCodeToIf() 1034 if (isa<TerminatorInst>(I1)) in HoistThenElseCodeToIf() 1040 BIParent->getInstList().splice(BI, BB1->getInstList(), I1); in HoistThenElseCodeToIf() [all …]
|
| /trueos/contrib/jansson/test/suites/api/ |
| HD | test_unpack.c | 18 json_int_t I1; in run_tests() local 53 rv = json_unpack(j, "I", &I1); in run_tests() 54 if(rv || I1 != 5555555) in run_tests()
|
| /trueos/contrib/llvm/lib/Transforms/Vectorize/ |
| HD | BBVectorize.cpp | 2395 Value *I1, *I2 = 0; in getReplacementInput() local 2397 I1 = LEE->getOperand(0); in getReplacementInput() 2399 I1 = LSV->getOperand(0); in getReplacementInput() 2401 if (I2 == I1 || isa<UndefValue>(I2)) in getReplacementInput() 2407 if (!I2 && I3 != I1) in getReplacementInput() 2409 else if (I3 != I1 && I3 != I2) in getReplacementInput() 2413 if (!I2 && I3 != I1) in getReplacementInput() 2415 else if (I3 != I1 && I3 != I2) in getReplacementInput() 2421 if (!I2 && I4 != I1) in getReplacementInput() 2423 else if (I4 != I1 && I4 != I2) in getReplacementInput() [all …]
|
| HD | SLPVectorizer.cpp | 257 Instruction *I1 = dyn_cast<Instruction>(V1); in reorderInputsAccordingToOpcode() local 263 AllSameOpcodeRight = I1; in reorderInputsAccordingToOpcode() 274 if(P1->getOpcode() != I1->getOpcode()) in reorderInputsAccordingToOpcode() 295 if (I0 && I1) { in reorderInputsAccordingToOpcode() 296 if(!i && I0->getOpcode() > I1->getOpcode()) { in reorderInputsAccordingToOpcode() 297 Left.push_back(I1); in reorderInputsAccordingToOpcode() 299 } else if (i && I0->getOpcode() > I1->getOpcode() && Right[i-1] != I1) { in reorderInputsAccordingToOpcode() 301 Left.push_back(I1); in reorderInputsAccordingToOpcode() 303 } else if (i && I0->getOpcode() == I1->getOpcode() && Right[i-1] == I0) { in reorderInputsAccordingToOpcode() 305 Left.push_back(I1); in reorderInputsAccordingToOpcode() [all …]
|
| /trueos/contrib/llvm/include/llvm/Analysis/ |
| HD | AliasAnalysis.h | 507 bool canInstructionRangeModify(const Instruction &I1, const Instruction &I2, 511 bool canInstructionRangeModify(const Instruction &I1, const Instruction &I2, in canInstructionRangeModify() argument 513 return canInstructionRangeModify(I1, I2, Location(Ptr, Size)); in canInstructionRangeModify()
|
| /trueos/contrib/llvm/lib/Target/Sparc/ |
| HD | SparcCallingConv.td | 22 CCIfType<[i32, f32], CCAssignToReg<[I0, I1, I2, I3, I4, I5]>>, 31 CCIfType<[i32], CCAssignToReg<[I0, I1, I2, I3, I4, I5]>>,
|
| HD | SparcRegisterInfo.td | 84 def I1 : Ri<25, "I1">, DwarfRegNum<[25]>;
|
| /trueos/contrib/gcc/ |
| HD | local-alloc.c | 1567 #define EXCHANGE(I1, I2) \ in block_alloc() argument 1568 { i = qty_order[I1]; qty_order[I1] = qty_order[I2]; qty_order[I2] = i; } in block_alloc() 1616 #define EXCHANGE(I1, I2) \ in block_alloc() argument 1617 { i = qty_order[I1]; qty_order[I1] = qty_order[I2]; qty_order[I2] = i; } in block_alloc()
|
| /trueos/libexec/getty/ |
| HD | gettytab.h | 119 #define I1 gettynums[17].value macro
|
| /trueos/contrib/llvm/lib/Transforms/InstCombine/ |
| HD | InstCombineAddSub.cpp | 443 Instruction *I1 = dyn_cast<Instruction>(I->getOperand(1)); in performFactorization() local 445 if (!I0 || !I1 || I0->getOpcode() != I1->getOpcode()) in performFactorization() 456 Value *Opnd1_0 = I1->getOperand(0); in performFactorization() 457 Value *Opnd1_1 = I1->getOperand(1); in performFactorization()
|
| /trueos/contrib/llvm/lib/Target/Sparc/Disassembler/ |
| HD | SparcDisassembler.cpp | 83 SP::I0, SP::I1, SP::I2, SP::I3,
|
| /trueos/sys/gnu/dts/arm/ |
| HD | ste-href-family-pinctrl.dtsi | 650 "GPIO163_C20", /* I1 */ 676 "GPIO163_C20", /* I1 */
|
| /trueos/contrib/gdb/gdb/ |
| HD | sparc-stub.c | 113 I0, I1, I2, I3, I4, I5, FP, I7, enumerator
|