Searched refs:CE1 (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/IR/
H A DConstantFold.cpp1051 if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
1053 if (CE1->getOpcode() == Instruction::ZExt) {
1056 CE1->getOperand(0)->getType()->getPrimitiveSizeInBits();
1063 if (CE1->getOpcode() == Instruction::PtrToInt &&
1064 isa<GlobalValue>(CE1->getOperand(0))) {
1065 GlobalValue *GV = cast<GlobalValue>(CE1->getOperand(0));
1092 if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
1093 switch (CE1->getOpcode()) {
1099 CmpInst::Predicate pred = (CmpInst::Predicate)CE1->getPredicate();
1101 return ConstantExpr::getCompare(pred, CE1
1378 ConstantExpr *CE1 = cast<ConstantExpr>(V1); local
1517 ConstantExpr *CE1 = cast<ConstantExpr>(V1); local
[all...]
/external/clang/test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/
H A Dp1.cpp36 concept enum CE1 {}; // expected-error {{'concept' can only appear on the definition of a function template or variable template}} enum
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DConstantFold.cpp1104 if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
1106 if (CE1->getOpcode() == Instruction::ZExt) {
1109 CE1->getOperand(0)->getType()->getPrimitiveSizeInBits();
1116 if (CE1->getOpcode() == Instruction::PtrToInt &&
1117 isa<GlobalValue>(CE1->getOperand(0))) {
1118 GlobalValue *GV = cast<GlobalValue>(CE1->getOperand(0));
1145 if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
1146 switch (CE1->getOpcode()) {
1152 CmpInst::Predicate pred = (CmpInst::Predicate)CE1->getPredicate();
1154 return ConstantExpr::getCompare(pred, CE1
1571 ConstantExpr *CE1 = cast<ConstantExpr>(V1); local
1689 ConstantExpr *CE1 = cast<ConstantExpr>(V1); local
[all...]
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DConstantFolding.cpp936 if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(Ops1)) {
937 if (TD && CE0->getOpcode() == CE1->getOpcode()) {
945 Constant *C1 = ConstantExpr::getIntegerCast(CE1->getOperand(0),
954 CE0->getOperand(0)->getType() == CE1->getOperand(0)->getType()))
956 CE1->getOperand(0), TD);
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp1126 if (auto *CE1 = dyn_cast<ConstantExpr>(Ops1)) {
1127 if (CE0->getOpcode() == CE1->getOpcode()) {
1135 Constant *C1 = ConstantExpr::getIntegerCast(CE1->getOperand(0),
1145 CE0->getOperand(0)->getType() == CE1->getOperand(0)->getType()) {
1147 Predicate, CE0->getOperand(0), CE1->getOperand(0), DL, TLI);

Completed in 171 milliseconds