OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InlineAsm
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/VMCore/
InlineAsm.cpp
1
//===--
InlineAsm
.cpp - Implement the
InlineAsm
class ---------------------===//
10
// This file implements the
InlineAsm
class.
14
#include "llvm/
InlineAsm
.h"
23
//
InlineAsm
vtable is emitted here.
24
InlineAsm
::~
InlineAsm
() {
28
InlineAsm
*
InlineAsm
::get(FunctionType *Ty, StringRef AsmString,
36
InlineAsm
::InlineAsm(PointerType *Ty, const std::string &asmString
[
all
...]
/external/llvm/include/llvm/
InlineAsm.h
1
//===-- llvm/
InlineAsm
.h - Class to represent inline asm strings-*- C++ -*-===//
11
// used as the callee operand of call instructions.
InlineAsm
's are uniqued
12
// like constants, and created via
InlineAsm
::get(...).
34
class
InlineAsm
: public Value {
35
friend struct ConstantCreator<
InlineAsm
, PointerType, InlineAsmKeyType>;
37
PointerType,
InlineAsm
, false>;
39
InlineAsm
(const
InlineAsm
&); // do not implement
40
void operator=(const
InlineAsm
&); // do not implement
46
InlineAsm
(PointerType *Ty, const std::string &AsmString
[
all
...]
Completed in 28 milliseconds