OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CastOps
(Results
1 - 25
of
38
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/llvm/lib/IR/
ReplaceConstant.cpp
65
Builder.CreateCast((Instruction::
CastOps
)OpCode, CE->getOperand(0),
Instructions.cpp
2687
bool CastInst::isNoopCast(Instruction::
CastOps
Opcode,
2730
Instruction::
CastOps
firstOp, Instruction::
CastOps
secondOp,
2946
CastInst *CastInst::Create(Instruction::
CastOps
op, Value *S, Type *Ty,
2968
CastInst *CastInst::Create(Instruction::
CastOps
op, Value *S, Type *Ty,
3119
Instruction::
CastOps
opcode =
3133
Instruction::
CastOps
opcode =
3147
Instruction::
CastOps
opcode =
3160
Instruction::
CastOps
opcode =
3227
Instruction::
CastOps
[
all
...]
Constants.cpp
1958
static Constant *getFoldedCast(Instruction::
CastOps
opc, Constant *C, Type *Ty,
1978
Instruction::
CastOps
opc = Instruction::
CastOps
(oc);
2064
Instruction::
CastOps
opcode =
2078
Instruction::
CastOps
opcode =
3501
return CastInst::Create((Instruction::
CastOps
)getOpcode(),
ConstantFold.cpp
98
Instruction::
CastOps
firstOp = Instruction::
CastOps
(Op->getOpcode());
99
Instruction::
CastOps
secondOp = Instruction::
CastOps
(opc);
ConstantRange.cpp
647
ConstantRange ConstantRange::castOp(Instruction::
CastOps
CastOp,
/src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXTargetTransformInfo.cpp
143
Optional<Instruction::
CastOps
> CastOp;
156
SimplifyAction(Instruction::
CastOps
CastOp) : CastOp(CastOp) {}
NVPTXGenericToNVVM.cpp
306
return Builder.CreateCast(Instruction::
CastOps
(C->getOpcode()),
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
InstrTypes.h
450
///
CastOps
category (Instruction::isCast(opcode) returns true). This
455
Instruction::
CastOps
, ///< The opcode of the cast instruction
463
///
CastOps
category. This constructor has insert-at-end-of-block semantics
468
Instruction::
CastOps
, ///< The opcode for the cast instruction
621
static Instruction::
CastOps
getCastOpcode(
650
Instruction::
CastOps
Opcode, ///< Opcode of cast
664
/// returns Instruction::
CastOps
value for a cast that can replace
668
Instruction::
CastOps
firstOpcode, ///< Opcode of first cast
669
Instruction::
CastOps
secondOpcode, ///< Opcode of second cast
679
Instruction::
CastOps
getOpcode() const
[
all
...]
ConstantRange.h
314
ConstantRange castOp(Instruction::
CastOps
CastOp,
IRBuilderFolder.h
98
virtual Value *CreateCast(Instruction::
CastOps
Op, Constant *C,
ConstantFolder.h
188
Constant *CreateCast(Instruction::
CastOps
Op, Constant *C,
NoFolder.h
222
Instruction *CreateCast(Instruction::
CastOps
Op, Constant *C,
Instruction.h
782
enum
CastOps
{
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
Float2Int.cpp
208
auto CastOp = (Instruction::
CastOps
)I->getOpcode();
283
auto CastOp = (Instruction::
CastOps
)I->getOpcode();
InferAddressSpaces.cpp
261
return CastInst::isNoopCast(Instruction::
CastOps
(I2P->getOpcode()),
264
CastInst::isNoopCast(Instruction::
CastOps
(P2I->getOpcode()),
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h
227
GenericValue executeCastOperation(Instruction::
CastOps
opcode, Value *SrcVal,
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ValueTracking.h
713
Instruction::
CastOps
*CastOp = nullptr,
730
Instruction::
CastOps
*CastOp = nullptr, unsigned Depth = 0);
TargetFolder.h
176
Constant *CreateCast(Instruction::
CastOps
Op, Constant *C,
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
ScalarEvolutionExpander.h
424
Value *ReuseOrCreateCast(Value *V, Type *Ty, Instruction::
CastOps
Op,
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp
249
Instruction::
CastOps
256
Instruction::
CastOps
firstOp = CI1->getOpcode();
257
Instruction::
CastOps
secondOp = CI2->getOpcode();
274
return Instruction::
CastOps
(Res);
283
if (Instruction::
CastOps
NewOpc = isEliminableCastPair(CSrc, &CI)) {
702
Instruction::
CastOps
Opcode = Trunc.getOpcode();
1636
CastInst::
CastOps
Opcode = I.getOpcode();
InstCombineInternal.h
336
/// Instruction::
CastOps
value for a cast that can replace the pair, casting
340
Instruction::
CastOps
isEliminableCastPair(const CastInst *CI1,
InstCombineSelect.cpp
314
return CastInst::Create(Instruction::
CastOps
(TI->getOpcode()), NewSI,
1950
return CastInst::Create(Instruction::
CastOps
(ExtOpcode), NewSel, SelType);
2922
Instruction::
CastOps
CastOp;
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
Lint.cpp
680
if (CastInst::isNoopCast(Instruction::
CastOps
(CE->getOpcode()),
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ScalarEvolutionExpander.cpp
45
Instruction::
CastOps
Op,
152
Instruction::
CastOps
Op = CastInst::getCastOpcode(V, false, Ty, false);
/src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp
3625
if (!CastInst::castIsValid((Instruction::
CastOps
)Opc, SrcVal, DestTy))
3629
ID.ConstantVal = ConstantExpr::getCast((Instruction::
CastOps
)Opc,
7051
if (!CastInst::castIsValid((Instruction::
CastOps
)Opc, Op, DestTy)) {
7052
CastInst::castIsValid((Instruction::
CastOps
)Opc, Op, DestTy);
7057
Inst = CastInst::Create((Instruction::
CastOps
)Opc, Op, DestTy);
Completed in 41 milliseconds
1
2
Indexes created Tue Aug 04 00:24:20 UTC 2026