|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/AsmParser/Parser.h 183 Constant *parseConstantValue(StringRef Asm, SMDiagnostic &Err, const Module &M,
References
lib/CodeGen/MIRParser/MIParser.cpp 1492 C = parseConstantValue(Source, Err, *MF.getFunction().getParent(),
lib/CodeGen/MIRParser/MIRParser.cpp 821 parseConstantValue(YamlConstant.Value.Value, Error, M));
unittests/AsmParser/AsmParserTest.cpp 76 V = parseConstantValue("double 3.5", Error, M);
82 V = parseConstantValue("i32 42", Error, M);
88 V = parseConstantValue("<4 x i32> <i32 0, i32 1, i32 2, i32 3>", Error, M);
93 V = parseConstantValue("i32 add (i32 1, i32 2)", Error, M);
97 V = parseConstantValue("i8* blockaddress(@test, %entry)", Error, M);
101 V = parseConstantValue("i8** undef", Error, M);
105 EXPECT_FALSE(parseConstantValue("duble 3.25", Error, M));
108 EXPECT_FALSE(parseConstantValue("i32 3.25", Error, M));
111 EXPECT_FALSE(parseConstantValue("i32* @foo", Error, M));
114 EXPECT_FALSE(parseConstantValue("i32 3, ", Error, M));
141 V = parseConstantValue("i32* getelementptr inbounds ([50 x %st], [50 x %st]* "
147 V = parseConstantValue("i32* getelementptr inbounds ([50 x %0], [50 x %0]* "