OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AsmString
(Results
1 - 11
of
11
) sorted by null
/external/llvm/utils/TableGen/
AsmWriterInst.cpp
47
/// ParseAsmString - Parse the specified Instruction's
AsmString
into this
63
std::string
AsmString
= CGI.FlattenAsmStringVariants(CGI.
AsmString
, Variant);
65
while (LastEmitted !=
AsmString
.size()) {
67
AsmString
.find_first_of("$\\", LastEmitted);
68
if (DollarPos == std::string::npos) DollarPos =
AsmString
.size();
73
switch (
AsmString
[LastEmitted]) {
100
AddLiteralString(std::string(1,
AsmString
[LastEmitted]));
103
} else if (
AsmString
[DollarPos] == '\\') {
104
if (DollarPos+1 !=
AsmString
.size())
[
all
...]
X86RecognizableInstr.h
72
/// The AT&T
AsmString
for the instruction
73
std::string
AsmString
;
AsmWriterEmitter.cpp
262
if (!(*I)->
AsmString
.empty() &&
616
std::string
AsmString
;
620
: Result(R),
AsmString
(AS) {}
648
O.indent(6) << "
AsmString
= \"" <<
AsmString
<< "\";\n";
764
static unsigned CountNumOperands(StringRef
AsmString
) {
766
std::pair<StringRef, StringRef> ASM =
AsmString
.split(' ');
776
static unsigned CountResultNumOperands(StringRef
AsmString
) {
778
std::pair<StringRef, StringRef> ASM =
AsmString
.split('\t');
841
CountResultNumOperands(CGA->ResultInst->
AsmString
);
[
all
...]
CodeGenInstruction.h
206
///
AsmString
- The format string used to emit a .s file for the
208
std::string
AsmString
;
256
/// FlattenAsmStringVariants - Flatten the specified
AsmString
to only
258
static std::string FlattenAsmStringVariants(StringRef
AsmString
,
268
///
AsmString
- The format string used to emit a .s file for the
270
std::string
AsmString
;
AsmMatcherEmitter.cpp
386
///
AsmString
- The assembly string for this instruction (with variants
388
std::string
AsmString
;
396
/// This directly corresponds to the tokenized
AsmString
after the mnemonic is
409
: TheDef(CGI.TheDef), DefRec(&CGI),
AsmString
(CGI.
AsmString
) {
413
: TheDef(Alias->TheDef), DefRec(Alias),
AsmString
(Alias->
AsmString
) {
638
errs() << TheDef->getName() << " -- " << "flattened:\"" <<
AsmString
<<"\"\n";
650
AsmString
= CodeGenInstruction::FlattenAsmStringVariants(
AsmString
, 0)
[
all
...]
/external/llvm/include/llvm/
InlineAsm.h
42
std::string
AsmString
, Constraints;
46
InlineAsm(PointerType *Ty, const std::string &
AsmString
,
58
static InlineAsm *get(FunctionType *Ty, StringRef
AsmString
,
75
const std::string &getAsmString() const { return
AsmString
; }
/external/clang/lib/CodeGen/
CGStmt.cpp
[
all
...]
CodeGenModule.cpp
[
all
...]
/external/clang/lib/Sema/
SemaStmt.cpp
[
all
...]
SemaDecl.cpp
[
all
...]
TreeTransform.h
[
all
...]
Completed in 294 milliseconds