Home
last modified time | relevance | path

Searched refs:ConstExpr (Results 1 – 11 of 11) sorted by relevance

/external/llvm/lib/Target/Lanai/AsmParser/
DLanaiAsmParser.cpp215 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value)) { in isHiImm16() local
216 int64_t Value = ConstExpr->getValue(); in isHiImm16()
237 const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value); in isHiImm16And() local
238 if (ConstExpr) { in isHiImm16And()
239 int64_t Value = ConstExpr->getValue(); in isHiImm16And()
251 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value)) { in isLoImm16() local
252 int64_t Value = ConstExpr->getValue(); in isLoImm16()
275 if (const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value)) { in isLoImm16Signed() local
276 int64_t Value = ConstExpr->getValue(); in isLoImm16Signed()
298 const MCConstantExpr *ConstExpr = dyn_cast<MCConstantExpr>(Imm.Value); in isLoImm16And() local
[all …]
/external/clang/test/SemaCXX/
Dimplicit-exception-spec.cpp19 struct ConstExpr { struct
20 …bool b = noexcept(ConstExpr()) && ThrowSomething(); // expected-error {{cannot use defaulted defau…
/external/llvm/lib/Transforms/Scalar/
DConstantHoisting.cpp264 if (auto ConstExpr = dyn_cast<ConstantExpr>(Opnd)) { in collectConstantCandidates() local
266 if (!ConstExpr->isCast()) in collectConstantCandidates()
269 if (auto ConstInt = dyn_cast<ConstantInt>(ConstExpr->getOperand(0))) { in collectConstantCandidates()
524 if (auto ConstExpr = dyn_cast<ConstantExpr>(Opnd)) { in emitBaseConstants() local
525 Instruction *ConstExprInst = ConstExpr->getAsInstruction(); in emitBaseConstants()
534 << "From : " << *ConstExpr << '\n'); in emitBaseConstants()
/external/llvm/lib/Target/SystemZ/
DSystemZAsmPrinter.cpp442 const MCConstantExpr *ConstExpr = MCConstantExpr::create(2, OutContext); in EmitInstruction() local
444 .addExpr(MCBinaryExpr::createAdd(Expr, ConstExpr, OutContext)); in EmitInstruction()
455 const MCConstantExpr *ConstExpr = MCConstantExpr::create(2, OutContext); in EmitInstruction() local
459 .addExpr(MCBinaryExpr::createAdd(Expr, ConstExpr, OutContext)); in EmitInstruction()
/external/swiftshader/third_party/LLVM/test/Assembler/
D2002-08-16-ConstExprInlined.ll2 ; ConstExpr reference. Disassembling this program assembled yields invalid
/external/llvm/test/Assembler/
D2002-08-16-ConstExprInlined.ll2 ; ConstExpr reference. Disassembling this program assembled yields invalid
/external/llvm/utils/
Dllvm.grm234 | Types ConstExpr
244 ConstExpr::= CastOps "(" ^ ConstVal to Types ^ ")"
333 | ConstExpr
/external/swiftshader/third_party/LLVM/utils/
Dllvm.grm233 | Types ConstExpr
243 ConstExpr::= CastOps "(" ^ ConstVal to Types ^ ")"
332 | ConstExpr
/external/llvm/test/Transforms/Inline/
Dalloca_test.ll41 ; Don't assume that the size is a ConstantInt (a ConstExpr is also a constant).
/external/llvm/test/Transforms/LoopStrengthReduce/
D2012-03-26-constexpr.ll2 ; PR11950: isHighCostExpansion crashes on ConstExpr
/external/clang/test/CodeGenCXX/
Dcxx0x-initializer-stdinitializerlist.cpp471 namespace ConstExpr { namespace