OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ScalarTy
(Results
1 - 4
of
4
) sorted by null
/external/clang/test/CodeGen/
parameter-passing.c
14
typedef int
ScalarTy
;
24
static
ScalarTy
scalar_id(
ScalarTy
a) { return a; }
33
static void scalar_mul(
ScalarTy
a) { result *= a; }
/external/llvm/lib/IR/
Constants.cpp
147
Type *
ScalarTy
= Ty->getScalarType();
153
if (PointerType *PTy = dyn_cast<PointerType>(
ScalarTy
))
597
Type *
ScalarTy
= Ty->getScalarType();
598
if (
ScalarTy
->isFloatingPointTy()) {
599
Constant *C = getNegativeZero(
ScalarTy
);
[
all
...]
/external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp
797
Type *
ScalarTy
= VL[0]->getType();
799
ScalarTy
= SI->getValueOperand()->getType();
800
VectorType *VecTy = VectorType::get(
ScalarTy
, VL.size());
874
TTI->getCmpSelInstrCost(Opcode,
ScalarTy
, Builder.getInt1Ty());
878
TTI->getArithmeticInstrCost(Opcode,
ScalarTy
);
886
TTI->getMemoryOpCost(Instruction::Load,
ScalarTy
, 1, 0);
887
int VecLdCost = TTI->getMemoryOpCost(Instruction::Load,
ScalarTy
, 1, 0);
893
TTI->getMemoryOpCost(Instruction::Store,
ScalarTy
, 1, 0);
894
int VecStCost = TTI->getMemoryOpCost(Instruction::Store,
ScalarTy
, 1, 0);
949
Type *
ScalarTy
= VL[0]->getType()
[
all
...]
/external/llvm/lib/Transforms/Scalar/
SROA.cpp
[
all
...]
Completed in 323 milliseconds