HomeSort by relevance Sort by last modified time
    Searched refs:op_end (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /toolchain/binutils/binutils-2.25/gas/config/
tc-moxie.c 157 char *op_end; local
173 for (op_end = str;
174 *op_end && !is_end_of_line[*op_end & 0xff] && *op_end != ' ';
175 op_end++)
178 pend = *op_end;
179 *op_end = 0;
184 *op_end = pend;
198 while (ISSPACE (*op_end))
    [all...]
tc-mcore.c 852 char * op_end; local
868 for (op_start = op_end = str;
869 nlen < 20 && !is_end_of_line [(unsigned char) *op_end] && *op_end != ' ';
870 op_end++)
901 op_end = parse_imm (op_end + 1, & reg, 0, 3);
907 op_end = parse_reg (op_end + 1, & reg);
913 op_end = parse_reg (op_end + 1, & reg)
    [all...]
tc-microblaze.c 888 char * op_end; local
907 for (op_start = op_end = str;
908 *op_end && !is_end_of_line[(unsigned char) *op_end] && *op_end != ' ';
909 op_end++)
938 if (strcmp (op_end, ""))
939 op_end = parse_reg (op_end + 1, &reg1); /* Get rd. */
945 if (strcmp (op_end, ""))
    [all...]
tc-pj.c 229 char *op_end; local
244 for (op_end = str;
245 *op_end && !is_end_of_line[*op_end & 0xff] && *op_end != ' ';
246 op_end++)
249 pend = *op_end;
250 *op_end = 0;
256 *op_end = pend;
269 (*opcode->u.func) (opcode, op_end);
    [all...]
tc-z8k.c 730 get_operands (const opcode_entry_type *opcode, char *op_end, op_type *operand)
732 char *ptr = op_end;
1199 char *op_end; local
1208 for (op_start = op_end = str;
1209 *op_end != 0 && *op_end != ' ' && ! is_end_of_line[(unsigned char) *op_end];
1210 op_end++)
1213 if (op_end == op_start)
1217 c = *op_end;
    [all...]
tc-h8300.c 893 get_operands (unsigned int noperands, char *op_end, struct h8_op *operand)
895 char *ptr = op_end;
941 get_mova_operands (char *op_end, struct h8_op *operand)
943 char *ptr = op_end;
1922 char *op_end; local
    [all...]
tc-m68hc11.c 2818 unsigned char *op_start, *op_end; local
    [all...]
tc-d30v.c 1291 char *op_end; local
    [all...]
  /external/llvm/include/llvm/IR/
OperandTraits.h 35 static Use *op_end(SubClass* U) { function in struct:llvm::FixedNumOperandTraits
70 static Use *op_end(SubClass* U) { function in struct:llvm::VariadicOperandTraits
97 static Use *op_end(User* U) { function in struct:llvm::HungoffOperandTraits
114 inline op_iterator op_end(); \
115 inline const_op_iterator op_end() const; \
130 CLASS::op_iterator CLASS::op_end() { \
131 return OperandTraits<CLASS>::op_end(this); \
133 CLASS::const_op_iterator CLASS::op_end() const { \
134 return OperandTraits<CLASS>::op_end(const_cast<CLASS*>(this)); \
User.h 104 ? OperandTraits<U>::op_end(const_cast<U*>(that))[Idx]
192 op_iterator op_end() {
195 const_op_iterator op_end() const {
199 return op_range(op_begin(), op_end());
202 return const_op_range(op_begin(), op_end());
220 return value_op_iterator(op_end());
GetElementPtrTypeIterator.h 112 return gep_type_iterator::end(GEP->op_end());
123 return gep_type_iterator::end(GEP.op_end());
CallSite.h 173 return (*this)->op_end() - (isCall() ? 1 : 3);
464 return cast<CallInst>(getInstruction())->op_end() - 1;
466 return cast<InvokeInst>(getInstruction())->op_end() - 3;
Metadata.h 935 op_iterator op_end() const { function in class:llvm::MDNode
938 op_range operands() const { return op_range(op_begin(), op_end()); }
1209 op_iterator op_end() { return op_iterator(this, getNumOperands()); } function in class:llvm::NamedMDNode
1213 const_op_iterator op_end() const { return const_op_iterator(this, getNumOperands()); } function in class:llvm::NamedMDNode
    [all...]
Operator.h 385 inline op_iterator idx_end() { return op_end(); }
386 inline const_op_iterator idx_end() const { return op_end(); }
  /external/mesa3d/scons/
source_list.py 61 op_end = op_pos + 1
72 op = line[op_pos:op_end]
74 val = self._expand_value(line[op_end:].lstrip())
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 58 SmallVector<Value*,16> CallArgs(II->op_begin(), II->op_end() - 3);
CtorUtils.cpp 74 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i) {
97 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i) {
LoopUtils.cpp 31 for (User::op_iterator Use = I->op_begin(), E = I->op_end(); Use != E; ++Use)
301 if (std::find(Phi->op_begin(), Phi->op_end(), Cur) == Phi->op_end())
456 for (User::op_iterator Use = I->op_begin(), E = I->op_end(); Use != E;
  /external/llvm/lib/IR/
TypeFinder.cpp 66 for (User::const_op_iterator OI = I.op_begin(), OE = I.op_end();
149 E = U->op_end(); I != E;++I)
LLVMContextImpl.cpp 206 unsigned Hash = hash_combine_range(N->op_begin() + Offset, N->op_end());
209 SmallVector<Metadata *, 8> MDs(N->op_begin() + Offset, N->op_end());
Instructions.cpp 36 ? cast<CallInst>(II)->op_end() - 1 // Skip Callee
37 : cast<InvokeInst>(II)->op_end() - 3; // Skip BB, BB, Callee
96 std::copy(PN.op_begin(), PN.op_end(), op_begin());
111 std::copy(op_begin() + Idx + 1, op_end(), op_begin() + Idx);
252 assert(It + 1 == op_end() && "Should add up!");
273 OperandTraits<CallInst>::op_end(this) - 1,
283 OperandTraits<CallInst>::op_end(this) - 1,
290 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
296 std::copy(CI.op_begin(), CI.op_end(), op_begin());
571 assert(It + 3 == op_end() && "Should add up!")
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 152 for (User::op_iterator OI = Init->op_begin(), OE = Init->op_end();
  /external/llvm/lib/Analysis/
ScalarEvolutionNormalization.cpp 114 for (SCEVNAryExpr::op_iterator I = AR->op_begin(), E = AR->op_end();
194 for (SCEVNAryExpr::op_iterator I = X->op_begin(), E = X->op_end();
  /external/llvm/unittests/IR/
InstructionsTest.cpp 35 EXPECT_EQ(r0->op_begin(), r0->op_end());
42 EXPECT_NE(r1->op_end(), b);
46 EXPECT_EQ(r1->op_end(), b);
122 EXPECT_NE(b0->op_begin(), b0->op_end());
123 EXPECT_EQ(b0->op_end(), std::next(b0->op_begin()));
125 EXPECT_EQ(b0->op_end(), std::next(b0->op_begin()));
143 EXPECT_NE(b, b1->op_end());
161 EXPECT_EQ(b1->op_end(), b);
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 158 op_iterator op_end() const { return Operands + NumOperands; }
160 return make_range(op_begin(), op_end());
309 op_end()),
530 E = NAry->op_end(); I != E; ++I) {

Completed in 320 milliseconds

1 2 3 4 5