OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Win64EH
(Results
1 - 6
of
6
) sorted by null
/external/llvm/include/llvm/MC/
MCWin64EH.h
18
#include "llvm/Support/
Win64EH
.h"
29
typedef
Win64EH
::UnwindOpcodes OpType;
38
assert(Op ==
Win64EH
::UOP_PushNonVol);
41
: Operation(Size>128 ?
Win64EH
::UOP_AllocLarge :
Win64EH
::UOP_AllocSmall),
45
assert(Op ==
Win64EH
::UOP_SetFPReg ||
46
Op ==
Win64EH
::UOP_SaveNonVol ||
47
Op ==
Win64EH
::UOP_SaveNonVolBig ||
48
Op ==
Win64EH
::UOP_SaveXMM128 ||
49
Op ==
Win64EH
::UOP_SaveXMM128Big)
[
all
...]
/external/llvm/lib/MC/
MCWin64EH.cpp
28
case
Win64EH
::UOP_PushNonVol:
29
case
Win64EH
::UOP_AllocSmall:
30
case
Win64EH
::UOP_SetFPReg:
31
case
Win64EH
::UOP_PushMachFrame:
34
case
Win64EH
::UOP_SaveNonVol:
35
case
Win64EH
::UOP_SaveXMM128:
38
case
Win64EH
::UOP_SaveNonVolBig:
39
case
Win64EH
::UOP_SaveXMM128Big:
42
case
Win64EH
::UOP_AllocLarge:
71
case
Win64EH
::UOP_PushNonVol
[
all
...]
MCStreamer.cpp
461
MCWin64EHInstruction Inst(
Win64EH
::UOP_PushNonVol, Label, Register);
473
MCWin64EHInstruction Inst(
Win64EH
::UOP_SetFPReg, 0, Register, Offset);
496
Offset > 512*1024-8 ?
Win64EH
::UOP_SaveNonVolBig :
Win64EH
::UOP_SaveNonVol,
509
Offset > 512*1024-16 ?
Win64EH
::UOP_SaveXMM128Big :
Win64EH
::UOP_SaveXMM128,
521
MCWin64EHInstruction Inst(
Win64EH
::UOP_PushMachFrame, Label, Code);
/external/llvm/include/llvm/Support/
Win64EH.h
1
//===-- llvm/Support/
Win64EH
.h ---Win64 EH Constants-------------*- C++ -*-===//
23
namespace
Win64EH
{
142
} // End of namespace
Win64EH
/external/llvm/tools/llvm-objdump/
COFFDump.cpp
23
#include "llvm/Support/
Win64EH
.h"
31
using namespace llvm::
Win64EH
;
306
const
Win64EH
::UnwindInfo *UI =
307
reinterpret_cast<const
Win64EH
::UnwindInfo *>
/external/llvm/tools/llvm-readobj/
COFFDumper.cpp
29
#include "llvm/Support/
Win64EH
.h"
39
using namespace llvm::
Win64EH
;
73
const
Win64EH
::UnwindInfo& UI,
77
void printUnwindCode(const
Win64EH
::UnwindInfo& UI, ArrayRef<UnwindCode> UCs);
405
{ "ExceptionHandler",
Win64EH
::UNW_ExceptionHandler },
406
{ "TerminateHandler",
Win64EH
::UNW_TerminateHandler },
407
{ "ChainInfo" ,
Win64EH
::UNW_ChainInfo }
457
static uint64_t getOffsetOfLSDA(const
Win64EH
::UnwindInfo& UI) {
[
all
...]
Completed in 90 milliseconds